Skip to contents

This function helps add progress-reporting to any function - given function f() and progressor p(), it will return a new function that calls f() and then (on-exiting) will call p() after every iteration.

Usage

progressively(f, p = NULL)

Arguments

f

a function to add progressr functionality to.

p

a progressor function as created by progressr::progressor()

Value

a function that does the same as f but it calls p() after iteration.

Details

This is inspired by purrr's safely, quietly, and possibly function decorators.

See also

https://nflreadr.nflverse.com/articles/exporting_nflreadr.html for vignette on exporting nflreadr in packages

Examples


# \donttest{
try({ # prevents cran errors

read_rosters <- function(){
  urls <- c("https://github.com/nflverse/nflfastR-roster/raw/master/data/seasons/roster_2020.csv",
            "https://github.com/nflverse/nflfastR-roster/raw/master/data/seasons/roster_2021.csv")

  p <- progressr::progressor(along = urls)
  lapply(urls, progressively(read.csv, p))
}

progressr::with_progress(read_rosters())

})
#> [[1]]
#>      season team position depth_chart_position jersey_number            status
#> 1      2020  ARI        C                    C            52            Active
#> 2      2020  ARI        C                    C            53            Active
#> 3      2020  ARI       CB                   NB            33            Active
#> 4      2020  ARI       CB                 <NA>            20            Active
#> 5      2020  ARI       CB                 <NA>            39            Active
#> 6      2020  ARI       CB                  LCB            27            Active
#> 7      2020  ARI       CB                  RCB            25            Active
#> 8      2020  ARI       CB                  LCB            23            Active
#> 9      2020  ARI       CB                  LCB            21            Active
#> 10     2020  ARI       CB                  RCB            20            Active
#> 11     2020  ARI       DB                 <NA>            38            Active
#> 12     2020  ARI       DB                 <NA>            43            Active
#> 13     2020  ARI       DB                   NB            34            Active
#> 14     2020  ARI       DB                   SS            28            Active
#> 15     2020  ARI       DB                   FS            31            Active
#> 16     2020  ARI       DE                 <NA>            55            Active
#> 17     2020  ARI       DE                 <NA>            91            Active
#> 18     2020  ARI       DE                 <NA>            65            Active
#> 19     2020  ARI       DE                 <NA>            69            Active
#> 20     2020  ARI       DT                 <NA>            75            Active
#> 21     2020  ARI       DT                  RDE            96            Active
#> 22     2020  ARI       DT                   DT            95            Active
#> 23     2020  ARI       DT                   DT            94            Active
#> 24     2020  ARI       DT                  RDE            97            Active
#> 25     2020  ARI       DT                 <NA>            94            Active
#> 26     2020  ARI       FS                 <NA>            44            Active
#> 27     2020  ARI        G                   RG            64            Active
#> 28     2020  ARI        G                 <NA>            63            Active
#> 29     2020  ARI        G                 <NA>            64            Active
#> 30     2020  ARI        G                   LG            67            Active
#> 31     2020  ARI        G                 <NA>            60            Active
#> 32     2020  ARI        G                   LG            73            Active
#> 33     2020  ARI        K                   PK             2            Active
#> 34     2020  ARI        K                   PK             5            Active
#> 35     2020  ARI        K                 <NA>             2            Active
#> 36     2020  ARI       LB                  SLB            45            Active
#> 37     2020  ARI       LB                  OLB            42            Active
#> 38     2020  ARI       LB                 <NA>            58            Active
#> 39     2020  ARI       LB                 LILB            47            Active
#> 40     2020  ARI       LB                  SLB            49            Active
#> 41     2020  ARI       LB                 RILB            58            Active
#> 42     2020  ARI       LB                   LB            43            Active
#> 43     2020  ARI       LB                 RILB            51            Active
#> 44     2020  ARI       LB                  OLB            44            Active
#> 45     2020  ARI       LB                 <NA>            35            Active
#> 46     2020  ARI       LB                 LILB            59            Active
#> 47     2020  ARI       LB                  SLB            55            Active
#> 48     2020  ARI       LB                 <NA>            56            Active
#> 49     2020  ARI       LB                   LB            54            Active
#> 50     2020  ARI       LB                 <NA>            54            Active
#> 51     2020  ARI       LB                 <NA>            50            Active
#> 52     2020  ARI       LB                 LILB            48            Active
#> 53     2020  ARI       LS                 <NA>            46            Active
#> 54     2020  ARI       NT                   NT            98            Active
#> 55     2020  ARI       NT                  RDE            92            Active
#> 56     2020  ARI       NT                   NT            90            Active
#> 57     2020  ARI        P                 <NA>             4            Active
#> 58     2020  ARI       QB                   QB             1            Active
#> 59     2020  ARI       QB                   QB            15            Active
#> 60     2020  ARI       QB                   QB             7            Active
#> 61     2020  ARI       RB                   RB            41            Active
#> 62     2020  ARI       RB                   RB            29            Active
#> 63     2020  ARI       RB                 <NA>            33            Active
#> 64     2020  ARI       RB                 <NA>            26            Active
#> 65     2020  ARI       RB                 <NA>            37            Active
#> 66     2020  ARI       RB                   RB            38            Active
#> 67     2020  ARI       SS                 <NA>            27          Inactive
#> 68     2020  ARI       SS                   SS            22            Active
#> 69     2020  ARI       SS                   FS            32            Active
#> 70     2020  ARI        T                   LT            79            Active
#> 71     2020  ARI        T                   RT            68            Active
#> 72     2020  ARI        T                   LT            66            Active
#> 73     2020  ARI        T                   RT            71            Active
#> 74     2020  ARI        T                 <NA>            76 Voluntary Opt Out
#> 75     2020  ARI        T                   LT            74            Active
#> 76     2020  ARI       TE                   TE            81            Active
#> 77     2020  ARI       TE                 <NA>            48            Active
#> 78     2020  ARI       TE                 <NA>            86            Active
#> 79     2020  ARI       TE                 <NA>            86            Active
#> 80     2020  ARI       TE                   TE            87            Active
#> 81     2020  ARI       TE                   TE            85            Active
#> 82     2020  ARI       WR                 <NA>            81            Active
#> 83     2020  ARI       WR                  LWR            19            Active
#> 84     2020  ARI       WR                 <NA>            19            Active
#> 85     2020  ARI       WR                  SWR            18            Active
#> 86     2020  ARI       WR                  SWR            17            Active
#> 87     2020  ARI       WR                  RWR            10            Active
#> 88     2020  ARI       WR                 <NA>            83            Active
#> 89     2020  ARI       WR                 <NA>            14            Active
#> 90     2020  ARI       WR                 <NA>            10            Active
#> 91     2020  ARI       WR                  SWR            11            Active
#> 92     2020  ARI       WR                  LWR            13            Active
#> 93     2020  ARI       WR                  RWR            16            Active
#> 94     2020  ATL        C                    C            51            Active
#> 95     2020  ATL        C                 <NA>            66            Active
#> 96     2020  ATL        C                   RG            65            Active
#> 97     2020  ATL       CB                 <NA>            42            Active
#> 98     2020  ATL       CB                   CB            34            Active
#> 99     2020  ATL       CB                   FS            41            Active
#> 100    2020  ATL       CB                   CB            24            Active
#> 101    2020  ATL       CB                  RCB            26            Active
#> 102    2020  ATL       CB                  RCB            44            Active
#> 103    2020  ATL       CB                  LCB            20            Active
#> 104    2020  ATL       CB                   FS            37            Active
#> 105    2020  ATL       CB                  LCB            33            Active
#> 106    2020  ATL       DB                 <NA>            31            Active
#> 107    2020  ATL       DB                   SS            32            Active
#> 108    2020  ATL       DB                   SS            22            Active
#> 109    2020  ATL       DE                  RDE            55            Active
#> 110    2020  ATL       DE                  RDE            56            Active
#> 111    2020  ATL       DE                  RDE            91            Active
#> 112    2020  ATL       DE                  LDE            93            Active
#> 113    2020  ATL       DT                  LDT            94            Active
#> 114    2020  ATL       DT                 <NA>            79            Active
#> 115    2020  ATL       DT                  LDT            97            Active
#> 116    2020  ATL       DT                  RDT            50            Active
#> 117    2020  ATL       DT                  RDT            96            Active
#> 118    2020  ATL       DT                  LDT            90            Active
#> 119    2020  ATL       FB                   FB            40            Active
#> 120    2020  ATL        G                   LG            77            Active
#> 121    2020  ATL        G                 <NA>            71            Active
#> 122    2020  ATL        G                    C            61            Active
#> 123    2020  ATL        G                   RG            63            Active
#> 124    2020  ATL        K                   PK             7            Active
#> 125    2020  ATL        K                 <NA>             1            Active
#> 126    2020  ATL       LB                   LB            59            Active
#> 127    2020  ATL       LB                   LB            43            Active
#> 128    2020  ATL       LB                   LB            45            Active
#> 129    2020  ATL       LB                 <NA>            52            Active
#> 130    2020  ATL       LB                  LDE            92            Active
#> 131    2020  ATL       LB                 <NA>            52            Active
#> 132    2020  ATL       LB                   LB            46            Active
#> 133    2020  ATL       LB                   LB            54            Active
#> 134    2020  ATL       LS                 <NA>            47            Active
#> 135    2020  ATL        P                 <NA>             4            Active
#> 136    2020  ATL       QB                   QB             2            Active
#> 137    2020  ATL       QB                 <NA>             6            Active
#> 138    2020  ATL       QB                   QB             8            Active
#> 139    2020  ATL       RB                 <NA>            36            Active
#> 140    2020  ATL       RB                   RB            21            Active
#> 141    2020  ATL       RB                   RB            25            Active
#> 142    2020  ATL       RB                   RB            23            Active
#> 143    2020  ATL       RB                 <NA>            30            Active
#> 144    2020  ATL       SS                   FS            27            Active
#> 145    2020  ATL       SS                 <NA>            39            Active
#> 146    2020  ATL       SS                 <NA>            29            Active
#> 147    2020  ATL        T                   LT            73            Active
#> 148    2020  ATL        T                   LT            70            Active
#> 149    2020  ATL        T                   RT            75            Active
#> 150    2020  ATL        T                   RT            76            Active
#> 151    2020  ATL       TE                   TE            88            Active
#> 152    2020  ATL       TE                   TE            81            Active
#> 153    2020  ATL       TE                   TE            87            Active
#> 154    2020  ATL       WR                  RWR            18            Active
#> 155    2020  ATL       WR                  RWR            17            Active
#> 156    2020  ATL       WR                 <NA>            87            Active
#> 157    2020  ATL       WR                 <NA>            12            Active
#> 158    2020  ATL       WR                  LWR            11            Active
#> 159    2020  ATL       WR                 <NA>            14            Active
#> 160    2020  ATL       WR                  LWR            13            Active
#> 161    2020  ATL       WR                   WR            83            Active
#> 162    2020  ATL       WR                  RWR            80            Active
#> 163    2020  ATL       WR                   WR            15            Active
#> 164    2020  ATL       WR                 <NA>            19            Active
#> 165    2020  BAL        C                 <NA>            65            Active
#> 166    2020  BAL        C                    C            65            Active
#> 167    2020  BAL        C                    C            68            Active
#> 168    2020  BAL        C                    C            63            Active
#> 169    2020  BAL       CB                  LCB            24            Active
#> 170    2020  BAL       CB                 <NA>            47            Active
#> 171    2020  BAL       CB                   NB            25            Active
#> 172    2020  BAL       CB                  LCB            22            Active
#> 173    2020  BAL       CB                   NB            31            Active
#> 174    2020  BAL       CB                  LCB            37            Active
#> 175    2020  BAL       CB                  RCB            44            Active
#> 176    2020  BAL       CB                  RCB            23            Active
#> 177    2020  BAL       CB                  RCB            33            Active
#> 178    2020  BAL       CB                 <NA>            31            Active
#> 179    2020  BAL       DB                 <NA>            39            Active
#> 180    2020  BAL       DB                  RCB            17            Active
#> 181    2020  BAL       DB                 <NA>            42            Active
#> 182    2020  BAL       DB                   FS            32            Active
#> 183    2020  BAL       DE                   DE            53            Active
#> 184    2020  BAL       DE                 <NA>            97            Active
#> 185    2020  BAL       DE                 RUSH            91            Active
#> 186    2020  BAL       DE                   DE            95            Active
#> 187    2020  BAL       DT                   DT            92            Active
#> 188    2020  BAL       DT                 <NA>            69            Active
#> 189    2020  BAL       DT                 <NA>            96            Active
#> 190    2020  BAL       DT                   DT            96            Active
#> 191    2020  BAL       DT                   DT            93            Active
#> 192    2020  BAL       DT                 <NA>            91            Active
#> 193    2020  BAL       FB                 <NA>            48            Active
#> 194    2020  BAL       FB                   NT            42            Active
#> 195    2020  BAL       FS                 <NA>            33            Active
#> 196    2020  BAL        G                   RG            72            Active
#> 197    2020  BAL        G                 <NA>            61            Active
#> 198    2020  BAL        G                   LG            67            Active
#> 199    2020  BAL        G                 <NA>            70          Inactive
#> 200    2020  BAL        G                   RT            70            Active
#> 201    2020  BAL        G                   RT            74            Active
#> 202    2020  BAL        G                   LG            77            Active
#> 203    2020  BAL        K                   PK             9            Active
#> 204    2020  BAL       LB                  MLB            50            Active
#> 205    2020  BAL       LB                  WLB            57            Active
#> 206    2020  BAL       LB                 RUSH            90            Active
#> 207    2020  BAL       LB                  MLB            48            Active
#> 208    2020  BAL       LB                 <NA>            51            Active
#> 209    2020  BAL       LB                 RUSH            45            Active
#> 210    2020  BAL       LB                  SAM            54            Active
#> 211    2020  BAL       LB                  WLB            40            Active
#> 212    2020  BAL       LB                 <NA>            57            Active
#> 213    2020  BAL       LB                  WLB            58            Active
#> 214    2020  BAL       LB                  SAM            99            Active
#> 215    2020  BAL       LB                  MLB            49            Active
#> 216    2020  BAL       LS                 <NA>            60            Active
#> 217    2020  BAL       LS                 <NA>            46            Active
#> 218    2020  BAL       NT                   NT            98            Active
#> 219    2020  BAL       NT                   NT            71            Active
#> 220    2020  BAL        P                 <NA>             6            Active
#> 221    2020  BAL        P                 <NA>             4            Active
#> 222    2020  BAL       QB                 <NA>             2            Active
#> 223    2020  BAL       QB                   QB             8            Active
#> 224    2020  BAL       QB                 <NA>             3            Active
#> 225    2020  BAL       QB                   QB             7            Active
#> 226    2020  BAL       RB                   RB            21            Active
#> 227    2020  BAL       RB                 <NA>            34            Active
#> 228    2020  BAL       RB                   RB            35            Active
#> 229    2020  BAL       RB                   RB            27            Active
#> 230    2020  BAL       RB                   RB            43            Active
#> 231    2020  BAL       SS                   FS            28            Active
#> 232    2020  BAL       SS                   SS            41            Active
#> 233    2020  BAL       SS                   SS            36            Active
#> 234    2020  BAL        T                 <NA>            61            Active
#> 235    2020  BAL        T                 <NA>            68            Active
#> 236    2020  BAL        T                 <NA>            76 Voluntary Opt Out
#> 237    2020  BAL        T                   LT            79            Active
#> 238    2020  BAL        T                   RT            78            Active
#> 239    2020  BAL        T                 <NA>            76            Active
#> 240    2020  BAL       TE                 <NA>            88            Active
#> 241    2020  BAL       TE                   TE            89            Active
#> 242    2020  BAL       TE                 <NA>            87            Active
#> 243    2020  BAL       TE                   TE            85            Active
#> 244    2020  BAL       TE                   TE            86            Active
#> 245    2020  BAL       TE                 <NA>            85            Active
#> 246    2020  BAL       WR                  LWR            80            Active
#> 247    2020  BAL       WR                 <NA>            84            Active
#> 248    2020  BAL       WR                  LWR            88            Active
#> 249    2020  BAL       WR                  RWR            10            Active
#> 250    2020  BAL       WR                 <NA>            11            Active
#> 251    2020  BAL       WR                 <NA>            18            Active
#> 252    2020  BAL       WR                  RWR            15            Active
#> 253    2020  BAL       WR                 <NA>            17            Active
#> 254    2020  BAL       WR                 <NA>            81            Active
#> 255    2020  BAL       WR                 <NA>            16            Active
#> 256    2020  BAL       WR                 <NA>            89            Active
#> 257    2020  BAL       WR                  RWR            13            Active
#> 258    2020  BAL       WR                  LWR            83            Active
#> 259    2020  BUF        C                    C            60            Active
#> 260    2020  BUF        C                    C            71            Active
#> 261    2020  BUF        C                    C            68            Active
#> 262    2020  BUF       CB                  RCB            27            Active
#> 263    2020  BUF       CB                  LCB            29            Active
#> 264    2020  BUF       CB                 <NA>            20            Active
#> 265    2020  BUF       CB                 <NA>            40            Active
#> 266    2020  BUF       CB                 <NA>            30            Active
#> 267    2020  BUF       CB                  RCB            47            Active
#> 268    2020  BUF       CB                 <NA>            28            Active
#> 269    2020  BUF       CB                  LCB            39            Active
#> 270    2020  BUF       CB                   NB            33            Active
#> 271    2020  BUF       CB                   NB            24            Active
#> 272    2020  BUF       DB                   FS            46            Active
#> 273    2020  BUF       DB                   FS            23            Active
#> 274    2020  BUF       DE                  LDE            92            Active
#> 275    2020  BUF       DE                  LDE            55            Active
#> 276    2020  BUF       DE                  LDE            93            Active
#> 277    2020  BUF       DE                  RDE            57            Active
#> 278    2020  BUF       DE                 <NA>            56            Active
#> 279    2020  BUF       DE                  RDE            97            Active
#> 280    2020  BUF       DE                 <NA>            51            Active
#> 281    2020  BUF       DT                 <NA>            98 Voluntary Opt Out
#> 282    2020  BUF       DT                  LDT            90            Active
#> 283    2020  BUF       DT                  RDT            99            Active
#> 284    2020  BUF       DT                 <NA>            74            Active
#> 285    2020  BUF       DT                 <NA>            63            Active
#> 286    2020  BUF       DT                  LDT            94            Active
#> 287    2020  BUF       DT                  RDT            61            Active
#> 288    2020  BUF       DT                  RDT            91            Active
#> 289    2020  BUF        G                   LG            76            Active
#> 290    2020  BUF        G                   RG            66            Active
#> 291    2020  BUF        G                   LG            65            Active
#> 292    2020  BUF        K                   PK             2            Active
#> 293    2020  BUF        K                 <NA>             7            Active
#> 294    2020  BUF       LB                  MLB            49            Active
#> 295    2020  BUF       LB                  MLB            59            Active
#> 296    2020  BUF       LB                 <NA>            43            Active
#> 297    2020  BUF       LB                 <NA>            52            Active
#> 298    2020  BUF       LB                 <NA>            52            Active
#> 299    2020  BUF       LB                  WLB            53            Active
#> 300    2020  BUF       LB                  WLB            54            Active
#> 301    2020  BUF       LB                  MLB            44            Active
#> 302    2020  BUF       LB                 <NA>            40            Active
#> 303    2020  BUF       LB                  WLB            58            Active
#> 304    2020  BUF       LS                 <NA>            69            Active
#> 305    2020  BUF        P                 <NA>             9            Active
#> 306    2020  BUF       QB                   QB             5            Active
#> 307    2020  BUF       QB                   QB            10            Active
#> 308    2020  BUF       QB                 <NA>             7            Active
#> 309    2020  BUF       QB                   QB            17            Active
#> 310    2020  BUF       RB                   RB            20            Active
#> 311    2020  BUF       RB                   RB            22            Active
#> 312    2020  BUF       RB                 <NA>            31            Active
#> 313    2020  BUF       RB                 <NA>            25            Active
#> 314    2020  BUF       RB                 <NA>            45            Active
#> 315    2020  BUF       RB                 <NA>            35            Active
#> 316    2020  BUF       RB                   RB            26            Active
#> 317    2020  BUF       SS                   SS            21            Active
#> 318    2020  BUF       SS                   SS            31            Active
#> 319    2020  BUF       SS                 <NA>            36            Active
#> 320    2020  BUF        T                 <NA>            72            Active
#> 321    2020  BUF        T                   RG            70            Active
#> 322    2020  BUF        T                   LT            73            Active
#> 323    2020  BUF        T                   RT            75            Active
#> 324    2020  BUF        T                 <NA>            62            Active
#> 325    2020  BUF        T                   RT            77            Active
#> 326    2020  BUF       TE                   TE            88            Active
#> 327    2020  BUF       TE                   TE            81            Active
#> 328    2020  BUF       TE                 <NA>            84            Active
#> 329    2020  BUF       TE                   FB            86            Active
#> 330    2020  BUF       TE                   TE            85            Active
#> 331    2020  BUF       TE                 <NA>            89            Active
#> 332    2020  BUF       WR                 <NA>            82            Active
#> 333    2020  BUF       WR                  SWR            19            Active
#> 334    2020  BUF       WR                 <NA>            18            Active
#> 335    2020  BUF       WR                  RWR            14            Active
#> 336    2020  BUF       WR                  LWR            15            Active
#> 337    2020  BUF       WR                 <NA>            19            Active
#> 338    2020  BUF       WR                 <NA>            80            Active
#> 339    2020  BUF       WR                  SWR            11            Active
#> 340    2020  BUF       WR                  RWR            18            Active
#> 341    2020  BUF       WR                  LWR            13            Active
#> 342    2020  BUF       WR                  LWR            16            Active
#> 343    2020  CAR        C                    C            61            Active
#> 344    2020  CAR        C                    C            69            Active
#> 345    2020  CAR        C                 <NA>            71            Active
#> 346    2020  CAR       CB                  LCB            26            Active
#> 347    2020  CAR       CB                  RCB            24            Active
#> 348    2020  CAR       CB                 <NA>            22            Active
#> 349    2020  CAR       CB                  RCB            25            Active
#> 350    2020  CAR       CB                  LCB            29            Active
#> 351    2020  CAR       CB                  RCB            23            Active
#> 352    2020  CAR       CB                   FS            30            Active
#> 353    2020  CAR       CB                  RCB            20            Active
#> 354    2020  CAR       DB                   SS            27            Active
#> 355    2020  CAR       DB                  LCB            38            Active
#> 356    2020  CAR       DB                 <NA>            34            Active
#> 357    2020  CAR       DB                   FS            33            Active
#> 358    2020  CAR       DB                 <NA>            35            Active
#> 359    2020  CAR       DB                   FS            21            Active
#> 360    2020  CAR       DE                 <NA>            57            Active
#> 361    2020  CAR       DE                  LDE            98            Active
#> 362    2020  CAR       DE                  LDE            96            Active
#> 363    2020  CAR       DE                 <NA>            55 Voluntary Opt Out
#> 364    2020  CAR       DE                  RDE            91            Active
#> 365    2020  CAR       DE                  RDE            97            Active
#> 366    2020  CAR       DE                  LDE            53            Active
#> 367    2020  CAR       DE                 <NA>            69            Active
#> 368    2020  CAR       DE                  RDE            94            Active
#> 369    2020  CAR       DT                  RDT            78            Active
#> 370    2020  CAR       DT                  LDT            92            Active
#> 371    2020  CAR       DT                  RDT            95            Active
#> 372    2020  CAR       DT                 <NA>            91            Active
#> 373    2020  CAR       DT                 <NA>            77            Active
#> 374    2020  CAR       DT                  LDT            99            Active
#> 375    2020  CAR       DT                  LDT            93            Active
#> 376    2020  CAR       FB                   FB            40            Active
#> 377    2020  CAR        G                 <NA>            62            Active
#> 378    2020  CAR        G                   RG            67            Active
#> 379    2020  CAR        G                 <NA>            66            Active
#> 380    2020  CAR        G                   LG            65            Active
#> 381    2020  CAR        G                   RG            64            Active
#> 382    2020  CAR        G                   LG            75            Active
#> 383    2020  CAR        K                   PK             4            Active
#> 384    2020  CAR       LB                 <NA>            47 Voluntary Opt Out
#> 385    2020  CAR       LB                 <NA>            59   Injured Reserve
#> 386    2020  CAR       LB                  MLB            52            Active
#> 387    2020  CAR       LB                 WILL            50            Active
#> 388    2020  CAR       LB                 WILL            54            Active
#> 389    2020  CAR       LB                  MLB            57            Active
#> 390    2020  CAR       LB                  SAM            56            Active
#> 391    2020  CAR       LB                 <NA>            47            Active
#> 392    2020  CAR       LB                 <NA>            45            Active
#> 393    2020  CAR       LB                 <NA>            49            Active
#> 394    2020  CAR       LS                 <NA>            44            Active
#> 395    2020  CAR        P                 <NA>             2            Active
#> 396    2020  CAR        P                 <NA>             3            Active
#> 397    2020  CAR       QB                   QB             5            Active
#> 398    2020  CAR       QB                   QB             6            Active
#> 399    2020  CAR       QB                   QB             7            Active
#> 400    2020  CAR       QB                 <NA>            15            Active
#> 401    2020  CAR       RB                 <NA>            39            Active
#> 402    2020  CAR       RB                   RB            36            Active
#> 403    2020  CAR       RB                 <NA>            35            Active
#> 404    2020  CAR       RB                   RB            22            Active
#> 405    2020  CAR       RB                   RB            28            Active
#> 406    2020  CAR       SS                   SS            42            Active
#> 407    2020  CAR       SS                   SS            31            Active
#> 408    2020  CAR        T                   RT            73            Active
#> 409    2020  CAR        T                   LT            74            Active
#> 410    2020  CAR        T                   RT            72            Active
#> 411    2020  CAR        T                   LT            76            Active
#> 412    2020  CAR        T                   RT            63            Active
#> 413    2020  CAR       TE                   TE            80            Active
#> 414    2020  CAR       TE                   TE            86            Active
#> 415    2020  CAR       TE                 <NA>            48            Active
#> 416    2020  CAR       TE                 <NA>            85            Active
#> 417    2020  CAR       TE                 <NA>            82            Active
#> 418    2020  CAR       WR                 <NA>            82            Active
#> 419    2020  CAR       WR                  LWR            84            Active
#> 420    2020  CAR       WR                  RWR            17            Active
#> 421    2020  CAR       WR                  LWR            16            Active
#> 422    2020  CAR       WR                  RWR            14            Active
#> 423    2020  CAR       WR                 <NA>            13            Active
#> 424    2020  CAR       WR                  RWR            11            Active
#> 425    2020  CAR       WR                  LWR            10            Active
#> 426    2020  CAR       WR                 <NA>            83            Active
#> 427    2020  CAR       WR                  LWR            12            Active
#> 428    2020  CAR       WR                 <NA>            18            Active
#> 429    2020  CAR       WR                 <NA>            19            Active
#> 430    2020  CHI        C                    C            65            Active
#> 431    2020  CHI        C                    C            67            Active
#> 432    2020  CHI       CB                   NB            24            Active
#> 433    2020  CHI       CB                   CB            20            Active
#> 434    2020  CHI       CB                 <NA>            31            Active
#> 435    2020  CHI       CB                 <NA>            47            Active
#> 436    2020  CHI       CB                   CB            23            Active
#> 437    2020  CHI       CB                   CB            33            Active
#> 438    2020  CHI       CB                   CB            25            Active
#> 439    2020  CHI       CB                 <NA>            39            Active
#> 440    2020  CHI       CB                   CB            30            Active
#> 441    2020  CHI       CB                   CB            22            Active
#> 442    2020  CHI       CB                 <NA>            31            Active
#> 443    2020  CHI       DB                   SS            38            Active
#> 444    2020  CHI       DB                   SS            26            Active
#> 445    2020  CHI       DB                 <NA>            43            Active
#> 446    2020  CHI       DB                   SS            36            Active
#> 447    2020  CHI       DE                 <NA>            57            Active
#> 448    2020  CHI       DE                 ROLB            94            Active
#> 449    2020  CHI       DL                 <NA>             0            Active
#> 450    2020  CHI       DT                  RDE            97          Inactive
#> 451    2020  CHI       DT                  RDE            95            Active
#> 452    2020  CHI       DT                 <NA>            73          Inactive
#> 453    2020  CHI       DT                  RDE            92            Active
#> 454    2020  CHI       DT                   DT            96            Active
#> 455    2020  CHI       DT                 <NA>            63            Active
#> 456    2020  CHI        G                   LG            68            Active
#> 457    2020  CHI        G                 <NA>            60            Active
#> 458    2020  CHI        G                   RG            74            Active
#> 459    2020  CHI        G                   RT            73            Active
#> 460    2020  CHI        G                   RG            64            Active
#> 461    2020  CHI        G                 <NA>            62            Active
#> 462    2020  CHI        G                   LG            71            Active
#> 463    2020  CHI        K                   PK             2            Active
#> 464    2020  CHI        K                   PK            15            Active
#> 465    2020  CHI       LB                 LILB            58            Active
#> 466    2020  CHI       LB                 LOLB            99            Active
#> 467    2020  CHI       LB                 RILB            45            Active
#> 468    2020  CHI       LB                 ROLB            50            Active
#> 469    2020  CHI       LB                 ROLB            93            Active
#> 470    2020  CHI       LB                 RILB            59            Active
#> 471    2020  CHI       LB                 LILB            55            Active
#> 472    2020  CHI       LB                 LOLB            52            Active
#> 473    2020  CHI       LB                 <NA>            44            Active
#> 474    2020  CHI       LB                 <NA>            57            Active
#> 475    2020  CHI       LS                 <NA>            48            Active
#> 476    2020  CHI       NT                   NT            90            Active
#> 477    2020  CHI       NT                   NT            98            Active
#> 478    2020  CHI       NT                 <NA>            91 Voluntary Opt Out
#> 479    2020  CHI       NT                   DT            75            Active
#> 480    2020  CHI        P                 <NA>            16            Active
#> 481    2020  CHI       QB                   QB            10            Active
#> 482    2020  CHI       QB                   QB             9            Active
#> 483    2020  CHI       QB                 <NA>             8            Active
#> 484    2020  CHI       RB                   RB            35            Active
#> 485    2020  CHI       RB                 <NA>            46            Active
#> 486    2020  CHI       RB                   RB            29            Active
#> 487    2020  CHI       RB                   RB            32            Active
#> 488    2020  CHI       RB                 <NA>            39            Active
#> 489    2020  CHI       SS                   FS            39            Active
#> 490    2020  CHI       SS                   FS            27            Active
#> 491    2020  CHI       SS                 <NA>            21 Voluntary Opt Out
#> 492    2020  CHI        T                   RG            69            Active
#> 493    2020  CHI        T                   RT            78            Active
#> 494    2020  CHI        T                   LT            72            Active
#> 495    2020  CHI        T                   RT            70            Active
#> 496    2020  CHI        T                 <NA>            79            Active
#> 497    2020  CHI       TE                 <NA>            49            Active
#> 498    2020  CHI       TE                 <NA>            81            Active
#> 499    2020  CHI       TE                   TE            85            Active
#> 500    2020  CHI       TE                 <NA>            87            Active
#> 501    2020  CHI       TE                   TE            80            Active
#> 502    2020  CHI       TE                   TE            86            Active
#> 503    2020  CHI       WR                  LWR            19            Active
#> 504    2020  CHI       WR                  SWR            19            Active
#> 505    2020  CHI       WR                 <NA>            19            Active
#> 506    2020  CHI       WR                  RWR            88            Active
#> 507    2020  CHI       WR                  SWR            83            Active
#> 508    2020  CHI       WR                  SWR            18    Practice Squad
#> 509    2020  CHI       WR                 <NA>            13            Active
#> 510    2020  CHI       WR                  RWR            11            Active
#> 511    2020  CHI       WR                  LWR            82            Active
#> 512    2020  CHI       WR                 <NA>            14            Active
#> 513    2020  CHI       WR                  SWR            17            Active
#> 514    2020  CHI       WR                  LWR            12            Active
#> 515    2020  CHI       WR                  LWR            84            Active
#> 516    2020  CIN        C                    C            66            Active
#> 517    2020  CIN        C                   LG            61            Active
#> 518    2020  CIN        C                    C            53            Active
#> 519    2020  CIN       CB                   NB            26            Active
#> 520    2020  CIN       CB                 <NA>            37            Active
#> 521    2020  CIN       CB                 <NA>            39            Active
#> 522    2020  CIN       CB                   NB            21            Active
#> 523    2020  CIN       CB                   CB            27            Active
#> 524    2020  CIN       CB                   CB            23            Active
#> 525    2020  CIN       CB                   CB            22            Active
#> 526    2020  CIN       CB                   CB            37            Active
#> 527    2020  CIN       CB                   CB            38            Active
#> 528    2020  CIN       DB                 <NA>            40            Active
#> 529    2020  CIN       DB                   FS            40            Active
#> 530    2020  CIN       DB                 <NA>            30            Active
#> 531    2020  CIN       DE                  RDE            58            Active
#> 532    2020  CIN       DE                 <NA>            92            Active
#> 533    2020  CIN       DE                  LDE            94            Active
#> 534    2020  CIN       DE                  RDE            90            Active
#> 535    2020  CIN       DE                  LDE            91            Active
#> 536    2020  CIN       DT                   NT            71            Active
#> 537    2020  CIN       DT                  RDT            76            Active
#> 538    2020  CIN       DT                  RDT            97            Active
#> 539    2020  CIN       DT                  LDE            70            Active
#> 540    2020  CIN       DT                  RDT            69            Active
#> 541    2020  CIN        G                   RG            67            Active
#> 542    2020  CIN        G                   LT            77            Active
#> 543    2020  CIN        G                   LG            62            Active
#> 544    2020  CIN        G                 <NA>            64            Active
#> 545    2020  CIN        G                   RG            65            Active
#> 546    2020  CIN        G                   LG            60            Active
#> 547    2020  CIN        G                   RG            72            Active
#> 548    2020  CIN        K                   PK             3            Active
#> 549    2020  CIN        K                   PK             4            Active
#> 550    2020  CIN       LB                   LB            59            Active
#> 551    2020  CIN       LB                   LB            57            Active
#> 552    2020  CIN       LB                   LB            56            Active
#> 553    2020  CIN       LB                   LB            51            Active
#> 554    2020  CIN       LB                 <NA>            53            Active
#> 555    2020  CIN       LB                 <NA>            47            Active
#> 556    2020  CIN       LB                   LB            50            Active
#> 557    2020  CIN       LB                   LB            55            Active
#> 558    2020  CIN       LS                 <NA>            46            Active
#> 559    2020  CIN       LS                 <NA>            48            Active
#> 560    2020  CIN       NT                 <NA>            91 Voluntary Opt Out
#> 561    2020  CIN       NT                   NT            98            Active
#> 562    2020  CIN       NT                  RDE            95            Active
#> 563    2020  CIN       NT                   NT            99            Active
#> 564    2020  CIN        P                 <NA>            10            Active
#> 565    2020  CIN       QB                 <NA>             9            Active
#> 566    2020  CIN       QB                   QB             9            Active
#> 567    2020  CIN       QB                   QB             5            Active
#> 568    2020  CIN       QB                 <NA>             7            Active
#> 569    2020  CIN       QB                   QB             8            Active
#> 570    2020  CIN       RB                 <NA>            32            Active
#> 571    2020  CIN       RB                 <NA>            31            Active
#> 572    2020  CIN       RB                   RB            34            Active
#> 573    2020  CIN       RB                   RB            28            Active
#> 574    2020  CIN       RB                   RB            25            Active
#> 575    2020  CIN       SS                   SS            36            Active
#> 576    2020  CIN       SS                   SS            24            Active
#> 577    2020  CIN       SS                 <NA>            41            Active
#> 578    2020  CIN        T                 <NA>            71 Voluntary Opt Out
#> 579    2020  CIN        T                   LT            73            Active
#> 580    2020  CIN        T                   RT            68            Active
#> 581    2020  CIN        T                   RT            74            Active
#> 582    2020  CIN        T                 <NA>            70            Active
#> 583    2020  CIN       TE                   TE            82            Active
#> 584    2020  CIN       TE                 <NA>            86            Active
#> 585    2020  CIN       TE                   TE            87            Active
#> 586    2020  CIN       TE                   TE            89            Active
#> 587    2020  CIN       TE                 <NA>            84            Active
#> 588    2020  CIN       WR                  LWR            18            Active
#> 589    2020  CIN       WR                  SWR            17            Active
#> 590    2020  CIN       WR                  LWR            19            Active
#> 591    2020  CIN       WR                 <NA>            14            Active
#> 592    2020  CIN       WR                  SWR            85            Active
#> 593    2020  CIN       WR                  RWR            12            Active
#> 594    2020  CIN       WR                  RWR            83            Active
#> 595    2020  CIN       WR                 <NA>            80            Active
#> 596    2020  CIN       WR                 <NA>            16            Active
#> 597    2020  CIN       WR                  SWR            11            Active
#> 598    2020  CLE        C                    C            64            Active
#> 599    2020  CLE        C                 <NA>            63            Active
#> 600    2020  CLE        C                    C            53            Active
#> 601    2020  CLE        C                   LG            58            Active
#> 602    2020  CLE       CB                  RCB            34            Active
#> 603    2020  CLE       CB                  RCB            26            Active
#> 604    2020  CLE       CB                  RCB            39            Active
#> 605    2020  CLE       CB                 <NA>            25            Active
#> 606    2020  CLE       CB                  LCB            21            Active
#> 607    2020  CLE       CB                 <NA>            38            Active
#> 608    2020  CLE       CB                 <NA>            33            Active
#> 609    2020  CLE       CB                  LCB            36            Active
#> 610    2020  CLE       CB                  LCB            28            Active
#> 611    2020  CLE       CB                 <NA>            20            Active
#> 612    2020  CLE       DB                   FS            22            Active
#> 613    2020  CLE       DB                   SS            37            Active
#> 614    2020  CLE       DB                   FS            23            Active
#> 615    2020  CLE       DB                   SS            29            Active
#> 616    2020  CLE       DE                 <NA>            69            Active
#> 617    2020  CLE       DE                  RDE            97            Active
#> 618    2020  CLE       DE                  LDE            91            Active
#> 619    2020  CLE       DE                 <NA>            61            Active
#> 620    2020  CLE       DE                 <NA>            59            Active
#> 621    2020  CLE       DE                  LDE            95            Active
#> 622    2020  CLE       DE                  WLB            60            Active
#> 623    2020  CLE       DE                  RDE            54            Active
#> 624    2020  CLE       DE                  RDE            94            Active
#> 625    2020  CLE       DT                  LDT            90            Active
#> 626    2020  CLE       DT                  LDT            98            Active
#> 627    2020  CLE       DT                  RDT            96            Active
#> 628    2020  CLE       DT                 <NA>            66            Active
#> 629    2020  CLE       DT                 <NA>            91            Active
#> 630    2020  CLE       DT                  RDT            65            Active
#> 631    2020  CLE       FB                 <NA>            43            Active
#> 632    2020  CLE       FB                   FB            31            Active
#> 633    2020  CLE        G                   LG            75            Active
#> 634    2020  CLE        G                 <NA>            62            Active
#> 635    2020  CLE        G                   RG            77            Active
#> 636    2020  CLE        G                 <NA>            71 Voluntary Opt Out
#> 637    2020  CLE        G                 <NA>            67            Active
#> 638    2020  CLE        K                 <NA>             3            Active
#> 639    2020  CLE        K                   PK             2            Active
#> 640    2020  CLE       LB                  MLB            51            Active
#> 641    2020  CLE       LB                  SAM            56            Active
#> 642    2020  CLE       LB                  WLB            52            Active
#> 643    2020  CLE       LB                  WLB            50            Active
#> 644    2020  CLE       LB                  SAM            59            Active
#> 645    2020  CLE       LB                  SAM            44            Active
#> 646    2020  CLE       LB                  MLB            93            Active
#> 647    2020  CLE       LB                  MLB            55            Active
#> 648    2020  CLE       LS                 <NA>            47            Active
#> 649    2020  CLE       NT                  RDT            99 Voluntary Opt Out
#> 650    2020  CLE        P                 <NA>             7            Active
#> 651    2020  CLE       QB                 <NA>            16            Active
#> 652    2020  CLE       QB                   QB             5            Active
#> 653    2020  CLE       QB                   QB             6            Active
#> 654    2020  CLE       RB                 <NA>            42            Active
#> 655    2020  CLE       RB                 <NA>            22            Active
#> 656    2020  CLE       RB                   RB            24            Active
#> 657    2020  CLE       RB                   RB            30            Active
#> 658    2020  CLE       RB                   RB            27            Active
#> 659    2020  CLE       SS                   FS            35            Active
#> 660    2020  CLE       SS                 <NA>            41            Active
#> 661    2020  CLE       SS                 <NA>            48            Active
#> 662    2020  CLE       SS                   SS            33            Active
#> 663    2020  CLE       SS                   SS            42            Active
#> 664    2020  CLE        T                   LT            71            Active
#> 665    2020  CLE        T                   RT            74            Active
#> 666    2020  CLE        T                   RG            62            Active
#> 667    2020  CLE        T                 <NA>            68 Voluntary Opt Out
#> 668    2020  CLE        T                   LT            70            Active
#> 669    2020  CLE        T                   RG            68            Active
#> 670    2020  CLE        T                 <NA>            60            Active
#> 671    2020  CLE        T                 <NA>            79 Voluntary Opt Out
#> 672    2020  CLE        T                   RT            78            Active
#> 673    2020  CLE       TE                  RTE            88            Active
#> 674    2020  CLE       TE                  LTE            81            Active
#> 675    2020  CLE       TE                  LTE            89            Active
#> 676    2020  CLE       TE                  RTE            85            Active
#> 677    2020  CLE       TE                 <NA>            88            Active
#> 678    2020  CLE       TE                 <NA>            86            Active
#> 679    2020  CLE       WR                 <NA>            19            Active
#> 680    2020  CLE       WR                 <NA>            10            Active
#> 681    2020  CLE       WR                 <NA>            16            Active
#> 682    2020  CLE       WR                 <NA>            10            Active
#> 683    2020  CLE       WR                  RWR            13            Active
#> 684    2020  CLE       WR                  LWR            12            Active
#> 685    2020  CLE       WR                  LWR            80            Active
#> 686    2020  CLE       WR                  RWR            18            Active
#> 687    2020  CLE       WR                  LWR            11            Active
#> 688    2020  CLE       WR                  RWR            82            Active
#> 689    2020  CLE       WR                 <NA>            83            Active
#> 690    2020  CLE       WR                 <NA>            84            Active
#> 691    2020  DAL        C                 <NA>            62            Active
#> 692    2020  DAL        C                    C            63            Active
#> 693    2020  DAL        C                    C            72   Injured Reserve
#> 694    2020  DAL        C                 <NA>            51            Active
#> 695    2020  DAL        C                    C            73            Active
#> 696    2020  DAL       CB                 <NA>            28 Voluntary Opt Out
#> 697    2020  DAL       CB                 <NA>            25            Active
#> 698    2020  DAL       CB                  RCB            27            Active
#> 699    2020  DAL       CB                   CB            30            Active
#> 700    2020  DAL       CB                  LCB            39            Active
#> 701    2020  DAL       CB                  RCB            33            Active
#> 702    2020  DAL       CB                  LCB            24            Active
#> 703    2020  DAL       CB                  LCB            29            Active
#> 704    2020  DAL       CB                   CB            26            Active
#> 705    2020  DAL       CB                  LCB            28            Active
#> 706    2020  DAL       DB                 <NA>            32            Active
#> 707    2020  DAL       DB                   FS            25            Active
#> 708    2020  DAL       DB                   SS            40            Active
#> 709    2020  DAL       DB                   SS            23            Active
#> 710    2020  DAL       DB                   FS            41            Active
#> 711    2020  DAL       DE                  DPR            58            Active
#> 712    2020  DAL       DE                  RDE            97            Active
#> 713    2020  DAL       DE                  LDE            90            Active
#> 714    2020  DAL       DE                  LDE            56            Active
#> 715    2020  DAL       DE                  DPR            94            Active
#> 716    2020  DAL       DE                  RDE            92            Active
#> 717    2020  DAL       DE                  RDE            98            Active
#> 718    2020  DAL       DT                  LDT            95            Active
#> 719    2020  DAL       DT                  LDT            95            Active
#> 720    2020  DAL       DT                  RDT            72            Active
#> 721    2020  DAL       DT                  RDT            99            Active
#> 722    2020  DAL       DT                  LDT            79            Active
#> 723    2020  DAL       DT                 <NA>            93            Active
#> 724    2020  DAL       DT                  LDT            96            Active
#> 725    2020  DAL       FB                 <NA>            49 Voluntary Opt Out
#> 726    2020  DAL        G                   RG            70            Active
#> 727    2020  DAL        G                   LG            66            Active
#> 728    2020  DAL        G                   LG            52            Active
#> 729    2020  DAL        K                   PK             2            Active
#> 730    2020  DAL       LB                  MLB            59            Active
#> 731    2020  DAL       LB                  MLB            55            Active
#> 732    2020  DAL       LB                  WLB            54            Active
#> 733    2020  DAL       LB                  WLB            57            Active
#> 734    2020  DAL       LB                  WLB            48            Active
#> 735    2020  DAL       LB                 <NA>            44            Active
#> 736    2020  DAL       LB                 <NA>             0            Active
#> 737    2020  DAL       LB                  MLB            50            Active
#> 738    2020  DAL       LB                 <NA>            76            Active
#> 739    2020  DAL       LS                 <NA>            91            Active
#> 740    2020  DAL        P                 <NA>             1            Active
#> 741    2020  DAL        P                 <NA>             6            Active
#> 742    2020  DAL       QB                 <NA>            10            Active
#> 743    2020  DAL       QB                   QB            14            Active
#> 744    2020  DAL       QB                 <NA>             7            Active
#> 745    2020  DAL       QB                   QB             4            Active
#> 746    2020  DAL       QB                   QB             3            Active
#> 747    2020  DAL       RB                   RB            20            Active
#> 748    2020  DAL       RB                   RB            34            Active
#> 749    2020  DAL       RB                 <NA>            45            Active
#> 750    2020  DAL       RB                   RB            21            Active
#> 751    2020  DAL       SS                   SS            37            Active
#> 752    2020  DAL        T                   LT            69            Active
#> 753    2020  DAL        T                 <NA>            67            Active
#> 754    2020  DAL        T                   LT            64            Active
#> 755    2020  DAL        T                 <NA>            68            Active
#> 756    2020  DAL        T                 <NA>             0            Active
#> 757    2020  DAL        T                   RG            65            Active
#> 758    2020  DAL        T                   RT            75            Active
#> 759    2020  DAL        T                   LT            77            Active
#> 760    2020  DAL        T                   RT            64            Active
#> 761    2020  DAL        T                   RT            71            Active
#> 762    2020  DAL        T                   RT            78            Active
#> 763    2020  DAL       TE                   TE            89            Active
#> 764    2020  DAL       TE                   TE            86            Active
#> 765    2020  DAL       TE                   TE            80            Active
#> 766    2020  DAL       TE                 <NA>            84            Active
#> 767    2020  DAL       TE                 <NA>            87            Active
#> 768    2020  DAL       WR                   WR            17            Active
#> 769    2020  DAL       WR                 <NA>            15            Active
#> 770    2020  DAL       WR                  RWR            11            Active
#> 771    2020  DAL       WR                  LWR            85            Active
#> 772    2020  DAL       WR                  LWR            19            Active
#> 773    2020  DAL       WR                  RWR            13            Active
#> 774    2020  DAL       WR                   WR            88            Active
#> 775    2020  DAL       WR                 <NA>             0 Voluntary Opt Out
#> 776    2020  DAL       WR                 <NA>            81            Active
#> 777    2020  DAL       WR                 <NA>            18            Active
#> 778    2020  DEN        C                    C            79            Active
#> 779    2020  DEN        C                 <NA>            50            Active
#> 780    2020  DEN        C                 <NA>            75            Active
#> 781    2020  DEN       CB                  RCB            29            Active
#> 782    2020  DEN       CB                  LCB            42            Active
#> 783    2020  DEN       CB                  RCB            41            Active
#> 784    2020  DEN       CB                 <NA>            34            Active
#> 785    2020  DEN       CB                  RCB            23            Active
#> 786    2020  DEN       CB                  LCB            49            Active
#> 787    2020  DEN       CB                   SS            22            Active
#> 788    2020  DEN       CB                 <NA>            26            Active
#> 789    2020  DEN       CB                  LCB            21          Inactive
#> 790    2020  DEN       CB                  LCB            20            Active
#> 791    2020  DEN       DB                   SS            27            Active
#> 792    2020  DEN       DB                   SS            37            Active
#> 793    2020  DEN       DB                  RCB            33            Active
#> 794    2020  DEN       DB                   FS            31            Active
#> 795    2020  DEN       DE                  LDE            96            Active
#> 796    2020  DEN       DE                  LDE            57            Active
#> 797    2020  DEN       DE                  LDE            92            Active
#> 798    2020  DEN       DE                  SLB            55            Active
#> 799    2020  DEN       DT                 <NA>            91            Active
#> 800    2020  DEN       DT                  RDE            93            Active
#> 801    2020  DEN       DT                   NT            90            Active
#> 802    2020  DEN       DT                  RDE            73            Active
#> 803    2020  DEN       DT                   NT            77            Active
#> 804    2020  DEN       DT                 <NA>            94            Active
#> 805    2020  DEN       DT                 <NA>            90 Voluntary Opt Out
#> 806    2020  DEN       DT                 <NA>            97            Active
#> 807    2020  DEN       DT                   NT            95            Active
#> 808    2020  DEN       DT                  RDE            99            Active
#> 809    2020  DEN        G                   RG            52            Active
#> 810    2020  DEN        G                   LG            71            Active
#> 811    2020  DEN        G                   LG            66            Active
#> 812    2020  DEN        G                   RG            61            Active
#> 813    2020  DEN        K                   PK             8            Active
#> 814    2020  DEN        K                 <NA>             1            Active
#> 815    2020  DEN       LB                 RILB            42            Active
#> 816    2020  DEN       LB                  SLB            91            Active
#> 817    2020  DEN       LB                  SLB            59            Active
#> 818    2020  DEN       LB                  WLB            58            Active
#> 819    2020  DEN       LB                 LILB            40            Active
#> 820    2020  DEN       LB                 <NA>            57            Active
#> 821    2020  DEN       LB                  WLB            97            Active
#> 822    2020  DEN       LB                 <NA>            51            Active
#> 823    2020  DEN       LB                 RILB            47            Active
#> 824    2020  DEN       LB                 RILB            43            Active
#> 825    2020  DEN       LB                 RILB            54            Active
#> 826    2020  DEN       LB                  WLB            48            Active
#> 827    2020  DEN       LB                 LILB            45            Active
#> 828    2020  DEN       LB                 LILB            53            Active
#> 829    2020  DEN       LS                 <NA>            46            Active
#> 830    2020  DEN       NT                   NT            98            Active
#> 831    2020  DEN        P                 <NA>             6            Active
#> 832    2020  DEN       QB                   QB             3            Active
#> 833    2020  DEN       QB                   QB             9            Active
#> 834    2020  DEN       QB                   QB             4            Active
#> 835    2020  DEN       RB                 <NA>            34            Active
#> 836    2020  DEN       RB                 <NA>            32            Active
#> 837    2020  DEN       RB                   RB            30            Active
#> 838    2020  DEN       RB                 <NA>            35            Active
#> 839    2020  DEN       RB                   RB            25            Active
#> 840    2020  DEN       RB                   RB            28            Active
#> 841    2020  DEN       SS                 <NA>            34            Active
#> 842    2020  DEN       SS                   FS            36            Active
#> 843    2020  DEN        T                 <NA>            75            Active
#> 844    2020  DEN        T                   RT            68            Active
#> 845    2020  DEN        T                   RT            78            Active
#> 846    2020  DEN        T                   LT            76            Active
#> 847    2020  DEN        T                   LT            72            Active
#> 848    2020  DEN        T                 <NA>            70 Voluntary Opt Out
#> 849    2020  DEN        T                 <NA>            79            Active
#> 850    2020  DEN       TE                 <NA>            84            Active
#> 851    2020  DEN       TE                  LTE            87            Active
#> 852    2020  DEN       TE                 <NA>            80            Active
#> 853    2020  DEN       TE                  LTE            85            Active
#> 854    2020  DEN       TE                  LTE            88            Active
#> 855    2020  DEN       TE                 <NA>            89            Active
#> 856    2020  DEN       TE                   FB            83            Active
#> 857    2020  DEN       TE                   TE            81            Active
#> 858    2020  DEN       WR                  LWR            14            Active
#> 859    2020  DEN       WR                  LWR            19            Active
#> 860    2020  DEN       WR                  RWR            10            Active
#> 861    2020  DEN       WR                  LWR            17            Active
#> 862    2020  DEN       WR                  LWR            81            Active
#> 863    2020  DEN       WR                 <NA>             2            Active
#> 864    2020  DEN       WR                 <NA>            12            Active
#> 865    2020  DEN       WR                 <NA>            16            Active
#> 866    2020  DEN       WR                  RWR            13            Active
#> 867    2020  DEN       WR                  RWR            11            Active
#> 868    2020  DET        C                    C            64            Active
#> 869    2020  DET        C                    C            77            Active
#> 870    2020  DET        C                 <NA>            60 Voluntary Opt Out
#> 871    2020  DET       CB                  LCB            24            Active
#> 872    2020  DET       CB                  RCB            30            Active
#> 873    2020  DET       CB                  RCB            29            Active
#> 874    2020  DET       CB                 <NA>            29            Active
#> 875    2020  DET       CB                 <NA>            31            Active
#> 876    2020  DET       CB                  LCB            23            Active
#> 877    2020  DET       CB                  RCB            34            Active
#> 878    2020  DET       CB                  LCB            38            Active
#> 879    2020  DET       CB                   CB            27            Active
#> 880    2020  DET       DB                   SS            47            Active
#> 881    2020  DET       DB                   FS            35            Active
#> 882    2020  DET       DB                 <NA>            43          Inactive
#> 883    2020  DET       DB                 <NA>            42            Active
#> 884    2020  DET       DB                   FS            21            Active
#> 885    2020  DET       DB                 <NA>            49          Inactive
#> 886    2020  DET       DE                  LDE            99            Active
#> 887    2020  DET       DE                 <NA>            95            Active
#> 888    2020  DET       DE                  LDT            96            Active
#> 889    2020  DET       DE                  LDE            94            Active
#> 890    2020  DET       DE                  RDE            95            Active
#> 891    2020  DET       DE                  RDE            93            Active
#> 892    2020  DET       DE                  RDT            75            Active
#> 893    2020  DET       DE                  LDE            90            Active
#> 894    2020  DET       DE                 <NA>            52            Active
#> 895    2020  DET       DE                  RDE            98            Active
#> 896    2020  DET       DT                 <NA>            99 Voluntary Opt Out
#> 897    2020  DET       DT                 <NA>            64            Active
#> 898    2020  DET       DT                  RDT            91            Active
#> 899    2020  DET       DT                  RDT            71            Active
#> 900    2020  DET       DT                  LDT            92            Active
#> 901    2020  DET       DT                  LDT            97            Active
#> 902    2020  DET        G                 <NA>            62            Active
#> 903    2020  DET        G                   LG            73            Active
#> 904    2020  DET        G                   RG            76            Active
#> 905    2020  DET        G                    C            66            Active
#> 906    2020  DET        G                   RG            61            Active
#> 907    2020  DET        K                   PK             5            Active
#> 908    2020  DET        K                 <NA>            16            Active
#> 909    2020  DET       LB                 <NA>            57            Active
#> 910    2020  DET       LB                  OLB            44            Active
#> 911    2020  DET       LB                  SLB            45            Active
#> 912    2020  DET       LB                  MLB            51            Active
#> 913    2020  DET       LB                  MLB            51            Active
#> 914    2020  DET       LB                  SLB            58            Active
#> 915    2020  DET       LB                  MLB            40            Active
#> 916    2020  DET       LB                  SLB            59            Active
#> 917    2020  DET       LB                 <NA>            69            Active
#> 918    2020  DET       LB                  OLB            52            Active
#> 919    2020  DET       LS                 <NA>            48            Active
#> 920    2020  DET        P                 <NA>             3            Active
#> 921    2020  DET       QB                   QB             9            Active
#> 922    2020  DET       QB                   QB             4            Active
#> 923    2020  DET       QB                   QB            10            Active
#> 924    2020  DET       RB                   RB            33            Active
#> 925    2020  DET       RB                   RB            32            Active
#> 926    2020  DET       RB                 <NA>            40            Active
#> 927    2020  DET       RB                   RB            28            Active
#> 928    2020  DET       RB                 <NA>            28            Active
#> 929    2020  DET       RB                   FB            46            Active
#> 930    2020  DET       SS                   SS            26            Active
#> 931    2020  DET       SS                   FS            25            Active
#> 932    2020  DET       SS                 <NA>            23            Active
#> 933    2020  DET        T                   LT            70            Active
#> 934    2020  DET        T                   RT            72            Active
#> 935    2020  DET        T                   LT            67            Active
#> 936    2020  DET        T                   LT            68            Active
#> 937    2020  DET        T                   RT            65            Active
#> 938    2020  DET       TE                   TE            86            Active
#> 939    2020  DET       TE                 <NA>            47            Active
#> 940    2020  DET       TE                   TE            83            Active
#> 941    2020  DET       TE                 <NA>            86            Active
#> 942    2020  DET       TE                   TE            86            Active
#> 943    2020  DET       TE                   TE            88            Active
#> 944    2020  DET       WR                  SWR            39            Active
#> 945    2020  DET       WR                 <NA>            85            Active
#> 946    2020  DET       WR                  LWR            12            Active
#> 947    2020  DET       WR                  RWR            11            Active
#> 948    2020  DET       WR                  SWR            80            Active
#> 949    2020  DET       WR                  RWR            87            Active
#> 950    2020  DET       WR                 <NA>            13            Active
#> 951    2020  DET       WR                 <NA>            18 Voluntary Opt Out
#> 952    2020  DET       WR                  LWR            19            Active
#> 953    2020   GB        C                    C            63            Active
#> 954    2020   GB        C                 <NA>            67            Active
#> 955    2020   GB       CB                  RCB            35            Active
#> 956    2020   GB       CB                   NB            39            Active
#> 957    2020   GB       CB                  RCB            20            Active
#> 958    2020   GB       CB                 <NA>            34            Active
#> 959    2020   GB       CB                 <NA>            38            Active
#> 960    2020   GB       CB                  LCB            23            Active
#> 961    2020   GB       CB                  LCB            29            Active
#> 962    2020   GB       CB                  RCB            37            Active
#> 963    2020   GB       CB                 <NA>            48            Active
#> 964    2020   GB       DB                   FS            31            Active
#> 965    2020   GB       DB                 <NA>            41            Active
#> 966    2020   GB       DB                   SS            36            Active
#> 967    2020   GB       DB                   FS            24            Active
#> 968    2020   GB       DB                 <NA>            46            Active
#> 969    2020   GB       DE                  LDE            94            Active
#> 970    2020   GB       DE                   NT            93            Active
#> 971    2020   GB       DE                 <NA>            45            Active
#> 972    2020   GB       DE                  LDE            90            Active
#> 973    2020   GB       DE                 <NA>            50            Active
#> 974    2020   GB       DE                  RDE            96            Active
#> 975    2020   GB       DT                 <NA>            79            Active
#> 976    2020   GB       DT                 <NA>            99            Active
#> 977    2020   GB       DT                   NT            98            Active
#> 978    2020   GB       DT                 <NA>            78            Active
#> 979    2020   GB        G                   LG            65            Active
#> 980    2020   GB        G                   RG            64            Active
#> 981    2020   GB        G                   RT            71            Active
#> 982    2020   GB        G                 <NA>            68            Active
#> 983    2020   GB        G                   RG            74            Active
#> 984    2020   GB        G                   LG            62            Active
#> 985    2020   GB        G                   LG            76            Active
#> 986    2020   GB        G                   RG            72            Active
#> 987    2020   GB        K                   PK             2            Active
#> 988    2020   GB       LB                 <NA>            59            Active
#> 989    2020   GB       LB                 LOLB            91            Active
#> 990    2020   GB       LB                 LOLB            52            Active
#> 991    2020   GB       LB                 LOLB            53            Active
#> 992    2020   GB       LB                 RILB            42            Active
#> 993    2020   GB       LB                 LILB            44            Active
#> 994    2020   GB       LB                 ROLB            55            Active
#> 995    2020   GB       LB                 LILB            51            Active
#> 996    2020   GB       LB                 RILB            54            Active
#> 997    2020   GB       LB                 ROLB            56            Active
#> 998    2020   GB       LB                 LILB            57            Active
#> 999    2020   GB       LB                 RILB            58            Active
#> 1000   2020   GB       LS                 <NA>            43            Active
#> 1001   2020   GB       NT                   NT            97            Active
#> 1002   2020   GB       NT                  RDE            95            Active
#> 1003   2020   GB        P                 <NA>             9            Active
#> 1004   2020   GB        P                 <NA>             6            Active
#> 1005   2020   GB       QB                   QB            12            Active
#> 1006   2020   GB       QB                   QB             8            Active
#> 1007   2020   GB       QB                   QB            10            Active
#> 1008   2020   GB       QB                  LTE            45            Active
#> 1009   2020   GB       RB                   RB            22            Active
#> 1010   2020   GB       RB                 <NA>            38            Active
#> 1011   2020   GB       RB                 <NA>            27            Active
#> 1012   2020   GB       RB                   RB            33            Active
#> 1013   2020   GB       RB                 <NA>            32            Active
#> 1014   2020   GB       RB                   RB            28            Active
#> 1015   2020   GB       RB                   RB            30            Active
#> 1016   2020   GB       SS                   SS            26            Active
#> 1017   2020   GB       SS                   FS            25            Active
#> 1018   2020   GB        T                 <NA>            67            Active
#> 1019   2020   GB        T                   RT            77            Active
#> 1020   2020   GB        T                   LT            73            Active
#> 1021   2020   GB        T                   LT            69            Active
#> 1022   2020   GB        T                   LT            65            Active
#> 1023   2020   GB       TE                  LTE            89            Active
#> 1024   2020   GB       TE                  LTE            87            Active
#> 1025   2020   GB       TE                  RTE            49            Active
#> 1026   2020   GB       TE                   FB            81            Active
#> 1027   2020   GB       TE                 <NA>            89            Active
#> 1028   2020   GB       TE                 <NA>            45            Active
#> 1029   2020   GB       TE                  RTE            85            Active
#> 1030   2020   GB       TE                 <NA>            86            Active
#> 1031   2020   GB       WR                  LWR            17            Active
#> 1032   2020   GB       WR                  LWR            86            Active
#> 1033   2020   GB       WR                 <NA>            84            Active
#> 1034   2020   GB       WR                  LWR            19            Active
#> 1035   2020   GB       WR                 <NA>            10            Active
#> 1036   2020   GB       WR                 <NA>            15            Active
#> 1037   2020   GB       WR                  SWR            82            Active
#> 1038   2020   GB       WR                  RWR            13            Active
#> 1039   2020   GB       WR                  RWR            16            Active
#> 1040   2020   GB       WR                  RWR            83            Active
#> 1041   2020   GB       WR                 <NA>            88            Active
#> 1042   2020   GB       WR                 <NA>            11 Voluntary Opt Out
#> 1043   2020  HOU        C                    C            66            Active
#> 1044   2020  HOU        C                 <NA>            68            Active
#> 1045   2020  HOU        C                 <NA>            62            Active
#> 1046   2020  HOU       CB                   FS            36            Active
#> 1047   2020  HOU       CB                   CB            26            Active
#> 1048   2020  HOU       CB                   CB            34            Active
#> 1049   2020  HOU       CB                   SS            32            Active
#> 1050   2020  HOU       CB                 <NA>            39            Active
#> 1051   2020  HOU       CB                  RCB            21            Active
#> 1052   2020  HOU       CB                  LCB            30            Active
#> 1053   2020  HOU       CB                  RCB            29            Active
#> 1054   2020  HOU       CB                 <NA>            28            Active
#> 1055   2020  HOU       CB                  RCB            35            Active
#> 1056   2020  HOU       CB                  LCB            22            Active
#> 1057   2020  HOU       DB                 <NA>            23            Active
#> 1058   2020  HOU       DB                  LCB            33            Active
#> 1059   2020  HOU       DB                   SS            24            Active
#> 1060   2020  HOU       DE                  SLB            54            Active
#> 1061   2020  HOU       DE                  LDE            94            Active
#> 1062   2020  HOU       DE                  RDE            91            Active
#> 1063   2020  HOU       DE                  RDE            99            Active
#> 1064   2020  HOU       DT                   NT            90            Active
#> 1065   2020  HOU       DT                  LDE            96            Active
#> 1066   2020  HOU       DT                   DE            93            Active
#> 1067   2020  HOU       DT                 <NA>            61            Active
#> 1068   2020  HOU       DT                 <NA>            95 Voluntary Opt Out
#> 1069   2020  HOU       DT                   NT            98            Active
#> 1070   2020  HOU        G                   RG            77            Active
#> 1071   2020  HOU        G                   LG            64            Active
#> 1072   2020  HOU        G                   RG            73            Active
#> 1073   2020  HOU        K                   PK             7            Active
#> 1074   2020  HOU       LB                 WILL            51            Active
#> 1075   2020  HOU       LB                 <NA>            40            Active
#> 1076   2020  HOU       LB                 MIKE            55            Active
#> 1077   2020  HOU       LB                 WILL            48            Active
#> 1078   2020  HOU       LB                 MIKE            58            Active
#> 1079   2020  HOU       LB                 WILL            41            Active
#> 1080   2020  HOU       LB                  SLB            59            Active
#> 1081   2020  HOU       LB                 MIKE            50            Active
#> 1082   2020  HOU       LB                 JACK            52            Active
#> 1083   2020  HOU       LB                  RDE            53            Active
#> 1084   2020  HOU       LB                 <NA>            52            Active
#> 1085   2020  HOU       LB                 JACK            57            Active
#> 1086   2020  HOU       LB                  SLB            56            Active
#> 1087   2020  HOU       LS                 <NA>            45            Active
#> 1088   2020  HOU       LS                 <NA>            46            Active
#> 1089   2020  HOU       NT                   NT            92            Active
#> 1090   2020  HOU       NT                  LDE            97            Active
#> 1091   2020  HOU        P                 <NA>             9            Active
#> 1092   2020  HOU       QB                   QB             4            Active
#> 1093   2020  HOU       QB                   QB             2            Active
#> 1094   2020  HOU       QB                   QB             3            Active
#> 1095   2020  HOU       RB                 <NA>            22            Active
#> 1096   2020  HOU       RB                   RB            38            Active
#> 1097   2020  HOU       RB                   RB            31            Active
#> 1098   2020  HOU       RB                   RB            40            Active
#> 1099   2020  HOU       RB                   RB            25            Active
#> 1100   2020  HOU       RB                   FB            44            Active
#> 1101   2020  HOU       SS                   FS            28            Active
#> 1102   2020  HOU       SS                   FS            20            Active
#> 1103   2020  HOU        T                   RT            76            Active
#> 1104   2020  HOU        T                   RT            71            Active
#> 1105   2020  HOU        T                   LT            63            Active
#> 1106   2020  HOU        T                   LG            74            Active
#> 1107   2020  HOU        T                   LT            78            Active
#> 1108   2020  HOU        T                   RT            67            Active
#> 1109   2020  HOU        T                 <NA>            70            Active
#> 1110   2020  HOU       TE                   TE            88            Active
#> 1111   2020  HOU       TE                   TE            85            Active
#> 1112   2020  HOU       TE                   TE            87            Active
#> 1113   2020  HOU       TE                 <NA>            81            Active
#> 1114   2020  HOU       WR                  SWR            18            Active
#> 1115   2020  HOU       WR                 <NA>            11            Active
#> 1116   2020  HOU       WR                  RWR            17            Active
#> 1117   2020  HOU       WR                  RWR            16            Active
#> 1118   2020  HOU       WR                  LWR            19            Active
#> 1119   2020  HOU       WR                  LWR            82            Active
#> 1120   2020  HOU       WR                 <NA>            16            Active
#> 1121   2020  HOU       WR                  RWR            15            Active
#> 1122   2020  HOU       WR                 <NA>             1            Active
#> 1123   2020  HOU       WR                  LWR            13            Active
#> 1124   2020  IND        C                    C            78            Active
#> 1125   2020  IND        C                    C            68            Active
#> 1126   2020  IND        C                 <NA>            70            Active
#> 1127   2020  IND       CB                   CB            38            Active
#> 1128   2020  IND       CB                 <NA>            36            Active
#> 1129   2020  IND       CB                   CB            35            Active
#> 1130   2020  IND       CB                   CB            26            Active
#> 1131   2020  IND       CB                 <NA>            23            Active
#> 1132   2020  IND       CB                   CB            27            Active
#> 1133   2020  IND       CB                 <NA>            43            Active
#> 1134   2020  IND       CB                   NB            34            Active
#> 1135   2020  IND       CB                   NB            23            Active
#> 1136   2020  IND       CB                 <NA>            39 Voluntary Opt Out
#> 1137   2020  IND       DB                 <NA>            36            Active
#> 1138   2020  IND       DB                 <NA>            33            Active
#> 1139   2020  IND       DB                 <NA>            42            Active
#> 1140   2020  IND       DB                   SS            32            Active
#> 1141   2020  IND       DB                   FS            30            Active
#> 1142   2020  IND       DB                   FS            29            Active
#> 1143   2020  IND       DE                   DT            94            Active
#> 1144   2020  IND       DE                  LDE            96            Active
#> 1145   2020  IND       DE                  LDE            57            Active
#> 1146   2020  IND       DE                  RDE            50            Active
#> 1147   2020  IND       DE                  LDE            97            Active
#> 1148   2020  IND       DE                  RDE            52            Active
#> 1149   2020  IND       DT                 <NA>            66            Active
#> 1150   2020  IND       DT                 <NA>            92            Active
#> 1151   2020  IND       DT                   NT            76            Active
#> 1152   2020  IND       DT                 <NA>            93            Active
#> 1153   2020  IND       DT                   DT            99            Active
#> 1154   2020  IND        G                   RG            64            Active
#> 1155   2020  IND        G                   LG            56            Active
#> 1156   2020  IND        G                   RG            63            Active
#> 1157   2020  IND        G                 <NA>            60            Active
#> 1158   2020  IND        K                   PK             3            Active
#> 1159   2020  IND       LB                  WLB            53            Active
#> 1160   2020  IND       LB                  MLB            49            Active
#> 1161   2020  IND       LB                  MLB            54            Active
#> 1162   2020  IND       LB                 <NA>            52            Active
#> 1163   2020  IND       LB                 <NA>            55 Voluntary Opt Out
#> 1164   2020  IND       LB                  SLB            58            Active
#> 1165   2020  IND       LB                  WLB            59            Active
#> 1166   2020  IND       LB                 <NA>            59            Active
#> 1167   2020  IND       LB                  SLB            45            Active
#> 1168   2020  IND       LB                  MLB            44            Active
#> 1169   2020  IND       LS                 <NA>            46            Active
#> 1170   2020  IND       NT                   NT            90            Active
#> 1171   2020  IND        P                 <NA>             3            Active
#> 1172   2020  IND        P                 <NA>             8            Active
#> 1173   2020  IND        P                 <NA>             6            Active
#> 1174   2020  IND       QB                   QB             7            Active
#> 1175   2020  IND       QB                   QB             6            Active
#> 1176   2020  IND       QB                   QB             9            Active
#> 1177   2020  IND       QB                   QB            17            Active
#> 1178   2020  IND       RB                   RB            21            Active
#> 1179   2020  IND       RB                 <NA>            20            Active
#> 1180   2020  IND       RB                 <NA>            40            Active
#> 1181   2020  IND       RB                   RB            28            Active
#> 1182   2020  IND       RB                   RB            25            Active
#> 1183   2020  IND       RB                 <NA>            39            Active
#> 1184   2020  IND       RB                   RB            41            Active
#> 1185   2020  IND       SS                   SS            37            Active
#> 1186   2020  IND       SS                   SS            31            Active
#> 1187   2020  IND       SS                 <NA>            42 Voluntary Opt Out
#> 1188   2020  IND        T                   RT            62            Active
#> 1189   2020  IND        T                 <NA>            61            Active
#> 1190   2020  IND        T                 <NA>            74   Injured Reserve
#> 1191   2020  IND        T                 <NA>            76            Active
#> 1192   2020  IND        T                   LG            69            Active
#> 1193   2020  IND        T                   LT            75            Active
#> 1194   2020  IND        T                   RT            72            Active
#> 1195   2020  IND        T                 <NA>            75            Active
#> 1196   2020  IND        T                 <NA>            73            Active
#> 1197   2020  IND       TE                 <NA>            83            Active
#> 1198   2020  IND       TE                 <NA>            87            Active
#> 1199   2020  IND       TE                  LTE            84            Active
#> 1200   2020  IND       TE                  RTE            81            Active
#> 1201   2020  IND       TE                  LTE            86            Active
#> 1202   2020  IND       TE                  RTE            80            Active
#> 1203   2020  IND       TE                 <NA>            41            Active
#> 1204   2020  IND       WR                  RWR            85            Active
#> 1205   2020  IND       WR                   WR            15            Active
#> 1206   2020  IND       WR                  LWR            12            Active
#> 1207   2020  IND       WR                 <NA>            15            Active
#> 1208   2020  IND       WR                 <NA>            10            Active
#> 1209   2020  IND       WR                  RWR            16            Active
#> 1210   2020  IND       WR                 <NA>            16            Active
#> 1211   2020  IND       WR                  LWR            14            Active
#> 1212   2020  IND       WR                  LWR            13            Active
#> 1213   2020  IND       WR                  RWR            11            Active
#> 1214   2020  JAX        C                 <NA>            64            Active
#> 1215   2020  JAX       CB                   CB            25            Active
#> 1216   2020  JAX       CB                  RCB            34            Active
#> 1217   2020  JAX       CB                 <NA>            22 Voluntary Opt Out
#> 1218   2020  JAX       CB                 <NA>            32            Active
#> 1219   2020  JAX       CB                   FS            40            Active
#> 1220   2020  JAX       CB                  RCB            24            Active
#> 1221   2020  JAX       CB                   CB            35            Active
#> 1222   2020  JAX       CB                  LCB            36            Active
#> 1223   2020  JAX       CB                  LCB             5            Active
#> 1224   2020  JAX       CB                  LCB            23            Active
#> 1225   2020  JAX       CB                   CB            27            Active
#> 1226   2020  JAX       CB                  RCB            37            Active
#> 1227   2020  JAX       DB                   FS            42            Active
#> 1228   2020  JAX       DB                   FS            39            Active
#> 1229   2020  JAX       DB                 <NA>            38            Active
#> 1230   2020  JAX       DE                  RDE            96            Active
#> 1231   2020  JAX       DE                  LDE            93          Inactive
#> 1232   2020  JAX       DE                  LDE            41            Active
#> 1233   2020  JAX       DE                  LDE            45            Active
#> 1234   2020  JAX       DE                  RDE            94            Active
#> 1235   2020  JAX       DE                   DT            99          Inactive
#> 1236   2020  JAX       DE                 <NA>            55 Voluntary Opt Out
#> 1237   2020  JAX       DT                 <NA>            97 Voluntary Opt Out
#> 1238   2020  JAX       DT                 <NA>            99            Active
#> 1239   2020  JAX       DT                   DT            90            Active
#> 1240   2020  JAX       DT                   NT            95            Active
#> 1241   2020  JAX       DT                   DT            58            Active
#> 1242   2020  JAX       DT                   NT            92            Active
#> 1243   2020  JAX       DT                   DT            93            Active
#> 1244   2020  JAX       DT                 <NA>            57            Active
#> 1245   2020  JAX       FB                 <NA>            49            Active
#> 1246   2020  JAX        G                    C            69            Active
#> 1247   2020  JAX        G                   RG            60            Active
#> 1248   2020  JAX        G                   LG            68            Active
#> 1249   2020  JAX        G                    C            65            Active
#> 1250   2020  JAX        G                 <NA>            77            Active
#> 1251   2020  JAX        K                    K             3            Active
#> 1252   2020  JAX        K                 <NA>             1            Active
#> 1253   2020  JAX        K                   PK             4            Active
#> 1254   2020  JAX        K                   PK             7            Active
#> 1255   2020  JAX       LB                  WLB            53            Active
#> 1256   2020  JAX       LB                  MLB            50            Active
#> 1257   2020  JAX       LB                  MLB            47            Active
#> 1258   2020  JAX       LB                  MLB            56            Active
#> 1259   2020  JAX       LB                  SLB            43            Active
#> 1260   2020  JAX       LB                  WLB            53            Active
#> 1261   2020  JAX       LB                 <NA>            55   Injured Reserve
#> 1262   2020  JAX       LB                  SLB            48            Active
#> 1263   2020  JAX       LB                  WLB            44            Active
#> 1264   2020  JAX       LB                 <NA>            57            Active
#> 1265   2020  JAX       LB                  SLB            59            Active
#> 1266   2020  JAX       LS                 <NA>            46            Active
#> 1267   2020  JAX       NT                   NT            52            Active
#> 1268   2020  JAX       NT                  RDE            98            Active
#> 1269   2020  JAX        P                 <NA>             6            Active
#> 1270   2020  JAX        P                 <NA>             9            Active
#> 1271   2020  JAX       QB                   QB             6            Active
#> 1272   2020  JAX       QB                   QB             2            Active
#> 1273   2020  JAX       QB                   QB            15            Active
#> 1274   2020  JAX       RB                 <NA>            22            Active
#> 1275   2020  JAX       RB                   RB            23            Active
#> 1276   2020  JAX       RB                   RB            34            Active
#> 1277   2020  JAX       RB                 <NA>            31            Active
#> 1278   2020  JAX       RB                   RB            30            Active
#> 1279   2020  JAX       RB                 <NA>            48            Active
#> 1280   2020  JAX       RB                 <NA>            33            Active
#> 1281   2020  JAX       SS                   SS            26            Active
#> 1282   2020  JAX       SS                   SS            20            Active
#> 1283   2020  JAX       SS                   SS            29            Active
#> 1284   2020  JAX        T                 <NA>            63            Active
#> 1285   2020  JAX        T                   RG            78            Active
#> 1286   2020  JAX        T                   LG            62            Active
#> 1287   2020  JAX        T                   LT            76            Active
#> 1288   2020  JAX        T                   RT            77            Active
#> 1289   2020  JAX        T                   LT            74            Active
#> 1290   2020  JAX        T                 <NA>            64            Active
#> 1291   2020  JAX        T                   RT            75            Active
#> 1292   2020  JAX       TE                 <NA>            85            Active
#> 1293   2020  JAX       TE                  LTE            80            Active
#> 1294   2020  JAX       TE                   TE            41            Active
#> 1295   2020  JAX       TE                  LTE            88            Active
#> 1296   2020  JAX       TE                 <NA>            86            Active
#> 1297   2020  JAX       TE                 <NA>            87            Active
#> 1298   2020  JAX       TE                  LTE            89            Active
#> 1299   2020  JAX       WR                  SWR            14            Active
#> 1300   2020  JAX       WR                  LWR            84            Active
#> 1301   2020  JAX       WR                  RWR            13            Active
#> 1302   2020  JAX       WR                 <NA>            15            Active
#> 1303   2020  JAX       WR                 <NA>            81            Active
#> 1304   2020  JAX       WR                  LWR            12            Active
#> 1305   2020  JAX       WR                  SWR            10            Active
#> 1306   2020  JAX       WR                  RWR            17            Active
#> 1307   2020  JAX       WR                  RWR            18            Active
#> 1308   2020  JAX       WR                 <NA>            85            Active
#> 1309   2020  JAX       WR                  RWR            19            Active
#> 1310   2020   KC        C                    C            67            Active
#> 1311   2020   KC        C                    C            61            Active
#> 1312   2020   KC        C                    C            62            Active
#> 1313   2020   KC       CB                   CB            20            Active
#> 1314   2020   KC       CB                   CB            30            Active
#> 1315   2020   KC       CB                  RCB            21            Active
#> 1316   2020   KC       CB                  LCB            29            Active
#> 1317   2020   KC       CB                  LCB            38            Active
#> 1318   2020   KC       CB                   CB            27            Active
#> 1319   2020   KC       CB                   SS            45            Active
#> 1320   2020   KC       CB                  LCB            35            Active
#> 1321   2020   KC       CB                 <NA>            30            Active
#> 1322   2020   KC       DB                   FS            22            Active
#> 1323   2020   KC       DB                   FS            49            Active
#> 1324   2020   KC       DB                 <NA>            40            Active
#> 1325   2020   KC       DE                  LDE            57            Active
#> 1326   2020   KC       DE                  LDE            90            Active
#> 1327   2020   KC       DE                  RDE            94            Active
#> 1328   2020   KC       DE                  RDE            55            Active
#> 1329   2020   KC       DE                 <NA>            52            Active
#> 1330   2020   KC       DE                  LDE            92            Active
#> 1331   2020   KC       DE                  RDE            51            Active
#> 1332   2020   KC       DE                 <NA>            95            Active
#> 1333   2020   KC       DT                  LDT            99            Active
#> 1334   2020   KC       DT                 <NA>            69            Active
#> 1335   2020   KC       DT                  LDT            98            Active
#> 1336   2020   KC       DT                  LDT            95            Active
#> 1337   2020   KC        G                 <NA>            68            Active
#> 1338   2020   KC        G                   LG            70            Active
#> 1339   2020   KC        G                   RG            61            Active
#> 1340   2020   KC        G                 <NA>            76 Voluntary Opt Out
#> 1341   2020   KC        G                 <NA>            60            Active
#> 1342   2020   KC        G                   LG            73            Active
#> 1343   2020   KC        K                   PK             7            Active
#> 1344   2020   KC       LB                   LB            44            Active
#> 1345   2020   KC       LB                   LB            50            Active
#> 1346   2020   KC       LB                   LB            54            Active
#> 1347   2020   KC       LB                   LB            53            Active
#> 1348   2020   KC       LB                   LB            56            Active
#> 1349   2020   KC       LB                 <NA>            43            Active
#> 1350   2020   KC       LB                   LB            47            Active
#> 1351   2020   KC       LB                 <NA>            59            Active
#> 1352   2020   KC       LS                 <NA>            41            Active
#> 1353   2020   KC       NT                  RDT            64            Active
#> 1354   2020   KC       NT                  RDT            91            Active
#> 1355   2020   KC        P                 <NA>             1            Active
#> 1356   2020   KC        P                   PK             5            Active
#> 1357   2020   KC       QB                   QB            15            Active
#> 1358   2020   KC       QB                 <NA>             8            Active
#> 1359   2020   KC       QB                   QB             4            Active
#> 1360   2020   KC       QB                 <NA>             8            Active
#> 1361   2020   KC       RB                 <NA>            26 Voluntary Opt Out
#> 1362   2020   KC       RB                   FB            42            Active
#> 1363   2020   KC       RB                 <NA>            34            Active
#> 1364   2020   KC       RB                 <NA>            34            Active
#> 1365   2020   KC       RB                   RB            31            Active
#> 1366   2020   KC       RB                   RB            26            Active
#> 1367   2020   KC       RB                   RB            25            Active
#> 1368   2020   KC       SS                   FS            23            Active
#> 1369   2020   KC       SS                   SS            32            Active
#> 1370   2020   KC        T                   RT            75            Active
#> 1371   2020   KC        T                   RG            77            Active
#> 1372   2020   KC        T                   LT            72            Active
#> 1373   2020   KC        T                 <NA>            67 Voluntary Opt Out
#> 1374   2020   KC        T                   LG            79            Active
#> 1375   2020   KC        T                   LT            74            Active
#> 1376   2020   KC        T                   RT            71            Active
#> 1377   2020   KC        T                 <NA>            72            Active
#> 1378   2020   KC       TE                 <NA>            82            Active
#> 1379   2020   KC       TE                   TE            83            Active
#> 1380   2020   KC       TE                   TE            87            Active
#> 1381   2020   KC       TE                 <NA>            84            Active
#> 1382   2020   KC       TE                 <NA>            89            Active
#> 1383   2020   KC       TE                   TE            48            Active
#> 1384   2020   KC       WR                  SWR            11            Active
#> 1385   2020   KC       WR                 <NA>            89            Active
#> 1386   2020   KC       WR                 <NA>            11            Active
#> 1387   2020   KC       WR                  RWR            14            Active
#> 1388   2020   KC       WR                 <NA>            11            Active
#> 1389   2020   KC       WR                  RWR             1            Active
#> 1390   2020   KC       WR                 <NA>            16            Active
#> 1391   2020   KC       WR                  RWR            17            Active
#> 1392   2020   KC       WR                  LWR            12            Active
#> 1393   2020   KC       WR                  LWR            13            Active
#> 1394   2020   KC       WR                  LWR            10            Active
#> 1395   2020   KC       WR                 <NA>            19            Active
#> 1396   2020   LA        C                    C            66            Active
#> 1397   2020   LA        C                    C            55            Active
#> 1398   2020   LA       CB                  LCB            22            Active
#> 1399   2020   LA       CB                  RCB            25            Active
#> 1400   2020   LA       CB                 <NA>            21            Active
#> 1401   2020   LA       CB                  RCB            20            Active
#> 1402   2020   LA       CB                   CB            31            Active
#> 1403   2020   LA       DB                   FS            46            Active
#> 1404   2020   LA       DB                   FS            43            Active
#> 1405   2020   LA       DB                   FS            33            Active
#> 1406   2020   LA       DB                   SS            32            Active
#> 1407   2020   LA       DB                 <NA>            36            Active
#> 1408   2020   LA       DB                 <NA>            37            Active
#> 1409   2020   LA       DE                  LDE            49            Active
#> 1410   2020   LA       DE                  LDE            97            Active
#> 1411   2020   LA       DE                 <NA>            62            Active
#> 1412   2020   LA       DE                  LDE            90            Active
#> 1413   2020   LA       DT                 <NA>            98            Active
#> 1414   2020   LA       DT                   DT            99            Active
#> 1415   2020   LA       DT                   DT            94            Active
#> 1416   2020   LA       DT                 <NA>            96            Active
#> 1417   2020   LA       DT                 <NA>            93            Active
#> 1418   2020   LA        G                 <NA>            64            Active
#> 1419   2020   LA        G                 <NA>            61            Active
#> 1420   2020   LA        G                   LT            70            Active
#> 1421   2020   LA        G                   LG            73            Active
#> 1422   2020   LA        G                   RG            63            Active
#> 1423   2020   LA        G                   RG            65            Active
#> 1424   2020   LA        K                    K             2   Injured Reserve
#> 1425   2020   LA        K                 <NA>             8            Active
#> 1426   2020   LA        K                   PK             1            Active
#> 1427   2020   LA       LB                 RILB            41            Active
#> 1428   2020   LA       LB                 <NA>            47            Active
#> 1429   2020   LA       LB                 RILB            51            Active
#> 1430   2020   LA       LB                 WILL            45            Active
#> 1431   2020   LA       LB                  SLB            54            Active
#> 1432   2020   LA       LB                 LILB            59            Active
#> 1433   2020   LA       LB                  OLB            53            Active
#> 1434   2020   LA       LB                 LILB            58            Active
#> 1435   2020   LA       LB                 WILL            50            Active
#> 1436   2020   LA       LB                 <NA>            56            Active
#> 1437   2020   LA       LB                  SLB            52            Active
#> 1438   2020   LA       LB                 <NA>            95            Active
#> 1439   2020   LA       LB                 RILB            48            Active
#> 1440   2020   LA       LS                 <NA>            49            Active
#> 1441   2020   LA       LS                 <NA>            40            Active
#> 1442   2020   LA       LS                 <NA>            44            Active
#> 1443   2020   LA       NT                   NT            91            Active
#> 1444   2020   LA       NT                   NT            69            Active
#> 1445   2020   LA        P                 <NA>             1            Active
#> 1446   2020   LA        P                 <NA>             6            Active
#> 1447   2020   LA       QB                   QB             9            Active
#> 1448   2020   LA       QB                 <NA>             6            Active
#> 1449   2020   LA       QB                   QB            19            Active
#> 1450   2020   LA       QB                 <NA>             5            Active
#> 1451   2020   LA       QB                   QB            16            Active
#> 1452   2020   LA       RB                   RB            23            Active
#> 1453   2020   LA       RB                 <NA>            30            Active
#> 1454   2020   LA       RB                 <NA>            35            Active
#> 1455   2020   LA       RB                   RB            27            Active
#> 1456   2020   LA       RB                   RB            34            Active
#> 1457   2020   LA       SS                   SS            24            Active
#> 1458   2020   LA       SS                 <NA>            39            Active
#> 1459   2020   LA       SS                   SS            26            Active
#> 1460   2020   LA        T                   RT            79            Active
#> 1461   2020   LA        T                 <NA>            67 Voluntary Opt Out
#> 1462   2020   LA        T                   LT            72            Active
#> 1463   2020   LA        T                   LT            77            Active
#> 1464   2020   LA        T                   RT            71            Active
#> 1465   2020   LA       TE                   TE            81            Active
#> 1466   2020   LA       TE                 <NA>            88            Active
#> 1467   2020   LA       TE                   TE            89            Active
#> 1468   2020   LA       TE                 <NA>            86            Active
#> 1469   2020   LA       TE                   TE            82            Active
#> 1470   2020   LA       WR                  SWR            17            Active
#> 1471   2020   LA       WR                  LWR            12            Active
#> 1472   2020   LA       WR                  SWR            83            Active
#> 1473   2020   LA       WR                 <NA>            15            Active
#> 1474   2020   LA       WR                  LWR            10            Active
#> 1475   2020   LA       WR                  RWR            11            Active
#> 1476   2020   LA       WR                  RWR            14            Active
#> 1477   2020  LAC        C                    C            53            Active
#> 1478   2020  LAC        C                 <NA>            64            Active
#> 1479   2020  LAC       CB                  RCB            37            Active
#> 1480   2020  LAC       CB                  LCB            28            Active
#> 1481   2020  LAC       CB                  LCB            43            Active
#> 1482   2020  LAC       CB                  RCB            26            Active
#> 1483   2020  LAC       CB                   NB            25            Active
#> 1484   2020  LAC       DB                   SS            24            Active
#> 1485   2020  LAC       DB                   SS            36            Active
#> 1486   2020  LAC       DB                 <NA>            38            Active
#> 1487   2020  LAC       DB                 <NA>            39            Active
#> 1488   2020  LAC       DB                   FS            33            Active
#> 1489   2020  LAC       DE                DE/OB            90            Active
#> 1490   2020  LAC       DE                  LDE            97            Active
#> 1491   2020  LAC       DE                DE/OB            54            Active
#> 1492   2020  LAC       DE                  LDE            98            Active
#> 1493   2020  LAC       DE                  RDE            92            Active
#> 1494   2020  LAC       DE                DE/OB            42            Active
#> 1495   2020  LAC       DT                  RDE            99            Active
#> 1496   2020  LAC       DT                 <NA>            77            Active
#> 1497   2020  LAC       DT                   DT            93            Active
#> 1498   2020  LAC       DT                   DT            91            Active
#> 1499   2020  LAC        G                   LG            66            Active
#> 1500   2020  LAC        G                   RG            61            Active
#> 1501   2020  LAC        G                 <NA>            63            Active
#> 1502   2020  LAC        G                   RG            72            Active
#> 1503   2020  LAC        G                   RG            70            Active
#> 1504   2020  LAC        G                   LG            76            Active
#> 1505   2020  LAC        G                 <NA>            60            Active
#> 1506   2020  LAC        K                   PK             4            Active
#> 1507   2020  LAC       LB                   LB            49            Active
#> 1508   2020  LAC       LB                   LB            46            Active
#> 1509   2020  LAC       LB                   LB            44            Active
#> 1510   2020  LAC       LB                   LB            56            Active
#> 1511   2020  LAC       LB                   LB            59            Active
#> 1512   2020  LAC       LB                   LB            52            Active
#> 1513   2020  LAC       LB                   LB            50            Active
#> 1514   2020  LAC       LB                   LB            51            Active
#> 1515   2020  LAC       LB                   LB            58            Active
#> 1516   2020  LAC       LS                 <NA>            45            Active
#> 1517   2020  LAC       NT                   NT            95            Active
#> 1518   2020  LAC       NT                   NT            71            Active
#> 1519   2020  LAC       NT                 <NA>            96            Active
#> 1520   2020  LAC        P                 <NA>             4            Active
#> 1521   2020  LAC        P                   PK             1            Active
#> 1522   2020  LAC       QB                   QB             5            Active
#> 1523   2020  LAC       QB                   QB             2            Active
#> 1524   2020  LAC       QB                   QB            10            Active
#> 1525   2020  LAC       RB                   RB            27            Active
#> 1526   2020  LAC       RB                   RB            30            Active
#> 1527   2020  LAC       RB                 <NA>            34            Active
#> 1528   2020  LAC       RB                 <NA>            35            Active
#> 1529   2020  LAC       RB                 <NA>            31            Active
#> 1530   2020  LAC       RB                   FB            40            Active
#> 1531   2020  LAC       RB                   RB            22            Active
#> 1532   2020  LAC       SS                   FS            32            Active
#> 1533   2020  LAC       SS                  RCB            20            Active
#> 1534   2020  LAC       SS                   FS            23            Active
#> 1535   2020  LAC        T                   LT            69            Active
#> 1536   2020  LAC        T                   LT            79            Active
#> 1537   2020  LAC        T                   RT            74            Active
#> 1538   2020  LAC        T                   RT            75            Active
#> 1539   2020  LAC        T                   RT            73            Active
#> 1540   2020  LAC       TE                   TE            86            Active
#> 1541   2020  LAC       TE                 <NA>            89            Active
#> 1542   2020  LAC       TE                   TE            88            Active
#> 1543   2020  LAC       TE                 <NA>            48            Active
#> 1544   2020  LAC       TE                   TE            82            Active
#> 1545   2020  LAC       WR                 <NA>             6            Active
#> 1546   2020  LAC       WR                  RWR            83            Active
#> 1547   2020  LAC       WR                 <NA>            11            Active
#> 1548   2020  LAC       WR                  LWR            13            Active
#> 1549   2020  LAC       WR                  LWR            84            Active
#> 1550   2020  LAC       WR                 <NA>            80            Active
#> 1551   2020  LAC       WR                  RWR            12            Active
#> 1552   2020  LAC       WR                  LWR            15            Active
#> 1553   2020  LAC       WR                  RWR            81            Active
#> 1554   2020   LV        C                 <NA>            62            Active
#> 1555   2020   LV        C                    C            61            Active
#> 1556   2020   LV        C                    C            68            Active
#> 1557   2020   LV       CB                  RCB            22            Active
#> 1558   2020   LV       CB                   NB            21            Active
#> 1559   2020   LV       CB                   NB            29            Active
#> 1560   2020   LV       CB                 <NA>            39          Inactive
#> 1561   2020   LV       CB                  LCB            36            Active
#> 1562   2020   LV       CB                  RCB            20            Active
#> 1563   2020   LV       CB                 <NA>            34 Voluntary Opt Out
#> 1564   2020   LV       CB                  LCB            27            Active
#> 1565   2020   LV       CB                  LCB            31            Active
#> 1566   2020   LV       CB                  RCB            26            Active
#> 1567   2020   LV       DB                 <NA>             8            Active
#> 1568   2020   LV       DB                 <NA>            53            Active
#> 1569   2020   LV       DB                   FS            32            Active
#> 1570   2020   LV       DB                   FS            25            Active
#> 1571   2020   LV       DE                  RDE            94            Active
#> 1572   2020   LV       DE                 <NA>            95 Voluntary Opt Out
#> 1573   2020   LV       DE                 <NA>            95            Active
#> 1574   2020   LV       DE                  LDE            98            Active
#> 1575   2020   LV       DE                  RDE            92            Active
#> 1576   2020   LV       DE                  LDE            96            Active
#> 1577   2020   LV       DE                  LDE            99            Active
#> 1578   2020   LV       DE                  RDE            98            Active
#> 1579   2020   LV       DE                 <NA>            95            Active
#> 1580   2020   LV       DT                 <NA>            95            Active
#> 1581   2020   LV       DT                   NT            73            Active
#> 1582   2020   LV       DT                   NT            90            Active
#> 1583   2020   LV       DT                   DT            91            Active
#> 1584   2020   LV       DT                   DT            97            Active
#> 1585   2020   LV       FB                   FB            45            Active
#> 1586   2020   LV        G                   RG            71            Active
#> 1587   2020   LV        G                   RG            66            Active
#> 1588   2020   LV        G                   LG            64            Active
#> 1589   2020   LV        G                   RG            67            Active
#> 1590   2020   LV        G                   LG            76            Active
#> 1591   2020   LV        K                 <NA>             5            Active
#> 1592   2020   LV        K                   PK             2            Active
#> 1593   2020   LV       LB                  SLB            51            Active
#> 1594   2020   LV       LB                  SLB            50            Active
#> 1595   2020   LV       LB                  MLB            44            Active
#> 1596   2020   LV       LB                  WLB            55            Active
#> 1597   2020   LV       LB                  MLB            54            Active
#> 1598   2020   LV       LB                  WLB            42            Active
#> 1599   2020   LV       LB                  WLB            58            Active
#> 1600   2020   LV       LB                 <NA>            54 Voluntary Opt Out
#> 1601   2020   LV       LB                 <NA>            59            Active
#> 1602   2020   LV       LS                 <NA>            47            Active
#> 1603   2020   LV       NT                 <NA>            69            Active
#> 1604   2020   LV        P                 <NA>             6            Active
#> 1605   2020   LV       QB                   QB             4            Active
#> 1606   2020   LV       QB                 <NA>             1            Active
#> 1607   2020   LV       QB                   QB             3            Active
#> 1608   2020   LV       QB                   QB             8            Active
#> 1609   2020   LV       RB                   RB            23            Active
#> 1610   2020   LV       RB                   RB            28            Active
#> 1611   2020   LV       RB                   RB            30            Active
#> 1612   2020   LV       RB                 <NA>            35            Active
#> 1613   2020   LV       SS                   SS            38            Active
#> 1614   2020   LV       SS                 <NA>            33            Active
#> 1615   2020   LV       SS                   SS            24            Active
#> 1616   2020   LV        T                   LT            75            Active
#> 1617   2020   LV        T                 <NA>            63            Active
#> 1618   2020   LV        T                   RT            77            Active
#> 1619   2020   LV        T                 <NA>            72            Active
#> 1620   2020   LV        T                   LT            74            Active
#> 1621   2020   LV        T                   RT            70            Active
#> 1622   2020   LV       TE                 <NA>            49            Active
#> 1623   2020   LV       TE                 <NA>            84            Active
#> 1624   2020   LV       TE                   TE            83            Active
#> 1625   2020   LV       TE                   TE            82            Active
#> 1626   2020   LV       TE                   TE            85            Active
#> 1627   2020   LV       TE                   TE            87            Active
#> 1628   2020   LV       WR                  SWR            17            Active
#> 1629   2020   LV       WR                  RWR            14            Active
#> 1630   2020   LV       WR                  LWR            11            Active
#> 1631   2020   LV       WR                 <NA>            16            Active
#> 1632   2020   LV       WR                  SWR            16            Active
#> 1633   2020   LV       WR                  LWR            12            Active
#> 1634   2020   LV       WR                 <NA>            89            Active
#> 1635   2020   LV       WR                  SWR            13            Active
#> 1636   2020   LV       WR                 <NA>            88            Active
#> 1637   2020   LV       WR                  RWR            89            Active
#> 1638   2020   LV       WR                  RWR            15            Active
#> 1639   2020   LV       WR                 <NA>            18            Active
#> 1640   2020  MIA        C                 <NA>            63            Active
#> 1641   2020  MIA        C                 <NA>            61            Active
#> 1642   2020  MIA        C                    C            63            Active
#> 1643   2020  MIA        C                    C            67            Active
#> 1644   2020  MIA       CB                  LCB            33            Active
#> 1645   2020  MIA       CB                  LCB            24            Active
#> 1646   2020  MIA       CB                 <NA>            36            Active
#> 1647   2020  MIA       CB                   NB            23            Active
#> 1648   2020  MIA       CB                  LCB            40            Active
#> 1649   2020  MIA       CB                  RCB            25            Active
#> 1650   2020  MIA       DB                   NB            28            Active
#> 1651   2020  MIA       DB                   FS            29            Active
#> 1652   2020  MIA       DB                 <NA>            39            Active
#> 1653   2020  MIA       DB                   FS            35            Active
#> 1654   2020  MIA       DB                 <NA>            38            Active
#> 1655   2020  MIA       DB                   SS            36            Active
#> 1656   2020  MIA       DB                 <NA>            39            Active
#> 1657   2020  MIA       DE                   DE            92            Active
#> 1658   2020  MIA       DE                 <NA>            97            Active
#> 1659   2020  MIA       DE                 <NA>            64            Active
#> 1660   2020  MIA       DE                  LDE            94            Active
#> 1661   2020  MIA       DE                   DE            91            Active
#> 1662   2020  MIA       DE                  LDE            58            Active
#> 1663   2020  MIA       DE                   DE            98            Active
#> 1664   2020  MIA       DT                 <NA>            69            Active
#> 1665   2020  MIA       DT                   NT            95            Active
#> 1666   2020  MIA       DT                   DE            77          Inactive
#> 1667   2020  MIA       FB                   RB            27            Active
#> 1668   2020  MIA        G                   RG            78            Active
#> 1669   2020  MIA        G                   LG            75            Active
#> 1670   2020  MIA        G                   RG            66            Active
#> 1671   2020  MIA        K                   PK             7            Active
#> 1672   2020  MIA       LB                  WLB            43            Active
#> 1673   2020  MIA       LB                  WLB            90            Active
#> 1674   2020  MIA       LB                   LB            47            Active
#> 1675   2020  MIA       LB                   LB            51            Active
#> 1676   2020  MIA       LB                   LB            48            Active
#> 1677   2020  MIA       LB                  SLB            53            Active
#> 1678   2020  MIA       LB                  SLB            49            Active
#> 1679   2020  MIA       LB                 <NA>            59            Active
#> 1680   2020  MIA       LB                   LB            55            Active
#> 1681   2020  MIA       LB                   LB            44            Active
#> 1682   2020  MIA       LB                 <NA>            45            Active
#> 1683   2020  MIA       LS                 <NA>             0            Active
#> 1684   2020  MIA       LS                 <NA>            50            Active
#> 1685   2020  MIA       NT                   NT            98            Active
#> 1686   2020  MIA       NT                   NT            56            Active
#> 1687   2020  MIA        P                 <NA>             2            Active
#> 1688   2020  MIA       QB                   QB             5            Active
#> 1689   2020  MIA       QB                   QB             1            Active
#> 1690   2020  MIA       QB                 <NA>            17            Active
#> 1691   2020  MIA       QB                   QB            14            Active
#> 1692   2020  MIA       RB                 <NA>            32            Active
#> 1693   2020  MIA       RB                   RB            26            Active
#> 1694   2020  MIA       RB                   RB            22            Active
#> 1695   2020  MIA       RB                   RB            37            Active
#> 1696   2020  MIA       RB                 <NA>            10            Active
#> 1697   2020  MIA       RB                 <NA>            31            Active
#> 1698   2020  MIA       RB                 <NA>            20            Active
#> 1699   2020  MIA       RB                  LWR            15            Active
#> 1700   2020  MIA       SS                   SS            42            Active
#> 1701   2020  MIA       SS                   SS            21            Active
#> 1702   2020  MIA        T                   RT            68            Active
#> 1703   2020  MIA        T                 <NA>            71            Active
#> 1704   2020  MIA        T                   LT            70            Active
#> 1705   2020  MIA        T                   LT            73            Active
#> 1706   2020  MIA        T                   RT            77            Active
#> 1707   2020  MIA       TE                   TE            81            Active
#> 1708   2020  MIA       TE                   TE            80            Active
#> 1709   2020  MIA       TE                 <NA>            85            Active
#> 1710   2020  MIA       TE                   TE            88            Active
#> 1711   2020  MIA       WR                 <NA>            15 Voluntary Opt Out
#> 1712   2020  MIA       WR                 <NA>            83            Active
#> 1713   2020  MIA       WR                  LWR            86            Active
#> 1714   2020  MIA       WR                  RWR            19            Active
#> 1715   2020  MIA       WR                  LWR            11            Active
#> 1716   2020  MIA       WR                 <NA>            17 Voluntary Opt Out
#> 1717   2020  MIA       WR                 <NA>            84            Active
#> 1718   2020  MIA       WR                  RWR            84            Active
#> 1719   2020  MIA       WR                  RWR            18            Active
#> 1720   2020  MIN        C                    C            56            Active
#> 1721   2020  MIN        C                    C            61            Active
#> 1722   2020  MIN       CB                   NB            27            Active
#> 1723   2020  MIN       CB                  LCB            21            Active
#> 1724   2020  MIN       CB                  LCB            38            Active
#> 1725   2020  MIN       CB                  RCB            20            Active
#> 1726   2020  MIN       CB                 <NA>            24            Active
#> 1727   2020  MIN       CB                  LCB            39            Active
#> 1728   2020  MIN       CB                 <NA>            36            Active
#> 1729   2020  MIN       CB                  RCB            26            Active
#> 1730   2020  MIN       CB                 <NA>            32            Active
#> 1731   2020  MIN       CB                 <NA>            36            Active
#> 1732   2020  MIN       CB                  RCB            29            Active
#> 1733   2020  MIN       DB                   FS            43            Active
#> 1734   2020  MIN       DB                   FS            41            Active
#> 1735   2020  MIN       DB                 <NA>            37            Active
#> 1736   2020  MIN       DB                   FS            46            Active
#> 1737   2020  MIN       DB                   SS            44            Active
#> 1738   2020  MIN       DB                 <NA>            35            Active
#> 1739   2020  MIN       DE                  LDE            95            Active
#> 1740   2020  MIN       DE                  RDE            99            Active
#> 1741   2020  MIN       DE                  RDE            90            Active
#> 1742   2020  MIN       DE                 <NA>            52            Active
#> 1743   2020  MIN       DE                 <NA>            66            Active
#> 1744   2020  MIN       DE                  LDE            79            Active
#> 1745   2020  MIN       DE                  RDE            98            Active
#> 1746   2020  MIN       DT                   DT            92            Active
#> 1747   2020  MIN       DT                   DT            51            Active
#> 1748   2020  MIN       DT                   DT            94            Active
#> 1749   2020  MIN       FB                   FB            30            Active
#> 1750   2020  MIN        G                 <NA>            61            Active
#> 1751   2020  MIN        G                   RG            73            Active
#> 1752   2020  MIN        G                   LG            78            Active
#> 1753   2020  MIN        G                   RG            72            Active
#> 1754   2020  MIN        G                   LG            68            Active
#> 1755   2020  MIN        K                   PK             5            Active
#> 1756   2020  MIN        K                 <NA>             1            Active
#> 1757   2020  MIN        K                   PK             1            Active
#> 1758   2020  MIN       LB                  WLB            59            Active
#> 1759   2020  MIN       LB                  MLB            47            Active
#> 1760   2020  MIN       LB                  MLB            54            Active
#> 1761   2020  MIN       LB                  SLB            48            Active
#> 1762   2020  MIN       LB                 <NA>            42            Active
#> 1763   2020  MIN       LB                  SLB            50            Active
#> 1764   2020  MIN       LB                  WLB            57            Active
#> 1765   2020  MIN       LB                  SLB            55            Active
#> 1766   2020  MIN       LB                  LDE            67            Active
#> 1767   2020  MIN       LB                  MLB            40            Active
#> 1768   2020  MIN       LB                  WLB            45            Active
#> 1769   2020  MIN       LS                 <NA>            58          Inactive
#> 1770   2020  MIN       LS                 <NA>            42            Active
#> 1771   2020  MIN       NT                   NT            93            Active
#> 1772   2020  MIN       NT                 <NA>            97 Voluntary Opt Out
#> 1773   2020  MIN       NT                   NT            96            Active
#> 1774   2020  MIN        P                 <NA>             2            Active
#> 1775   2020  MIN       QB                 <NA>             3            Active
#> 1776   2020  MIN       QB                   QB             8            Active
#> 1777   2020  MIN       QB                 <NA>             7            Active
#> 1778   2020  MIN       QB                   QB             4            Active
#> 1779   2020  MIN       RB                   RB            31            Active
#> 1780   2020  MIN       RB                 <NA>            34            Active
#> 1781   2020  MIN       RB                 <NA>            23            Active
#> 1782   2020  MIN       RB                   RB            33            Active
#> 1783   2020  MIN       RB                   RB            25            Active
#> 1784   2020  MIN       SS                   SS            22            Active
#> 1785   2020  MIN        T                   LT            69            Active
#> 1786   2020  MIN        T                   LT            71            Active
#> 1787   2020  MIN        T                   RT            75            Active
#> 1788   2020  MIN        T                   RT            74            Active
#> 1789   2020  MIN        T                 <NA>            64            Active
#> 1790   2020  MIN       TE                 <NA>            86            Active
#> 1791   2020  MIN       TE                   TE            82            Active
#> 1792   2020  MIN       TE                   TE            84            Active
#> 1793   2020  MIN       TE                 <NA>            87            Active
#> 1794   2020  MIN       TE                   TE            83            Active
#> 1795   2020  MIN       WR                  RWR            12            Active
#> 1796   2020  MIN       WR                  RWR            17            Active
#> 1797   2020  MIN       WR                  RWR            19            Active
#> 1798   2020  MIN       WR                  LWR            81            Active
#> 1799   2020  MIN       WR                  LWR            85            Active
#> 1800   2020  MIN       WR                  LWR            18            Active
#> 1801   2020   NE        C                 <NA>            60            Active
#> 1802   2020   NE        C                 <NA>             0   Injured Reserve
#> 1803   2020   NE        C                    C            66            Active
#> 1804   2020   NE        C                    C            60            Active
#> 1805   2020   NE        C                    C            68            Active
#> 1806   2020   NE       CB                   FS            29            Active
#> 1807   2020   NE       CB                 <NA>            39            Active
#> 1808   2020   NE       CB                  RCB            24            Active
#> 1809   2020   NE       CB                  RCB            45            Active
#> 1810   2020   NE       CB                  LCB            30            Active
#> 1811   2020   NE       CB                  LCB            31            Active
#> 1812   2020   NE       CB                  RCB            33            Active
#> 1813   2020   NE       CB                  LCB            27            Active
#> 1814   2020   NE       CB                   CB            38            Active
#> 1815   2020   NE       DB                   SS            35            Active
#> 1816   2020   NE       DB                 <NA>            41            Active
#> 1817   2020   NE       DB                   CB            32            Active
#> 1818   2020   NE       DE                 <NA>            92            Active
#> 1819   2020   NE       DE                 LOLB            55            Active
#> 1820   2020   NE       DE                  LDE            91            Active
#> 1821   2020   NE       DE                 ROLB            50            Active
#> 1822   2020   NE       DE                  RDE            96            Active
#> 1823   2020   NE       DT                 <NA>            97            Active
#> 1824   2020   NE       DT                  RDE            70            Active
#> 1825   2020   NE       DT                   DT            93            Active
#> 1826   2020   NE       DT                 <NA>             0            Active
#> 1827   2020   NE       DT                   DT            52            Active
#> 1828   2020   NE       DT                   NT            99            Active
#> 1829   2020   NE       FB                 <NA>            45 Voluntary Opt Out
#> 1830   2020   NE       FB                   RB            47            Active
#> 1831   2020   NE        G                   RG            69            Active
#> 1832   2020   NE        G                 <NA>            64            Active
#> 1833   2020   NE        G                   RT            71            Active
#> 1834   2020   NE        G                 <NA>            64            Active
#> 1835   2020   NE        G                 <NA>            68 Voluntary Opt Out
#> 1836   2020   NE        K                   PK             6            Active
#> 1837   2020   NE        K                 <NA>             5            Active
#> 1838   2020   NE        K                 <NA>             4            Active
#> 1839   2020   NE       LB                   LB            59            Active
#> 1840   2020   NE       LB                   LB            58            Active
#> 1841   2020   NE       LB                 LOLB            36            Active
#> 1842   2020   NE       LB                   LB            46            Active
#> 1843   2020   NE       LB                 ROLB            90            Active
#> 1844   2020   NE       LB                   LB            53            Active
#> 1845   2020   NE       LB                   LB            51            Active
#> 1846   2020   NE       LB                 <NA>            54 Voluntary Opt Out
#> 1847   2020   NE       LB                   LB            52            Active
#> 1848   2020   NE       LS                 <NA>            49            Active
#> 1849   2020   NE       NT                   DT            98            Active
#> 1850   2020   NE       NT                   NT            94            Active
#> 1851   2020   NE        P                 <NA>             7            Active
#> 1852   2020   NE       QB                   QB             1            Active
#> 1853   2020   NE       QB                   QB             2            Active
#> 1854   2020   NE       QB                 <NA>             7            Active
#> 1855   2020   NE       QB                   QB             4            Active
#> 1856   2020   NE       RB                   RB            28            Active
#> 1857   2020   NE       RB                   RB            26            Active
#> 1858   2020   NE       RB                   RB            34            Active
#> 1859   2020   NE       RB                   RB            37            Active
#> 1860   2020   NE       RB                 <NA>            38 Voluntary Opt Out
#> 1861   2020   NE       RB                   RB            42            Active
#> 1862   2020   NE       SS                 <NA>            23 Voluntary Opt Out
#> 1863   2020   NE       SS                   FS            22            Active
#> 1864   2020   NE       SS                   SS            21            Active
#> 1865   2020   NE       SS                   SS            25            Active
#> 1866   2020   NE        T                   LT            75            Active
#> 1867   2020   NE        T                   LT            77            Active
#> 1868   2020   NE        T                   RT            74            Active
#> 1869   2020   NE        T                   RT            72            Active
#> 1870   2020   NE        T                   LG            62            Active
#> 1871   2020   NE        T                 <NA>            61 Voluntary Opt Out
#> 1872   2020   NE        T                 <NA>            65          Inactive
#> 1873   2020   NE        T                   LT            76            Active
#> 1874   2020   NE       TE                 <NA>            88            Active
#> 1875   2020   NE       TE                   TE            44            Active
#> 1876   2020   NE       TE                 <NA>            83 Voluntary Opt Out
#> 1877   2020   NE       TE                   TE            86            Active
#> 1878   2020   NE       TE                   TE            85            Active
#> 1879   2020   NE       TE                 <NA>            82          Inactive
#> 1880   2020   NE       TE                 <NA>            43            Active
#> 1881   2020   NE       WR                 <NA>            19            Active
#> 1882   2020   NE       WR                  RWR            10            Active
#> 1883   2020   NE       WR                  LWR            16            Active
#> 1884   2020   NE       WR                 <NA>            19            Active
#> 1885   2020   NE       WR                  RWR            11            Active
#> 1886   2020   NE       WR                 <NA>            15            Active
#> 1887   2020   NE       WR                 <NA>            17            Active
#> 1888   2020   NE       WR                  RWR            80            Active
#> 1889   2020   NE       WR                 <NA>            17            Active
#> 1890   2020   NE       WR                 <NA>            14            Active
#> 1891   2020   NE       WR                  LWR            18            Active
#> 1892   2020   NE       WR                 <NA>            13 Voluntary Opt Out
#> 1893   2020   NE       WR                  LWR            15            Active
#> 1894   2020   NO        C                    C            64            Active
#> 1895   2020   NO        C                    C            78            Active
#> 1896   2020   NO       CB                   NB            21            Active
#> 1897   2020   NO       CB                  LCB            20            Active
#> 1898   2020   NO       CB                 <NA>            30            Active
#> 1899   2020   NO       CB                  RCB            23            Active
#> 1900   2020   NO       CB                  LCB            34            Active
#> 1901   2020   NO       CB                  LCB            25            Active
#> 1902   2020   NO       CB                 <NA>            29            Active
#> 1903   2020   NO       DB                   FS            26            Active
#> 1904   2020   NO       DB                   FS            43            Active
#> 1905   2020   NO       DB                 <NA>            38            Active
#> 1906   2020   NO       DB                   FS            36            Active
#> 1907   2020   NO       DE                 <NA>            57   Injured Reserve
#> 1908   2020   NO       DE                 <NA>            95            Active
#> 1909   2020   NO       DE                  RDE            91            Active
#> 1910   2020   NO       DE                  RDE            57            Active
#> 1911   2020   NO       DE                  LDE            94            Active
#> 1912   2020   NO       DE                  RDE            92            Active
#> 1913   2020   NO       DE                  LDE            96            Active
#> 1914   2020   NO       DE                 <NA>            91            Active
#> 1915   2020   NO       DT                   NT            97            Active
#> 1916   2020   NO       DT                   NT            99            Active
#> 1917   2020   NO       DT                  LDT            77            Active
#> 1918   2020   NO       DT                 <NA>            95            Active
#> 1919   2020   NO       DT                 <NA>            69            Active
#> 1920   2020   NO       DT                  LDT            93            Active
#> 1921   2020   NO       DT                 <NA>            79            Active
#> 1922   2020   NO       DT                  LDT            98            Active
#> 1923   2020   NO       DT                   NT            90            Active
#> 1924   2020   NO       FB                   FB            32            Active
#> 1925   2020   NO        G                   LG            75            Active
#> 1926   2020   NO        G                   LG            68            Active
#> 1927   2020   NO        G                   RG            51            Active
#> 1928   2020   NO        G                   LT            74            Active
#> 1929   2020   NO        G                   RG            62            Active
#> 1930   2020   NO        K                 <NA>            16            Active
#> 1931   2020   NO        K                   PK             3            Active
#> 1932   2020   NO       LB                 <NA>            42            Active
#> 1933   2020   NO       LB                  MLB            56            Active
#> 1934   2020   NO       LB                  SLB            53            Active
#> 1935   2020   NO       LB                  WLB            47            Active
#> 1936   2020   NO       LB                  MLB            52            Active
#> 1937   2020   NO       LB                  SLB            55            Active
#> 1938   2020   NO       LB                  WLB            58            Active
#> 1939   2020   NO       LB                 <NA>            50            Active
#> 1940   2020   NO       LS                 <NA>            92            Active
#> 1941   2020   NO       LS                 <NA>            49            Active
#> 1942   2020   NO        P                 <NA>             4            Active
#> 1943   2020   NO        P                 <NA>             6            Active
#> 1944   2020   NO       QB                   QB             2            Active
#> 1945   2020   NO       QB                   QB             9            Active
#> 1946   2020   NO       QB                   QB             7            Active
#> 1947   2020   NO       QB                 <NA>            15            Active
#> 1948   2020   NO       RB                 <NA>            88            Active
#> 1949   2020   NO       RB                 <NA>            37            Active
#> 1950   2020   NO       RB                   RB            41            Active
#> 1951   2020   NO       RB                 <NA>             0            Active
#> 1952   2020   NO       RB                   RB            28            Active
#> 1953   2020   NO       RB                   RB            24            Active
#> 1954   2020   NO       SS                   SS            48            Active
#> 1955   2020   NO       SS                   SS            27            Active
#> 1956   2020   NO       SS                   NB            22            Active
#> 1957   2020   NO        T                   RT            73            Active
#> 1958   2020   NO        T                 <NA>            66            Active
#> 1959   2020   NO        T                   RT            71            Active
#> 1960   2020   NO        T                   LT            72            Active
#> 1961   2020   NO       TE                   TE            82            Active
#> 1962   2020   NO       TE                   FB            89            Active
#> 1963   2020   NO       TE                 <NA>            84            Active
#> 1964   2020   NO       TE                 <NA>            85            Active
#> 1965   2020   NO       TE                   TE            87            Active
#> 1966   2020   NO       TE                 <NA>            45            Active
#> 1967   2020   NO       TE                 <NA>            86            Active
#> 1968   2020   NO       WR                  LWR            13            Active
#> 1969   2020   NO       WR                 <NA>            16            Active
#> 1970   2020   NO       WR                  RWR            10            Active
#> 1971   2020   NO       WR                  RWR            11            Active
#> 1972   2020   NO       WR                 <NA>             7            Active
#> 1973   2020   NO       WR                 <NA>            84            Active
#> 1974   2020   NO       WR                 <NA>            80            Active
#> 1975   2020   NO       WR                  RWR            14            Active
#> 1976   2020   NO       WR                  LWR            83            Active
#> 1977   2020   NO       WR                  RWR            17            Active
#> 1978   2020   NO       WR                  LWR            12            Active
#> 1979   2020   NO       WR                 <NA>            19            Active
#> 1980   2020  NYG        C                    C            65            Active
#> 1981   2020  NYG        C                    C            77            Active
#> 1982   2020  NYG        C                    C            78            Active
#> 1983   2020  NYG       CB                  RCB            27            Active
#> 1984   2020  NYG       CB                 <NA>            23 Voluntary Opt Out
#> 1985   2020  NYG       CB                  RCB            37            Active
#> 1986   2020  NYG       CB                 <NA>            28            Active
#> 1987   2020  NYG       CB                   CB            30            Active
#> 1988   2020  NYG       CB                  LCB            24            Active
#> 1989   2020  NYG       DB                 <NA>            38            Active
#> 1990   2020  NYG       DB                   SS            34            Active
#> 1991   2020  NYG       DB                   FS            20            Active
#> 1992   2020  NYG       DB                  RCB            45            Active
#> 1993   2020  NYG       DB                   FS            23            Active
#> 1994   2020  NYG       DB                   FS            29            Active
#> 1995   2020  NYG       DE                 <NA>            57            Active
#> 1996   2020  NYG       DE                   DE            90            Active
#> 1997   2020  NYG       DE                   DE            57            Active
#> 1998   2020  NYG       DE                   DE            97            Active
#> 1999   2020  NYG       DE                  OLB            91            Active
#> 2000   2020  NYG       DT                   DT            99            Active
#> 2001   2020  NYG       DT                   DT            95            Active
#> 2002   2020  NYG       DT                 <NA>            60            Active
#> 2003   2020  NYG       FB                 <NA>            39            Active
#> 2004   2020  NYG        G                 <NA>            62            Active
#> 2005   2020  NYG        G                   LG            71            Active
#> 2006   2020  NYG        G                   RG            70            Active
#> 2007   2020  NYG        G                   LG            66            Active
#> 2008   2020  NYG        G                 <NA>            79            Active
#> 2009   2020  NYG        K                   PK             5            Active
#> 2010   2020  NYG       LB                 RILB            55            Active
#> 2011   2020  NYG       LB                  SAM            47            Active
#> 2012   2020  NYG       LB                  WLB            59            Active
#> 2013   2020  NYG       LB                 <NA>            93            Active
#> 2014   2020  NYG       LB                 RILB            48            Active
#> 2015   2020  NYG       LB                  SAM            49            Active
#> 2016   2020  NYG       LB                  SAM            53            Active
#> 2017   2020  NYG       LB                  WLB            52            Active
#> 2018   2020  NYG       LB                 RILB            54            Active
#> 2019   2020  NYG       LB                 <NA>            48            Active
#> 2020   2020  NYG       LB                  WLB            35            Active
#> 2021   2020  NYG       LB                  OLB            51            Active
#> 2022   2020  NYG       LS                 <NA>            46            Active
#> 2023   2020  NYG       LS                 <NA>            58            Active
#> 2024   2020  NYG       NT                   NT            98            Active
#> 2025   2020  NYG       NT                   NT            94            Active
#> 2026   2020  NYG        P                 <NA>             2            Active
#> 2027   2020  NYG        P                 <NA>             9            Active
#> 2028   2020  NYG       QB                   QB             8            Active
#> 2029   2020  NYG       QB                   QB            12            Active
#> 2030   2020  NYG       QB                 <NA>            19            Active
#> 2031   2020  NYG       QB                 <NA>            17            Active
#> 2032   2020  NYG       QB                 <NA>             3   Injured Reserve
#> 2033   2020  NYG       RB                 <NA>            34            Active
#> 2034   2020  NYG       RB                   RB            33            Active
#> 2035   2020  NYG       RB                   RB            22            Active
#> 2036   2020  NYG       RB                 <NA>            44            Active
#> 2037   2020  NYG       RB                 <NA>            38            Active
#> 2038   2020  NYG       RB                   RB            36            Active
#> 2039   2020  NYG       RB                   RB            26            Active
#> 2040   2020  NYG       RB                 <NA>            41            Active
#> 2041   2020  NYG       SS                   SS            21            Active
#> 2042   2020  NYG       SS                   SS            43            Active
#> 2043   2020  NYG       SS                 <NA>            36            Active
#> 2044   2020  NYG        T                   RT            74            Active
#> 2045   2020  NYG        T                   LT            72            Active
#> 2046   2020  NYG        T                 <NA>            68          Inactive
#> 2047   2020  NYG        T                   LT            78            Active
#> 2048   2020  NYG        T                   RT            75            Active
#> 2049   2020  NYG        T                   RG            60            Active
#> 2050   2020  NYG        T                 <NA>            76 Voluntary Opt Out
#> 2051   2020  NYG       TE                   TE            88            Active
#> 2052   2020  NYG       TE                   TE            82            Active
#> 2053   2020  NYG       TE                 <NA>            47            Active
#> 2054   2020  NYG       TE                   TE            85            Active
#> 2055   2020  NYG       WR                 <NA>            18            Active
#> 2056   2020  NYG       WR                  SWR            15            Active
#> 2057   2020  NYG       WR                 <NA>            80            Active
#> 2058   2020  NYG       WR                  RWR            18            Active
#> 2059   2020  NYG       WR                 <NA>            81            Active
#> 2060   2020  NYG       WR                  LWR            86            Active
#> 2061   2020  NYG       WR                 <NA>            80            Active
#> 2062   2020  NYG       WR                  LWR            84            Active
#> 2063   2020  NYG       WR                  LWR            13            Active
#> 2064   2020  NYG       WR                  RWR            17            Active
#> 2065   2020  NYG       WR                  RWR            87            Active
#> 2066   2020  NYG       WR                  RWR            19            Active
#> 2067   2020  NYJ        C                    C            60            Active
#> 2068   2020  NYJ        C                 <NA>            63 Voluntary Opt Out
#> 2069   2020  NYJ        C                    C            61            Active
#> 2070   2020  NYJ       CB                  RCB            35            Active
#> 2071   2020  NYJ       CB                   CB            34            Active
#> 2072   2020  NYJ       CB                  LCB            27            Active
#> 2073   2020  NYJ       CB                  RCB            23            Active
#> 2074   2020  NYJ       CB                  LCB            31            Active
#> 2075   2020  NYJ       DB                   SS            41            Active
#> 2076   2020  NYJ       DB                 <NA>            33            Active
#> 2077   2020  NYJ       DB                  RCB            37            Active
#> 2078   2020  NYJ       DB                   FS            20            Active
#> 2079   2020  NYJ       DB                  LCB            40            Active
#> 2080   2020  NYJ       DB                 <NA>            38            Active
#> 2081   2020  NYJ       DB                 <NA>            39            Active
#> 2082   2020  NYJ       DB                   FS            29            Active
#> 2083   2020  NYJ       DB                   SS            26            Active
#> 2084   2020  NYJ       DE                  LDE            98            Active
#> 2085   2020  NYJ       DE                  LDE            91            Active
#> 2086   2020  NYJ       DE                 LOLB            92            Active
#> 2087   2020  NYJ       DE                 ROLB            47            Active
#> 2088   2020  NYJ       DE                  LDE            96            Active
#> 2089   2020  NYJ       DT                   DT            94            Active
#> 2090   2020  NYJ       DT                   DT            70            Active
#> 2091   2020  NYJ       DT                   DT            79            Active
#> 2092   2020  NYJ       DT                  RDE            97            Active
#> 2093   2020  NYJ        G                    C            68            Active
#> 2094   2020  NYJ        G                   LG            67            Active
#> 2095   2020  NYJ        G                   RG            62            Active
#> 2096   2020  NYJ        K                 <NA>             6            Active
#> 2097   2020  NYJ        K                   PK             3            Active
#> 2098   2020  NYJ        K                 <NA>             9            Active
#> 2099   2020  NYJ       LB                 RILB            52            Active
#> 2100   2020  NYJ       LB                 <NA>            55            Active
#> 2101   2020  NYJ       LB                 <NA>            40            Active
#> 2102   2020  NYJ       LB                 LILB            51            Active
#> 2103   2020  NYJ       LB                 <NA>            57 Voluntary Opt Out
#> 2104   2020  NYJ       LB                 LILB            46            Active
#> 2105   2020  NYJ       LB                 RILB            53            Active
#> 2106   2020  NYJ       LB                 LOLB            93            Active
#> 2107   2020  NYJ       LB                 <NA>            56            Active
#> 2108   2020  NYJ       LB                 ROLB            48            Active
#> 2109   2020  NYJ       LB                 ROLB            50            Active
#> 2110   2020  NYJ       LB                 LILB            44            Active
#> 2111   2020  NYJ       LB                 RILB            58            Active
#> 2112   2020  NYJ       LB                 LOLB            54            Active
#> 2113   2020  NYJ       LS                 <NA>            42            Active
#> 2114   2020  NYJ       NT                  RDE            95            Active
#> 2115   2020  NYJ        P                 <NA>             7            Active
#> 2116   2020  NYJ       QB                 <NA>             2            Active
#> 2117   2020  NYJ       QB                   QB             3            Active
#> 2118   2020  NYJ       QB                 <NA>             8            Active
#> 2119   2020  NYJ       QB                   QB             5            Active
#> 2120   2020  NYJ       QB                   QB             4            Active
#> 2121   2020  NYJ       QB                   QB            14            Active
#> 2122   2020  NYJ       RB                   RB            25            Active
#> 2123   2020  NYJ       RB                 <NA>             0            Active
#> 2124   2020  NYJ       RB                   RB            22            Active
#> 2125   2020  NYJ       RB                   RB            30          Inactive
#> 2126   2020  NYJ       RB                   RB            21            Active
#> 2127   2020  NYJ       RB                 <NA>            36            Active
#> 2128   2020  NYJ       SS                   FS            49            Active
#> 2129   2020  NYJ       SS                   SS            32            Active
#> 2130   2020  NYJ       SS                   CB            30            Active
#> 2131   2020  NYJ        T                   LG            72            Active
#> 2132   2020  NYJ        T                   LG            71            Active
#> 2133   2020  NYJ        T                   RG            69            Active
#> 2134   2020  NYJ        T                   RT            76            Active
#> 2135   2020  NYJ        T                   LT            77            Active
#> 2136   2020  NYJ        T                   RT            75            Active
#> 2137   2020  NYJ       TE                 <NA>            43            Active
#> 2138   2020  NYJ       TE                   TE            89            Active
#> 2139   2020  NYJ       TE                 <NA>            85            Active
#> 2140   2020  NYJ       TE                 <NA>             0            Active
#> 2141   2020  NYJ       TE                   TE            84            Active
#> 2142   2020  NYJ       WR                  SWR            82            Active
#> 2143   2020  NYJ       WR                  SWR            10            Active
#> 2144   2020  NYJ       WR                 <NA>            83            Active
#> 2145   2020  NYJ       WR                 <NA>            81            Active
#> 2146   2020  NYJ       WR                  LWR            18 Voluntary Opt Out
#> 2147   2020  NYJ       WR                  RWR            16            Active
#> 2148   2020  NYJ       WR                  RWR            11            Active
#> 2149   2020  NYJ       WR                 <NA>            18            Active
#> 2150   2020  NYJ       WR                  RWR            86            Active
#> 2151   2020  NYJ       WR                  RWR            15            Active
#> 2152   2020  NYJ       WR                  LWR            17            Active
#> 2153   2020  NYJ       WR                   TE            87            Active
#> 2154   2020  NYJ       WR                  LWR            19            Active
#> 2155   2020  PHI        C                    C            74            Active
#> 2156   2020  PHI        C                    C            62            Active
#> 2157   2020  PHI        C                    C            66            Active
#> 2158   2020  PHI       CB                  LCB            24            Active
#> 2159   2020  PHI       CB                 <NA>            41            Active
#> 2160   2020  PHI       CB                   NB            31            Active
#> 2161   2020  PHI       CB                   NB            34            Active
#> 2162   2020  PHI       CB                  RCB            39            Active
#> 2163   2020  PHI       CB                  RCB            29            Active
#> 2164   2020  PHI       DB                 <NA>            38            Active
#> 2165   2020  PHI       DB                 <NA>            39            Active
#> 2166   2020  PHI       DB                   FS            23            Active
#> 2167   2020  PHI       DB                 <NA>            38 Voluntary Opt Out
#> 2168   2020  PHI       DB                  LCB            48            Active
#> 2169   2020  PHI       DB                   FS            42            Active
#> 2170   2020  PHI       DB                  LCB            37            Active
#> 2171   2020  PHI       DB                 <NA>            46            Active
#> 2172   2020  PHI       DE                  LDE            94            Active
#> 2173   2020  PHI       DE                  LDE            55            Active
#> 2174   2020  PHI       DE                  LDE            75            Active
#> 2175   2020  PHI       DE                 <NA>            64            Active
#> 2176   2020  PHI       DE                 <NA>            95            Active
#> 2177   2020  PHI       DE                  RDE            96            Active
#> 2178   2020  PHI       DT                  LDT            61            Active
#> 2179   2020  PHI       DT                  LDT            91            Active
#> 2180   2020  PHI       DT                  RDT            93            Active
#> 2181   2020  PHI       DT                  LDT            98            Active
#> 2182   2020  PHI       DT                  RDT            97            Active
#> 2183   2020  PHI       DT                  RDT            76            Active
#> 2184   2020  PHI       DT                 <NA>            93            Active
#> 2185   2020  PHI        G                   LG            73            Active
#> 2186   2020  PHI        G                   RG            79            Active
#> 2187   2020  PHI        G                   RG            67            Active
#> 2188   2020  PHI        G                 <NA>            66            Active
#> 2189   2020  PHI        G                   LG            69            Active
#> 2190   2020  PHI        G                   RG            78            Active
#> 2191   2020  PHI        K                   PK             4            Active
#> 2192   2020  PHI       LB                 LOLB            58            Active
#> 2193   2020  PHI       LB                  MLB            57            Active
#> 2194   2020  PHI       LB                  MLB            54            Active
#> 2195   2020  PHI       LB                 LOLB            53   Injured Reserve
#> 2196   2020  PHI       LB                 ROLB            50            Active
#> 2197   2020  PHI       LB                 ROLB            53            Active
#> 2198   2020  PHI       LB                 LOLB            49   Injured Reserve
#> 2199   2020  PHI       LB                 ROLB            52            Active
#> 2200   2020  PHI       LB                 LOLB            47            Active
#> 2201   2020  PHI       LB                  MLB            59            Active
#> 2202   2020  PHI       LS                 <NA>            45            Active
#> 2203   2020  PHI        P                 <NA>             1            Active
#> 2204   2020  PHI        P                 <NA>             2            Active
#> 2205   2020  PHI       QB                   QB             7            Active
#> 2206   2020  PHI       QB                   QB             2            Active
#> 2207   2020  PHI       QB                 <NA>            11            Active
#> 2208   2020  PHI       RB                 <NA>            41            Active
#> 2209   2020  PHI       RB                 <NA>            28            Active
#> 2210   2020  PHI       RB                 <NA>            33            Active
#> 2211   2020  PHI       RB                   RB            26            Active
#> 2212   2020  PHI       RB                 <NA>            46          Inactive
#> 2213   2020  PHI       RB                   RB            35   Injured Reserve
#> 2214   2020  PHI       RB                   RB            30            Active
#> 2215   2020  PHI       RB                 <NA>            32            Active
#> 2216   2020  PHI       SS                   SS            22            Active
#> 2217   2020  PHI       SS                   SS            36            Active
#> 2218   2020  PHI       SS                   SS            21            Active
#> 2219   2020  PHI       SS                 <NA>            33            Active
#> 2220   2020  PHI        T                   RT            65            Active
#> 2221   2020  PHI        T                   RT            68            Active
#> 2222   2020  PHI        T                   LT            64            Active
#> 2223   2020  PHI        T                   RT            63            Active
#> 2224   2020  PHI        T                   LT            77            Active
#> 2225   2020  PHI        T                   LT            71            Active
#> 2226   2020  PHI       TE                  LTE            86            Active
#> 2227   2020  PHI       TE                 <NA>            81            Active
#> 2228   2020  PHI       TE                 <NA>             6            Active
#> 2229   2020  PHI       TE                 <NA>            81            Active
#> 2230   2020  PHI       TE                  LTE            88            Active
#> 2231   2020  PHI       TE                 <NA>            83            Active
#> 2232   2020  PHI       TE                 <NA>            89            Active
#> 2233   2020  PHI       TE                  LTE            85            Active
#> 2234   2020  PHI       WR                 <NA>            13 Voluntary Opt Out
#> 2235   2020  PHI       WR                  SWR            84   Injured Reserve
#> 2236   2020  PHI       WR                 <NA>            16            Active
#> 2237   2020  PHI       WR                  LWR            13            Active
#> 2238   2020  PHI       WR                  RWR            18            Active
#> 2239   2020  PHI       WR                  RWR            89            Active
#> 2240   2020  PHI       WR                  LWR            80            Active
#> 2241   2020  PHI       WR                  RWR            19            Active
#> 2242   2020  PHI       WR                  LWR            17            Active
#> 2243   2020  PHI       WR                  SWR            10            Active
#> 2244   2020  PHI       WR                  RWR            82            Active
#> 2245   2020  PIT        C                    C            53            Active
#> 2246   2020  PIT        C                    C            60            Active
#> 2247   2020  PIT       CB                  RCB            31            Active
#> 2248   2020  PIT       CB                 <NA>            41            Active
#> 2249   2020  PIT       CB                   NB            20            Active
#> 2250   2020  PIT       CB                  LCB            23            Active
#> 2251   2020  PIT       CB                  RCB            28            Active
#> 2252   2020  PIT       CB                  LCB            42            Active
#> 2253   2020  PIT       CB                 <NA>            37            Active
#> 2254   2020  PIT       CB                  LCB            22            Active
#> 2255   2020  PIT       DB                   FS            25            Active
#> 2256   2020  PIT       DB                   FS            21            Active
#> 2257   2020  PIT       DB                 RILB            27            Active
#> 2258   2020  PIT       DE                   DE            95            Active
#> 2259   2020  PIT       DE                   DT            49            Active
#> 2260   2020  PIT       DE                   DE            99            Active
#> 2261   2020  PIT       DE                   NT            96            Active
#> 2262   2020  PIT       DE                   NT            94            Active
#> 2263   2020  PIT       DE                   DE            91            Active
#> 2264   2020  PIT       DE                 <NA>            67            Active
#> 2265   2020  PIT       DT                   DT            97            Active
#> 2266   2020  PIT       DT                   DT            73            Active
#> 2267   2020  PIT       DT                 <NA>            67            Active
#> 2268   2020  PIT       FB                   FB            44            Active
#> 2269   2020  PIT        G                   RG            69            Active
#> 2270   2020  PIT        G                   LG            64            Active
#> 2271   2020  PIT        G                   RG            66            Active
#> 2272   2020  PIT        K                   PK             9            Active
#> 2273   2020  PIT       LB                 LOLB            92            Active
#> 2274   2020  PIT       LB                 LILB            41            Active
#> 2275   2020  PIT       LB                 RILB            98            Active
#> 2276   2020  PIT       LB                 ROLB            48            Active
#> 2277   2020  PIT       LB                 <NA>            40            Active
#> 2278   2020  PIT       LB                 LILB            55            Active
#> 2279   2020  PIT       LB                 LOLB            90            Active
#> 2280   2020  PIT       LB                 LILB            51            Active
#> 2281   2020  PIT       LB                 <NA>            46            Active
#> 2282   2020  PIT       LB                 ROLB            56            Active
#> 2283   2020  PIT       LB                 RILB            54            Active
#> 2284   2020  PIT       LB                 <NA>            45            Active
#> 2285   2020  PIT       LS                 <NA>            57            Active
#> 2286   2020  PIT        P                 <NA>             4            Active
#> 2287   2020  PIT        P                 <NA>             8            Active
#> 2288   2020  PIT       QB                   QB             5            Active
#> 2289   2020  PIT       QB                   QB             7            Active
#> 2290   2020  PIT       QB                   QB             2            Active
#> 2291   2020  PIT       QB                 <NA>             7            Active
#> 2292   2020  PIT       RB                   FB            38            Active
#> 2293   2020  PIT       RB                   RB            26            Active
#> 2294   2020  PIT       RB                 <NA>            24            Active
#> 2295   2020  PIT       RB                 <NA>            33            Active
#> 2296   2020  PIT       RB                 <NA>            29            Active
#> 2297   2020  PIT       RB                   RB            30            Active
#> 2298   2020  PIT       SS                   SS            37            Active
#> 2299   2020  PIT       SS                   SS            34            Active
#> 2300   2020  PIT       SS                 <NA>            21            Active
#> 2301   2020  PIT       SS                   FS            39            Active
#> 2302   2020  PIT        T                 <NA>            76            Active
#> 2303   2020  PIT        T                   RT            72            Active
#> 2304   2020  PIT        T                 <NA>            68            Active
#> 2305   2020  PIT        T                   LT            65            Active
#> 2306   2020  PIT        T                 <NA>            74            Active
#> 2307   2020  PIT        T                   LG            71            Active
#> 2308   2020  PIT        T                   RT            76            Active
#> 2309   2020  PIT        T                   LT            78            Active
#> 2310   2020  PIT        T                 <NA>            79            Active
#> 2311   2020  PIT        T                 <NA>            77            Active
#> 2312   2020  PIT       TE                   TE            85            Active
#> 2313   2020  PIT       TE                   TE            89   Injured Reserve
#> 2314   2020  PIT       TE                 <NA>            87            Active
#> 2315   2020  PIT       TE                   TE            81            Active
#> 2316   2020  PIT       TE                   TE            46            Active
#> 2317   2020  PIT       TE                 <NA>            85            Active
#> 2318   2020  PIT       WR                  LWR            11            Active
#> 2319   2020  PIT       WR                  RWR            18            Active
#> 2320   2020  PIT       WR                 <NA>            83            Active
#> 2321   2020  PIT       WR                  RWR            13            Active
#> 2322   2020  PIT       WR                 <NA>             0            Active
#> 2323   2020  PIT       WR                  LWR            14            Active
#> 2324   2020  PIT       WR                  LWR            19            Active
#> 2325   2020  SEA        C                    C            77            Active
#> 2326   2020  SEA        C                 <NA>            64            Active
#> 2327   2020  SEA       CB                  LCB            39            Active
#> 2328   2020  SEA       CB                   SS            35            Active
#> 2329   2020  SEA       CB                  LCB            26            Active
#> 2330   2020  SEA       CB                  RCB            22            Active
#> 2331   2020  SEA       CB                 <NA>            28            Active
#> 2332   2020  SEA       CB                  LCB            23            Active
#> 2333   2020  SEA       CB                  RCB            21            Active
#> 2334   2020  SEA       DB                   FS            27            Active
#> 2335   2020  SEA       DB                 <NA>            38            Active
#> 2336   2020  SEA       DB                   FS            37            Active
#> 2337   2020  SEA       DB                   FS            28            Active
#> 2338   2020  SEA       DB                 <NA>            29            Active
#> 2339   2020  SEA       DB                 <NA>            36            Active
#> 2340   2020  SEA       DB                  RCB            34            Active
#> 2341   2020  SEA       DE                  LEO            58            Active
#> 2342   2020  SEA       DE                  LEO            98            Active
#> 2343   2020  SEA       DE                   DT            93            Active
#> 2344   2020  SEA       DE                   DT            93            Active
#> 2345   2020  SEA       DE                   NT            94            Active
#> 2346   2020  SEA       DE                  LDE            43            Active
#> 2347   2020  SEA       DE                  LDE            91            Active
#> 2348   2020  SEA       DE                  LDE            95            Active
#> 2349   2020  SEA       DE                 <NA>            99            Active
#> 2350   2020  SEA       DT                 <NA>            65            Active
#> 2351   2020  SEA       DT                   DT            90            Active
#> 2352   2020  SEA       FB                   FB            44            Active
#> 2353   2020  SEA        G                   LG            70            Active
#> 2354   2020  SEA        G                   RG            68            Active
#> 2355   2020  SEA        G                 <NA>            65 Voluntary Opt Out
#> 2356   2020  SEA        G                   LG            60            Active
#> 2357   2020  SEA        G                    C            61            Active
#> 2358   2020  SEA        G                   LG            66            Active
#> 2359   2020  SEA        G                 <NA>            78            Active
#> 2360   2020  SEA        K                   PK             5            Active
#> 2361   2020  SEA       LB                 ROLB            55            Active
#> 2362   2020  SEA       LB                  SLB            56            Active
#> 2363   2020  SEA       LB                  MLB            57            Active
#> 2364   2020  SEA       LB                  SLB            49            Active
#> 2365   2020  SEA       LB                 <NA>            52            Active
#> 2366   2020  SEA       LB                  SLB            59            Active
#> 2367   2020  SEA       LB                  MLB            54            Active
#> 2368   2020  SEA       LB                 <NA>            47            Active
#> 2369   2020  SEA       LB                  LEO            51            Active
#> 2370   2020  SEA       LB                 ROLB            50            Active
#> 2371   2020  SEA       LS                 <NA>            69            Active
#> 2372   2020  SEA       NT                   NT            92            Active
#> 2373   2020  SEA       NT                   NT            97            Active
#> 2374   2020  SEA        P                 <NA>             4            Active
#> 2375   2020  SEA       QB                 <NA>             3            Active
#> 2376   2020  SEA       QB                   QB             7            Active
#> 2377   2020  SEA       QB                 <NA>             2            Active
#> 2378   2020  SEA       QB                   QB             3            Active
#> 2379   2020  SEA       RB                 <NA>            40          Inactive
#> 2380   2020  SEA       RB                   RB            20            Active
#> 2381   2020  SEA       RB                 <NA>            41            Active
#> 2382   2020  SEA       RB                   RB            30            Active
#> 2383   2020  SEA       RB                 <NA>            39            Active
#> 2384   2020  SEA       RB                 <NA>            31            Active
#> 2385   2020  SEA       RB                 <NA>            25            Active
#> 2386   2020  SEA       RB                   RB            32            Active
#> 2387   2020  SEA       SS                   SS            33            Active
#> 2388   2020  SEA       SS                   SS            42            Active
#> 2389   2020  SEA        T                   LT            73            Active
#> 2390   2020  SEA        T                   LT            75            Active
#> 2391   2020  SEA        T                   RT            74            Active
#> 2392   2020  SEA        T                   LT            76            Active
#> 2393   2020  SEA        T                 <NA>            79            Active
#> 2394   2020  SEA        T                   RT            72            Active
#> 2395   2020  SEA        T                 <NA>            67            Active
#> 2396   2020  SEA       TE                   TE            88            Active
#> 2397   2020  SEA       TE                 <NA>            85            Active
#> 2398   2020  SEA       TE                 <NA>            82            Active
#> 2399   2020  SEA       TE                   TE            84            Active
#> 2400   2020  SEA       TE                   TE            89            Active
#> 2401   2020  SEA       TE                   TE            86            Active
#> 2402   2020  SEA       WR                  RWR            16            Active
#> 2403   2020  SEA       WR                 <NA>            15            Active
#> 2404   2020  SEA       WR                 <NA>            17            Active
#> 2405   2020  SEA       WR                  LWR            18            Active
#> 2406   2020  SEA       WR                 <NA>            19            Active
#> 2407   2020  SEA       WR                 <NA>            84            Active
#> 2408   2020  SEA       WR                 <NA>            13            Active
#> 2409   2020  SEA       WR                   WR            83            Active
#> 2410   2020  SEA       WR                  LWR            14            Active
#> 2411   2020  SEA       WR                  RWR            11            Active
#> 2412   2020  SEA       WR                 <NA>            81            Active
#> 2413   2020  SEA       WR                 <NA>            10          Inactive
#> 2414   2020   SF        C                 <NA>            62            Active
#> 2415   2020   SF        C                    C            63            Active
#> 2416   2020   SF        C                    C            58            Active
#> 2417   2020   SF        C                 <NA>            64 Voluntary Opt Out
#> 2418   2020   SF        C                    C            61   Injured Reserve
#> 2419   2020   SF        C                    C            50            Active
#> 2420   2020   SF       CB                 <NA>            35            Active
#> 2421   2020   SF       CB                  RCB            25            Active
#> 2422   2020   SF       CB                  RCB            23            Active
#> 2423   2020   SF       CB                  LCB            41            Active
#> 2424   2020   SF       CB                  RCB            40            Active
#> 2425   2020   SF       CB                  LCB            47            Active
#> 2426   2020   SF       CB                 <NA>            24            Active
#> 2427   2020   SF       CB                  LCB            22            Active
#> 2428   2020   SF       CB                 <NA>            36            Active
#> 2429   2020   SF       CB                   NB            27            Active
#> 2430   2020   SF       DB                 <NA>            43            Active
#> 2431   2020   SF       DB                 <NA>            22            Active
#> 2432   2020   SF       DB                   FS            33            Active
#> 2433   2020   SF       DB                 <NA>            47            Active
#> 2434   2020   SF       DB                   FS            20            Active
#> 2435   2020   SF       DE                 <NA>            78            Active
#> 2436   2020   SF       DE                  LDE            91            Active
#> 2437   2020   SF       DE                  RDE            95            Active
#> 2438   2020   SF       DE                  LDT            94            Active
#> 2439   2020   SF       DE                 <NA>            94            Active
#> 2440   2020   SF       DE                 <NA>            64            Active
#> 2441   2020   SF       DE                  RDE            97            Active
#> 2442   2020   SF       DE                 <NA>            96            Active
#> 2443   2020   SF       DE                  LDE            98            Active
#> 2444   2020   SF       DE                  RDE            92            Active
#> 2445   2020   SF       DE                  LDE            55            Active
#> 2446   2020   SF       DE                 <NA>            74            Active
#> 2447   2020   SF       DT                 <NA>            77            Active
#> 2448   2020   SF       DT                  RDT            99            Active
#> 2449   2020   SF       DT                  LDT            65            Active
#> 2450   2020   SF       DT                  RDT            93            Active
#> 2451   2020   SF       DT                  LDT            90            Active
#> 2452   2020   SF       FB                   FB            44            Active
#> 2453   2020   SF        G                   LG            75            Active
#> 2454   2020   SF        G                   LG            62            Active
#> 2455   2020   SF        G                   RG            60            Active
#> 2456   2020   SF        G                 <NA>            76            Active
#> 2457   2020   SF        K                   PK             9            Active
#> 2458   2020   SF       LB                  SAM            53            Active
#> 2459   2020   SF       LB                 <NA>            54            Active
#> 2460   2020   SF       LB                 MIKE            54            Active
#> 2461   2020   SF       LB                 <NA>            47            Active
#> 2462   2020   SF       LB                 WILL            59            Active
#> 2463   2020   SF       LB                 MIKE            51            Active
#> 2464   2020   SF       LB                  SAM            57            Active
#> 2465   2020   SF       LS                 <NA>            46            Active
#> 2466   2020   SF       LS                 <NA>            86            Active
#> 2467   2020   SF        P                 <NA>             9            Active
#> 2468   2020   SF        P                 <NA>             6            Active
#> 2469   2020   SF       QB                 <NA>             8            Active
#> 2470   2020   SF       QB                   QB             4            Active
#> 2471   2020   SF       QB                   QB            10            Active
#> 2472   2020   SF       QB                 <NA>             2            Active
#> 2473   2020   SF       QB                   QB             3            Active
#> 2474   2020   SF       RB                 <NA>            40            Active
#> 2475   2020   SF       RB                   RB            28            Active
#> 2476   2020   SF       RB                 <NA>            34            Active
#> 2477   2020   SF       RB                   RB            30            Active
#> 2478   2020   SF       RB                 <NA>            31            Active
#> 2479   2020   SF       RB                 <NA>            48            Active
#> 2480   2020   SF       RB                   RB            26            Active
#> 2481   2020   SF       RB                 <NA>            38            Active
#> 2482   2020   SF       SS                   SS            36            Active
#> 2483   2020   SF       SS                 WILL            45            Active
#> 2484   2020   SF       SS                 <NA>            38            Active
#> 2485   2020   SF       SS                   SS            29            Active
#> 2486   2020   SF       SS                   SS            43            Active
#> 2487   2020   SF       SS                 <NA>            32            Active
#> 2488   2020   SF        T                   LT            71            Active
#> 2489   2020   SF        T                 <NA>            65            Active
#> 2490   2020   SF        T                   RG            67            Active
#> 2491   2020   SF        T                   RT            69            Active
#> 2492   2020   SF        T                 <NA>            78 Voluntary Opt Out
#> 2493   2020   SF        T                 <NA>            64            Active
#> 2494   2020   SF        T                   LG            66            Active
#> 2495   2020   SF        T                   RT            68            Active
#> 2496   2020   SF        T                 <NA>            61            Active
#> 2497   2020   SF       TE                 <NA>            88            Active
#> 2498   2020   SF       TE                  RTE            82            Active
#> 2499   2020   SF       TE                 <NA>            83            Active
#> 2500   2020   SF       TE                  RTE            81            Active
#> 2501   2020   SF       TE                  LTE            89            Active
#> 2502   2020   SF       TE                  LTE            85            Active
#> 2503   2020   SF       WR                  RWR            15            Active
#> 2504   2020   SF       WR                 <NA>            14            Active
#> 2505   2020   SF       WR                 <NA>             1          Inactive
#> 2506   2020   SF       WR                  RWR            84            Active
#> 2507   2020   SF       WR                 <NA>            18            Active
#> 2508   2020   SF       WR                  RWR            19            Active
#> 2509   2020   SF       WR                 <NA>            17            Active
#> 2510   2020   SF       WR                 <NA>            17            Active
#> 2511   2020   SF       WR                 <NA>            17 Voluntary Opt Out
#> 2512   2020   SF       WR                 <NA>            14            Active
#> 2513   2020   SF       WR                 <NA>            87            Active
#> 2514   2020   SF       WR                  LWR            13            Active
#> 2515   2020   SF       WR                  LWR            86            Active
#> 2516   2020   SF       WR                  LWR            11            Active
#> 2517   2020   SF       WR                 <NA>             2            Active
#> 2518   2020   TB        C                    C            62            Active
#> 2519   2020   TB        C                    C            66            Active
#> 2520   2020   TB       CB                  RCB            23            Active
#> 2521   2020   TB       CB                 <NA>            29            Active
#> 2522   2020   TB       CB                 <NA>            37            Active
#> 2523   2020   TB       CB                  RCB            35            Active
#> 2524   2020   TB       CB                   CB            24            Active
#> 2525   2020   TB       CB                   NB            43            Active
#> 2526   2020   TB       DB                   SS            34            Active
#> 2527   2020   TB       DB                 <NA>            36            Active
#> 2528   2020   TB       DB                 <NA>            32            Active
#> 2529   2020   TB       DB                   SS            31            Active
#> 2530   2020   TB       DE                  RDE            79            Active
#> 2531   2020   TB       DE                 <NA>            91            Active
#> 2532   2020   TB       DE                  LDE            93            Active
#> 2533   2020   TB       DE                 LOLB            90            Active
#> 2534   2020   TB       DE                 <NA>            57            Active
#> 2535   2020   TB       DE                  RDE            92            Active
#> 2536   2020   TB       DT                  LDE            95            Active
#> 2537   2020   TB       DT                  RDE            73            Active
#> 2538   2020   TB       DT                  LDE            94            Active
#> 2539   2020   TB       DT                   NT            56            Active
#> 2540   2020   TB       FS                 <NA>            38            Active
#> 2541   2020   TB        G                   LG            75            Active
#> 2542   2020   TB        G                   RG            64            Active
#> 2543   2020   TB        G                   LG            74            Active
#> 2544   2020   TB        G                   RG            60            Active
#> 2545   2020   TB        G                 <NA>            70            Active
#> 2546   2020   TB        G                 <NA>            62            Active
#> 2547   2020   TB        G                   RG            65            Active
#> 2548   2020   TB        K                   PK             3            Active
#> 2549   2020   TB       LB                 RILB            48            Active
#> 2550   2020   TB       LB                 LILB            51            Active
#> 2551   2020   TB       LB                 RILB            41            Active
#> 2552   2020   TB       LB                 LOLB            98            Active
#> 2553   2020   TB       LB                 ROLB            58            Active
#> 2554   2020   TB       LB                 ROLB            49            Active
#> 2555   2020   TB       LB                 LILB            45            Active
#> 2556   2020   TB       LB                 RILB            54            Active
#> 2557   2020   TB       LS                 <NA>            89            Active
#> 2558   2020   TB       LS                 <NA>            97            Active
#> 2559   2020   TB       NT                   NT            96            Active
#> 2560   2020   TB       NT                   NT            50            Active
#> 2561   2020   TB        P                 <NA>             8            Active
#> 2562   2020   TB        P                 <NA>             1            Active
#> 2563   2020   TB        P                 <NA>             4            Active
#> 2564   2020   TB       QB                   QB             4            Active
#> 2565   2020   TB       QB                 <NA>             6            Active
#> 2566   2020   TB       QB                   QB            11            Active
#> 2567   2020   TB       QB                   QB            12            Active
#> 2568   2020   TB       RB                   RB            27            Active
#> 2569   2020   TB       RB                   RB            25            Active
#> 2570   2020   TB       RB                   RB            30            Active
#> 2571   2020   TB       RB                 <NA>            33            Active
#> 2572   2020   TB       RB                   RB            28            Active
#> 2573   2020   TB       RB                   RB            44            Active
#> 2574   2020   TB       RB                 <NA>            24            Active
#> 2575   2020   TB       RB                   RB            22            Active
#> 2576   2020   TB       SS                   FS            33            Active
#> 2577   2020   TB       SS                   FS            26            Active
#> 2578   2020   TB       SS                 <NA>            21            Active
#> 2579   2020   TB        T                   LT            76            Active
#> 2580   2020   TB        T                   LT            72            Active
#> 2581   2020   TB        T                 <NA>            62 Voluntary Opt Out
#> 2582   2020   TB        T                   RT            78            Active
#> 2583   2020   TB        T                   RT            73            Active
#> 2584   2020   TB       TE                  RTE            80            Active
#> 2585   2020   TB       TE                  RTE            88            Active
#> 2586   2020   TB       TE                  LTE            82            Active
#> 2587   2020   TB       TE                  LTE            84            Active
#> 2588   2020   TB       TE                  RTE            87            Active
#> 2589   2020   TB       TE                  LTE            86            Active
#> 2590   2020   TB       WR                 <NA>            85            Active
#> 2591   2020   TB       WR                 <NA>            15            Active
#> 2592   2020   TB       WR                  RWR            14            Active
#> 2593   2020   TB       WR                 <NA>            89            Active
#> 2594   2020   TB       WR                  RWR            81            Active
#> 2595   2020   TB       WR                   CB             5            Active
#> 2596   2020   TB       WR                 <NA>            19            Active
#> 2597   2020   TB       WR                  LWR            18            Active
#> 2598   2020   TB       WR                  LWR            13            Active
#> 2599   2020   TB       WR                  LWR            10            Active
#> 2600   2020   TB       WR                  RWR            17            Active
#> 2601   2020  TEN        C                    C            60            Active
#> 2602   2020  TEN        C                 <NA>            52            Active
#> 2603   2020  TEN        C                    C            62            Active
#> 2604   2020  TEN       CB                   SS            46            Active
#> 2605   2020  TEN       CB                  LCB            33            Active
#> 2606   2020  TEN       CB                 <NA>            39            Active
#> 2607   2020  TEN       CB                  RCB            21            Active
#> 2608   2020  TEN       CB                  RCB            26            Active
#> 2609   2020  TEN       CB                  RCB            35            Active
#> 2610   2020  TEN       CB                 <NA>            30            Active
#> 2611   2020  TEN       CB                  LCB            23            Active
#> 2612   2020  TEN       CB                 <NA>            36            Active
#> 2613   2020  TEN       CB                  LCB            25            Active
#> 2614   2020  TEN       DB                   FS            37            Active
#> 2615   2020  TEN       DB                 <NA>            46            Active
#> 2616   2020  TEN       DB                   FS            31            Active
#> 2617   2020  TEN       DE                 ROLB            99            Active
#> 2618   2020  TEN       DE                 LOLB            57            Active
#> 2619   2020  TEN       DE                 <NA>            95            Active
#> 2620   2020  TEN       DT                   DT            98            Active
#> 2621   2020  TEN       DT                   DT            93            Active
#> 2622   2020  TEN       DT                 <NA>            94            Active
#> 2623   2020  TEN       DT                 ROLB            77            Active
#> 2624   2020  TEN       DT                   DE            94            Active
#> 2625   2020  TEN       DT                   DE            91            Active
#> 2626   2020  TEN       DT                   NT            92            Active
#> 2627   2020  TEN       FB                   RB            41            Active
#> 2628   2020  TEN        G                   LG            76            Active
#> 2629   2020  TEN        G                   LG            72            Active
#> 2630   2020  TEN        G                 <NA>            64            Active
#> 2631   2020  TEN        G                   RG            75            Active
#> 2632   2020  TEN        K                 <NA>             4            Active
#> 2633   2020  TEN        K                 <NA>             8            Active
#> 2634   2020  TEN        K                    K             2            Active
#> 2635   2020  TEN        K                   PK             3            Active
#> 2636   2020  TEN       LB                 LOLB            50            Active
#> 2637   2020  TEN       LB                 LILB            49            Active
#> 2638   2020  TEN       LB                 RILB            53            Active
#> 2639   2020  TEN       LB                 LOLB            58            Active
#> 2640   2020  TEN       LB                 ROLB            56            Active
#> 2641   2020  TEN       LB                 <NA>            49            Active
#> 2642   2020  TEN       LB                 <NA>            59            Active
#> 2643   2020  TEN       LB                 LILB            54            Active
#> 2644   2020  TEN       LB                 <NA>            42            Active
#> 2645   2020  TEN       LB                 RILB            55            Active
#> 2646   2020  TEN       LB                 RILB            51            Active
#> 2647   2020  TEN       LS                 <NA>            44            Active
#> 2648   2020  TEN       LS                 <NA>            48            Active
#> 2649   2020  TEN       LS                 <NA>            47            Active
#> 2650   2020  TEN       NT                   NT            90            Active
#> 2651   2020  TEN       NT                 <NA>            72            Active
#> 2652   2020  TEN        P                 <NA>             6            Active
#> 2653   2020  TEN        P                 <NA>            12            Active
#> 2654   2020  TEN       QB                   QB            17            Active
#> 2655   2020  TEN       QB                 <NA>            14            Active
#> 2656   2020  TEN       QB                   QB             5            Active
#> 2657   2020  TEN       RB                 <NA>            32            Active
#> 2658   2020  TEN       RB                   RB            28            Active
#> 2659   2020  TEN       RB                   RB            22            Active
#> 2660   2020  TEN       RB                 <NA>            45            Active
#> 2661   2020  TEN       RB                 <NA>            20            Active
#> 2662   2020  TEN       SS                   SS            24            Active
#> 2663   2020  TEN       SS                   SS            29            Active
#> 2664   2020  TEN        T                   RT            79            Active
#> 2665   2020  TEN        T                   LT            77            Active
#> 2666   2020  TEN        T                   RT            78            Active
#> 2667   2020  TEN        T                 <NA>            66            Active
#> 2668   2020  TEN        T                   RT            71            Active
#> 2669   2020  TEN        T                 <NA>            79            Active
#> 2670   2020  TEN        T                   LT            70            Active
#> 2671   2020  TEN        T                 <NA>            61 Voluntary Opt Out
#> 2672   2020  TEN       TE                   TE            85            Active
#> 2673   2020  TEN       TE                 <NA>            83            Active
#> 2674   2020  TEN       TE                 <NA>            87            Active
#> 2675   2020  TEN       TE                   TE            86            Active
#> 2676   2020  TEN       TE                 <NA>            89            Active
#> 2677   2020  TEN       TE                   TE            81            Active
#> 2678   2020  TEN       TE                 <NA>            89            Active
#> 2679   2020  TEN       WR                  LWR            84            Active
#> 2680   2020  TEN       WR                  RWR            13            Active
#> 2681   2020  TEN       WR                 <NA>            12            Active
#> 2682   2020  TEN       WR                 <NA>            80            Active
#> 2683   2020  TEN       WR                  RWR            11            Active
#> 2684   2020  TEN       WR                 <NA>            83            Active
#> 2685   2020  TEN       WR                  LWR            15            Active
#> 2686   2020  TEN       WR                  SWR            10            Active
#> 2687   2020  TEN       WR                  SWR            14            Active
#> 2688   2020  TEN       WR                 <NA>            16            Active
#> 2689   2020  WAS        C                    C            73            Active
#> 2690   2020  WAS        C                    C            60            Active
#> 2691   2020  WAS       CB                  RCB            23            Active
#> 2692   2020  WAS       CB                   CB            25            Active
#> 2693   2020  WAS       CB                 <NA>            34            Active
#> 2694   2020  WAS       CB                   NB            37            Active
#> 2695   2020  WAS       CB                 <NA>            38            Active
#> 2696   2020  WAS       CB                 <NA>            20            Active
#> 2697   2020  WAS       CB                  RCB            32            Active
#> 2698   2020  WAS       CB                   NB            20            Active
#> 2699   2020  WAS       CB                   CB            29            Active
#> 2700   2020  WAS       DB                   SS            31            Active
#> 2701   2020  WAS       DB                 <NA>            39            Active
#> 2702   2020  WAS       DB                   SS            39          Inactive
#> 2703   2020  WAS       DB                   FS            30            Active
#> 2704   2020  WAS       DB                 <NA>            46            Active
#> 2705   2020  WAS       DE                  RDE            52            Active
#> 2706   2020  WAS       DE                  RDE            96            Active
#> 2707   2020  WAS       DE                  RDE            90            Active
#> 2708   2020  WAS       DE                 LOLB            95            Active
#> 2709   2020  WAS       DE                 <NA>            64            Active
#> 2710   2020  WAS       DE                 <NA>            92            Active
#> 2711   2020  WAS       DE                  LDE            99            Active
#> 2712   2020  WAS       DE                 <NA>            96 Voluntary Opt Out
#> 2713   2020  WAS       DE                  LDE            91            Active
#> 2714   2020  WAS       DE                 <NA>            96            Active
#> 2715   2020  WAS       DT                  LDT            98            Active
#> 2716   2020  WAS       DT                 <NA>            64            Active
#> 2717   2020  WAS       DT                  LDT            94            Active
#> 2718   2020  WAS       DT                  RDT            97            Active
#> 2719   2020  WAS       DT                 <NA>            92            Active
#> 2720   2020  WAS       DT                  RDT            93            Active
#> 2721   2020  WAS        G                 <NA>            69          Inactive
#> 2722   2020  WAS        G                   LG            71            Active
#> 2723   2020  WAS        G                   RG            67            Active
#> 2724   2020  WAS        G                   RG            75            Active
#> 2725   2020  WAS        G                   RG            63   Injured Reserve
#> 2726   2020  WAS        K                   PK             3            Active
#> 2727   2020  WAS        K                 <NA>             8            Active
#> 2728   2020  WAS       LB                  MLB            53            Active
#> 2729   2020  WAS       LB                 <NA>            40 Voluntary Opt Out
#> 2730   2020  WAS       LB                 <NA>            50            Active
#> 2731   2020  WAS       LB                  MLB            56            Active
#> 2732   2020  WAS       LB                 ROLB            59            Active
#> 2733   2020  WAS       LB                 ROLB            47            Active
#> 2734   2020  WAS       LB                 <NA>            56            Active
#> 2735   2020  WAS       LB                 LOLB            55            Active
#> 2736   2020  WAS       LB                  MLB            48            Active
#> 2737   2020  WAS       LB                 LOLB            58            Active
#> 2738   2020  WAS       LB                 ROLB            54            Active
#> 2739   2020  WAS       LS                 <NA>            57            Active
#> 2740   2020  WAS        P                 <NA>             5            Active
#> 2741   2020  WAS       QB                   QB             4            Active
#> 2742   2020  WAS       QB                   QB             8            Active
#> 2743   2020  WAS       QB                 <NA>             6            Active
#> 2744   2020  WAS       QB                   QB            11            Active
#> 2745   2020  WAS       RB                 <NA>            35            Active
#> 2746   2020  WAS       RB                 <NA>            35            Active
#> 2747   2020  WAS       RB                   RB            41            Active
#> 2748   2020  WAS       RB                 <NA>            41            Active
#> 2749   2020  WAS       RB                   RB            34            Active
#> 2750   2020  WAS       RB                   RB            24            Active
#> 2751   2020  WAS       SS                   FS            26            Active
#> 2752   2020  WAS       SS                   CB            22            Active
#> 2753   2020  WAS        T                 <NA>            72            Active
#> 2754   2020  WAS        T                   LT            74            Active
#> 2755   2020  WAS        T                   LT            77            Active
#> 2756   2020  WAS        T                 <NA>            66            Active
#> 2757   2020  WAS        T                   LT            72            Active
#> 2758   2020  WAS        T                   RT            76            Active
#> 2759   2020  WAS        T                   RT            78            Active
#> 2760   2020  WAS        T                 <NA>            72            Active
#> 2761   2020  WAS       TE                 <NA>            85            Active
#> 2762   2020  WAS       TE                 <NA>            46            Active
#> 2763   2020  WAS       TE                   TE            87            Active
#> 2764   2020  WAS       TE                   TE            82            Active
#> 2765   2020  WAS       TE                 <NA>            82            Active
#> 2766   2020  WAS       TE                   TE            88            Active
#> 2767   2020  WAS       TE                 <NA>            46            Active
#> 2768   2020  WAS       WR                  RWR            10            Active
#> 2769   2020  WAS       WR                 <NA>            14            Active
#> 2770   2020  WAS       WR                  LWR            17            Active
#> 2771   2020  WAS       WR                  LWR            89            Active
#> 2772   2020  WAS       WR                 <NA>            12            Active
#> 2773   2020  WAS       WR                  RWR            13            Active
#> 2774   2020  WAS       WR                 <NA>            80            Active
#> 2775   2020  WAS       WR                 <NA>            80            Active
#> 2776   2020  WAS       WR                  RWR            19            Active
#> 2777   2020  WAS       WR                  LWR            83            Active
#> 2778   2020  WAS       WR                 <NA>            15            Active
#> 2779   2020  WAS       WR                 <NA>            84            Active
#> 2780   2020  WAS       WR                 <NA>             4            Active
#> 2781   2020 <NA>        C                 <NA>            59            Active
#> 2782   2020 <NA>        C                 <NA>            79          Inactive
#> 2783   2020 <NA>        C                 <NA>            55            Active
#> 2784   2020 <NA>        C                 <NA>            67          Inactive
#> 2785   2020 <NA>        C                    C            68            Active
#> 2786   2020 <NA>        C                 <NA>            NA          Inactive
#> 2787   2020 <NA>        C                 <NA>            60          Inactive
#> 2788   2020 <NA>        C                 <NA>            64          Inactive
#> 2789   2020 <NA>        C                 <NA>            60          Inactive
#> 2790   2020 <NA>        C                    C            63          Inactive
#> 2791   2020 <NA>        C                 <NA>            75            Active
#> 2792   2020 <NA>        C                 <NA>            NA          Inactive
#> 2793   2020 <NA>        C                 <NA>            74          Inactive
#> 2794   2020 <NA>        C                    C            NA          Inactive
#> 2795   2020 <NA>        C                 <NA>            60          Inactive
#> 2796   2020 <NA>        C                 <NA>            NA          Inactive
#> 2797   2020 <NA>        C                 <NA>            55          Inactive
#> 2798   2020 <NA>        C                 <NA>            61          Inactive
#> 2799   2020 <NA>        C                 <NA>            65            Active
#> 2800   2020 <NA>        C                    C            61            Active
#> 2801   2020 <NA>        C                 <NA>            49          Inactive
#> 2802   2020 <NA>        C                 <NA>            66            Active
#> 2803   2020 <NA>        C                 <NA>            68          Inactive
#> 2804   2020 <NA>        C                 <NA>            76          Inactive
#> 2805   2020 <NA>        C                 <NA>            77          Inactive
#> 2806   2020 <NA>        C                 <NA>            72          Inactive
#> 2807   2020 <NA>        C                 <NA>            69          Inactive
#> 2808   2020 <NA>        C                    C            NA          Inactive
#> 2809   2020 <NA>        C                    C            NA          Inactive
#> 2810   2020 <NA>        C                 <NA>            62          Inactive
#> 2811   2020 <NA>        C                    C            NA          Inactive
#> 2812   2020 <NA>        C                 <NA>            63            Active
#> 2813   2020 <NA>        C                 <NA>            59          Inactive
#> 2814   2020 <NA>        C                    C            76          Inactive
#> 2815   2020 <NA>        C                 <NA>            78          Inactive
#> 2816   2020 <NA>        C                 <NA>            63          Inactive
#> 2817   2020 <NA>        C                   LG            72            Active
#> 2818   2020 <NA>        C                 <NA>            60          Inactive
#> 2819   2020 <NA>        C                 <NA>            60          Inactive
#> 2820   2020 <NA>        C                 <NA>            60            Active
#> 2821   2020 <NA>       CB                 <NA>            39          Inactive
#> 2822   2020 <NA>       CB                 <NA>            31            Active
#> 2823   2020 <NA>       CB                 <NA>            NA          Inactive
#> 2824   2020 <NA>       CB                 <NA>            31            Active
#> 2825   2020 <NA>       CB                 <NA>            39          Inactive
#> 2826   2020 <NA>       CB                 <NA>            NA          Inactive
#> 2827   2020 <NA>       CB                 <NA>            29            Active
#> 2828   2020 <NA>       CB                 <NA>            38            Active
#> 2829   2020 <NA>       CB                 <NA>            31          Inactive
#> 2830   2020 <NA>       CB                 <NA>            35            Active
#> 2831   2020 <NA>       CB                 <NA>            37          Inactive
#> 2832   2020 <NA>       CB                 <NA>            38          Inactive
#> 2833   2020 <NA>       CB                 <NA>            37            Active
#> 2834   2020 <NA>       CB                 <NA>            29          Inactive
#> 2835   2020 <NA>       CB                 <NA>            22            Active
#> 2836   2020 <NA>       CB                 <NA>            47          Inactive
#> 2837   2020 <NA>       CB                 <NA>            38          Inactive
#> 2838   2020 <NA>       CB                 <NA>            35          Inactive
#> 2839   2020 <NA>       CB                 <NA>            45          Inactive
#> 2840   2020 <NA>       CB                 <NA>            23          Inactive
#> 2841   2020 <NA>       CB                 <NA>            43          Inactive
#> 2842   2020 <NA>       CB                 <NA>            39          Inactive
#> 2843   2020 <NA>       CB                 <NA>            44          Inactive
#> 2844   2020 <NA>       CB                 <NA>            39          Inactive
#> 2845   2020 <NA>       CB                 <NA>            32          Inactive
#> 2846   2020 <NA>       CB                 <NA>            35            Active
#> 2847   2020 <NA>       CB                 <NA>            34          Inactive
#> 2848   2020 <NA>       CB                 <NA>            36          Inactive
#> 2849   2020 <NA>       CB                 <NA>            40          Inactive
#> 2850   2020 <NA>       CB                 <NA>            24            Active
#> 2851   2020 <NA>       CB                 <NA>            31          Inactive
#> 2852   2020 <NA>       CB                 <NA>            27          Inactive
#> 2853   2020 <NA>       CB                 <NA>            39            Active
#> 2854   2020 <NA>       CB                 <NA>            44          Inactive
#> 2855   2020 <NA>       CB                  RCB            38          Inactive
#> 2856   2020 <NA>       CB                 <NA>            35          Inactive
#> 2857   2020 <NA>       CB                 <NA>            20          Inactive
#> 2858   2020 <NA>       CB                 <NA>            42          Inactive
#> 2859   2020 <NA>       CB                 <NA>            NA          Inactive
#> 2860   2020 <NA>       CB                 <NA>            41          Inactive
#> 2861   2020 <NA>       CB                 <NA>            36          Inactive
#> 2862   2020 <NA>       CB                 <NA>            38          Inactive
#> 2863   2020 <NA>       CB                 <NA>            29          Inactive
#> 2864   2020 <NA>       CB                 <NA>            33   Injured Reserve
#> 2865   2020 <NA>       CB                 <NA>            31            Active
#> 2866   2020 <NA>       CB                 <NA>            43          Inactive
#> 2867   2020 <NA>       CB                 <NA>            20            Active
#> 2868   2020 <NA>       CB                 <NA>            30          Inactive
#> 2869   2020 <NA>       CB                 <NA>            NA          Inactive
#> 2870   2020 <NA>       CB                 <NA>             7          Inactive
#> 2871   2020 <NA>       CB                 <NA>            41   Injured Reserve
#> 2872   2020 <NA>       CB                 <NA>            38          Inactive
#> 2873   2020 <NA>       CB                 <NA>            44          Inactive
#> 2874   2020 <NA>       CB                 <NA>            37          Inactive
#> 2875   2020 <NA>       CB                 <NA>            41          Inactive
#> 2876   2020 <NA>       CB                 <NA>            NA          Inactive
#> 2877   2020 <NA>       CB                 <NA>            23          Inactive
#> 2878   2020 <NA>       CB                 <NA>            28          Inactive
#> 2879   2020 <NA>       CB                 <NA>            43          Inactive
#> 2880   2020 <NA>       CB                 <NA>            34          Inactive
#> 2881   2020 <NA>       CB                 <NA>            22          Inactive
#> 2882   2020 <NA>       CB                 <NA>            46          Inactive
#> 2883   2020 <NA>       CB                 <NA>            30          Inactive
#> 2884   2020 <NA>       CB                 <NA>            35          Inactive
#> 2885   2020 <NA>       CB                 <NA>            39          Inactive
#> 2886   2020 <NA>       CB                 <NA>            41          Inactive
#> 2887   2020 <NA>       CB                 <NA>            66          Inactive
#> 2888   2020 <NA>       CB                  LCB            NA          Inactive
#> 2889   2020 <NA>       CB                 <NA>            30          Inactive
#> 2890   2020 <NA>       CB                 <NA>            NA          Inactive
#> 2891   2020 <NA>       CB                 <NA>            NA          Inactive
#> 2892   2020 <NA>       CB                 <NA>            NA          Inactive
#> 2893   2020 <NA>       CB                 <NA>            NA          Inactive
#> 2894   2020 <NA>       CB                 <NA>            NA          Inactive
#> 2895   2020 <NA>       CB                 <NA>            36          Inactive
#> 2896   2020 <NA>       CB                 <NA>            NA          Inactive
#> 2897   2020 <NA>       CB                 <NA>            29          Inactive
#> 2898   2020 <NA>       CB                 <NA>             9          Inactive
#> 2899   2020 <NA>       CB                 <NA>            36          Inactive
#> 2900   2020 <NA>       CB                  LCB            23            Active
#> 2901   2020 <NA>       CB                 <NA>            39            Active
#> 2902   2020 <NA>       CB                 <NA>            35          Inactive
#> 2903   2020 <NA>       CB                 <NA>            28          Inactive
#> 2904   2020 <NA>       CB                 <NA>            38            Active
#> 2905   2020 <NA>       CB                 <NA>            25          Inactive
#> 2906   2020 <NA>       CB                 <NA>            23          Inactive
#> 2907   2020 <NA>       CB                 <NA>            35          Inactive
#> 2908   2020 <NA>       CB                 <NA>            34            Active
#> 2909   2020 <NA>       CB                  RCB            NA          Inactive
#> 2910   2020 <NA>       CB                 <NA>            27            Active
#> 2911   2020 <NA>       CB                 <NA>            25          Inactive
#> 2912   2020 <NA>       CB                 <NA>            32          Inactive
#> 2913   2020 <NA>       CB                 <NA>            43            Active
#> 2914   2020 <NA>       CB                 <NA>            37            Active
#> 2915   2020 <NA>       CB                 <NA>            39          Inactive
#> 2916   2020 <NA>       CB                 <NA>            27          Inactive
#> 2917   2020 <NA>       CB                 <NA>            21            Active
#> 2918   2020 <NA>       CB                 <NA>            31          Inactive
#> 2919   2020 <NA>       CB                 <NA>            24            Active
#> 2920   2020 <NA>       CB                 <NA>            32            Active
#> 2921   2020 <NA>       CB                 <NA>            NA          Inactive
#> 2922   2020 <NA>       CB                 <NA>            20          Inactive
#> 2923   2020 <NA>       CB                 <NA>             8            Active
#> 2924   2020 <NA>       CB                 <NA>            49            Active
#> 2925   2020 <NA>       CB                 <NA>            42          Inactive
#> 2926   2020 <NA>       CB                 <NA>            26            Active
#> 2927   2020 <NA>       CB                 <NA>            29          Inactive
#> 2928   2020 <NA>       CB                 <NA>            38          Inactive
#> 2929   2020 <NA>       CB                 <NA>            34          Inactive
#> 2930   2020 <NA>       CB                 <NA>            22          Inactive
#> 2931   2020 <NA>       CB                 <NA>            29          Inactive
#> 2932   2020 <NA>       CB                  LCB            NA          Inactive
#> 2933   2020 <NA>       CB                 <NA>            46          Inactive
#> 2934   2020 <NA>       CB                 <NA>            48          Inactive
#> 2935   2020 <NA>       CB                 <NA>            NA          Inactive
#> 2936   2020 <NA>       CB                 <NA>            46            Active
#> 2937   2020 <NA>       CB                 <NA>            36          Inactive
#> 2938   2020 <NA>       CB                 <NA>            47          Inactive
#> 2939   2020 <NA>       CB                 <NA>            29            Active
#> 2940   2020 <NA>       CB                 <NA>            33          Inactive
#> 2941   2020 <NA>       CB                  RCB            NA          Inactive
#> 2942   2020 <NA>       CB                 <NA>            38          Inactive
#> 2943   2020 <NA>       CB                 <NA>            45            Active
#> 2944   2020 <NA>       CB                 <NA>            34          Inactive
#> 2945   2020 <NA>       CB                  RCB            30            Active
#> 2946   2020 <NA>       CB                 <NA>            49          Inactive
#> 2947   2020 <NA>       CB                 <NA>            NA          Inactive
#> 2948   2020 <NA>       CB                 <NA>            31            Active
#> 2949   2020 <NA>       CB                 <NA>            39          Inactive
#> 2950   2020 <NA>       CB                 <NA>            NA          Inactive
#> 2951   2020 <NA>       CB                 <NA>            NA          Inactive
#> 2952   2020 <NA>       CB                 <NA>            40          Inactive
#> 2953   2020 <NA>       CB                 <NA>            33          Inactive
#> 2954   2020 <NA>       CB                 <NA>            35          Inactive
#> 2955   2020 <NA>       CB                 <NA>            23          Inactive
#> 2956   2020 <NA>       CB                 <NA>            38          Inactive
#> 2957   2020 <NA>       CB                 <NA>            37            Active
#> 2958   2020 <NA>       CB                 <NA>            23          Inactive
#> 2959   2020 <NA>       CB                 <NA>            28          Inactive
#> 2960   2020 <NA>       CB                 <NA>            NA          Inactive
#> 2961   2020 <NA>       CB                 <NA>            39          Inactive
#> 2962   2020 <NA>       CB                 <NA>            20          Inactive
#> 2963   2020 <NA>       CB                 <NA>            44          Inactive
#> 2964   2020 <NA>       CB                 <NA>            42          Inactive
#> 2965   2020 <NA>       CB                 <NA>            40          Inactive
#> 2966   2020 <NA>       CB                 <NA>            41          Inactive
#> 2967   2020 <NA>       DB                 <NA>            NA          Inactive
#> 2968   2020 <NA>       DB                 <NA>            NA          Inactive
#> 2969   2020 <NA>       DB                 <NA>            NA          Inactive
#> 2970   2020 <NA>       DB                 <NA>            47          Inactive
#> 2971   2020 <NA>       DB                 <NA>            43          Inactive
#> 2972   2020 <NA>       DB                 <NA>            39          Inactive
#> 2973   2020 <NA>       DB                 <NA>            NA          Inactive
#> 2974   2020 <NA>       DB                 <NA>            40          Inactive
#> 2975   2020 <NA>       DB                 <NA>            41          Inactive
#> 2976   2020 <NA>       DB                 <NA>            46          Inactive
#> 2977   2020 <NA>       DB                 <NA>            46          Inactive
#> 2978   2020 <NA>       DE                 <NA>            94            Active
#> 2979   2020 <NA>       DE                 <NA>            75          Inactive
#> 2980   2020 <NA>       DE                 <NA>            98          Inactive
#> 2981   2020 <NA>       DE                 <NA>            95          Inactive
#> 2982   2020 <NA>       DE                 <NA>            61          Inactive
#> 2983   2020 <NA>       DE                   DT            99            Active
#> 2984   2020 <NA>       DE                 <NA>            50          Inactive
#> 2985   2020 <NA>       DE                 <NA>            56            Active
#> 2986   2020 <NA>       DE                 <NA>            52          Inactive
#> 2987   2020 <NA>       DE                 <NA>            68          Inactive
#> 2988   2020 <NA>       DE                 <NA>            98          Inactive
#> 2989   2020 <NA>       DE                 <NA>            90            Active
#> 2990   2020 <NA>       DE                 <NA>            66          Inactive
#> 2991   2020 <NA>       DE                 <NA>            98            Active
#> 2992   2020 <NA>       DE                 <NA>            71          Inactive
#> 2993   2020 <NA>       DE                 <NA>            96          Inactive
#> 2994   2020 <NA>       DE                 <NA>            75          Inactive
#> 2995   2020 <NA>       DE                 <NA>            76          Inactive
#> 2996   2020 <NA>       DE                 <NA>            91          Inactive
#> 2997   2020 <NA>       DE                 <NA>            95            Active
#> 2998   2020 <NA>       DE                 <NA>            NA          Inactive
#> 2999   2020 <NA>       DE                 <NA>            76            Active
#> 3000   2020 <NA>       DE                 <NA>            92            Active
#> 3001   2020 <NA>       DE                 <NA>            90          Inactive
#> 3002   2020 <NA>       DE                 <NA>            NA          Inactive
#> 3003   2020 <NA>       DE                 <NA>            59          Inactive
#> 3004   2020 <NA>       DE                 <NA>            56            Active
#> 3005   2020 <NA>       DE                 <NA>            56            Active
#> 3006   2020 <NA>       DE                 <NA>            66          Inactive
#> 3007   2020 <NA>       DE                 <NA>            61          Inactive
#> 3008   2020 <NA>       DE                 <NA>            59          Inactive
#> 3009   2020 <NA>       DE                 <NA>            62          Inactive
#> 3010   2020 <NA>       DE                 <NA>            95            Active
#> 3011   2020 <NA>       DE                 <NA>            73          Inactive
#> 3012   2020 <NA>       DE                 <NA>            92          Inactive
#> 3013   2020 <NA>       DE                 <NA>            46            Active
#> 3014   2020 <NA>       DE                 <NA>            99            Active
#> 3015   2020 <NA>       DE                 <NA>            96            Active
#> 3016   2020 <NA>       DE                 <NA>            93          Inactive
#> 3017   2020 <NA>       DE                 <NA>            90          Inactive
#> 3018   2020 <NA>       DE                 <NA>            76          Inactive
#> 3019   2020 <NA>       DE                 <NA>            79          Inactive
#> 3020   2020 <NA>       DE                 <NA>            90            Active
#> 3021   2020 <NA>       DE                 <NA>            96          Inactive
#> 3022   2020 <NA>       DE                 <NA>            74          Inactive
#> 3023   2020 <NA>       DE                 <NA>            NA          Inactive
#> 3024   2020 <NA>       DE                 <NA>            44          Inactive
#> 3025   2020 <NA>       DE                 <NA>            71          Inactive
#> 3026   2020 <NA>       DE                 <NA>            75          Inactive
#> 3027   2020 <NA>       DE                 <NA>            NA          Inactive
#> 3028   2020 <NA>       DE                 <NA>            90            Active
#> 3029   2020 <NA>       DE                 <NA>            63          Inactive
#> 3030   2020 <NA>       DE                  RDE            NA          Inactive
#> 3031   2020 <NA>       DE                 <NA>            66          Inactive
#> 3032   2020 <NA>       DE                 <NA>            71          Inactive
#> 3033   2020 <NA>       DE                 <NA>            47          Inactive
#> 3034   2020 <NA>       DE                  RDE            95          Inactive
#> 3035   2020 <NA>       DE                 <NA>            70          Inactive
#> 3036   2020 <NA>       DE                 <NA>            76   Injured Reserve
#> 3037   2020 <NA>       DE                 <NA>            49          Inactive
#> 3038   2020 <NA>       DE                 <NA>            93            Active
#> 3039   2020 <NA>       DE                 LOLB            91            Active
#> 3040   2020 <NA>       DE                 <NA>            64          Inactive
#> 3041   2020 <NA>       DE                 <NA>            98   Injured Reserve
#> 3042   2020 <NA>       DE                  LDE            NA          Inactive
#> 3043   2020 <NA>       DE                 <NA>            40          Inactive
#> 3044   2020 <NA>       DE                 <NA>            62          Inactive
#> 3045   2020 <NA>       DE                  RDE            96            Active
#> 3046   2020 <NA>       DE                 <NA>            43          Inactive
#> 3047   2020 <NA>       DE                 <NA>            90          Inactive
#> 3048   2020 <NA>       DE                 <NA>            48          Inactive
#> 3049   2020 <NA>       DE                  RDT            NA          Inactive
#> 3050   2020 <NA>       DE                 <NA>            79          Inactive
#> 3051   2020 <NA>       DE                 <NA>            63          Inactive
#> 3052   2020 <NA>       DE                 <NA>            92          Inactive
#> 3053   2020 <NA>       DE                 <NA>            NA          Inactive
#> 3054   2020 <NA>       DE                 <NA>            91          Inactive
#> 3055   2020 <NA>       DE                 <NA>            97          Inactive
#> 3056   2020 <NA>       DE                 <NA>            79            Active
#> 3057   2020 <NA>       DE                 <NA>            75          Inactive
#> 3058   2020 <NA>       DE                 <NA>            69          Inactive
#> 3059   2020 <NA>       DE                 <NA>            93            Active
#> 3060   2020 <NA>       DE                 <NA>            59          Inactive
#> 3061   2020 <NA>       DE                 <NA>            96            Active
#> 3062   2020 <NA>       DE                 <NA>            54          Inactive
#> 3063   2020 <NA>       DE                 <NA>            NA          Inactive
#> 3064   2020 <NA>       DE                 <NA>            45          Inactive
#> 3065   2020 <NA>       DE                 <NA>            47          Inactive
#> 3066   2020 <NA>       DE                 <NA>            62          Inactive
#> 3067   2020 <NA>       DE                 <NA>            58          Inactive
#> 3068   2020 <NA>       DE                 <NA>            98          Inactive
#> 3069   2020 <NA>       DE                 <NA>            63          Inactive
#> 3070   2020 <NA>       DE                 <NA>            95          Inactive
#> 3071   2020 <NA>       DE                 <NA>            96          Inactive
#> 3072   2020 <NA>       DE                 <NA>            97          Inactive
#> 3073   2020 <NA>       DE                 ROLB            NA          Inactive
#> 3074   2020 <NA>       DE                 <NA>            NA          Inactive
#> 3075   2020 <NA>       DE                 <NA>            95          Inactive
#> 3076   2020 <NA>       DE                  LDE            NA          Inactive
#> 3077   2020 <NA>       DE                 <NA>            72            Active
#> 3078   2020 <NA>       DE                 <NA>            57          Inactive
#> 3079   2020 <NA>       DE                 <NA>            90          Inactive
#> 3080   2020 <NA>       DE                 <NA>            NA          Inactive
#> 3081   2020 <NA>       DE                 <NA>            78          Inactive
#> 3082   2020 <NA>       DE                 <NA>            90          Inactive
#> 3083   2020 <NA>       DE                 <NA>            96          Inactive
#> 3084   2020 <NA>       DL                 <NA>            60          Inactive
#> 3085   2020 <NA>       DL                 <NA>            92          Inactive
#> 3086   2020 <NA>       DL                 <NA>            95          Inactive
#> 3087   2020 <NA>       DL                 <NA>            54          Inactive
#> 3088   2020 <NA>       DL                 <NA>            43          Inactive
#> 3089   2020 <NA>       DL                 <NA>             0          Inactive
#> 3090   2020 <NA>       DL                 <NA>            59          Inactive
#> 3091   2020 <NA>       DL                 <NA>            60          Inactive
#> 3092   2020 <NA>       DL                  LDT            NA          Inactive
#> 3093   2020 <NA>       DT                 <NA>            56          Inactive
#> 3094   2020 <NA>       DT                 <NA>            90            Active
#> 3095   2020 <NA>       DT                 <NA>            66          Inactive
#> 3096   2020 <NA>       DT                 <NA>            71          Inactive
#> 3097   2020 <NA>       DT                 <NA>            96            Active
#> 3098   2020 <NA>       DT                 <NA>            64          Inactive
#> 3099   2020 <NA>       DT                 <NA>            66          Inactive
#> 3100   2020 <NA>       DT                 <NA>            97          Inactive
#> 3101   2020 <NA>       DT                   DT            NA          Inactive
#> 3102   2020 <NA>       DT                 <NA>            93            Active
#> 3103   2020 <NA>       DT                 <NA>            94          Inactive
#> 3104   2020 <NA>       DT                 <NA>            78          Inactive
#> 3105   2020 <NA>       DT                 <NA>            98          Inactive
#> 3106   2020 <NA>       DT                  RDE            NA          Inactive
#> 3107   2020 <NA>       DT                 <NA>            97            Active
#> 3108   2020 <NA>       DT                 <NA>            94            Active
#> 3109   2020 <NA>       DT                 <NA>            61          Inactive
#> 3110   2020 <NA>       DT                 <NA>            93            Active
#> 3111   2020 <NA>       DT                 <NA>            69          Inactive
#> 3112   2020 <NA>       DT                 <NA>            90   Injured Reserve
#> 3113   2020 <NA>       DT                 <NA>            60          Inactive
#> 3114   2020 <NA>       DT                  RDT            NA          Inactive
#> 3115   2020 <NA>       DT                 <NA>            63          Inactive
#> 3116   2020 <NA>       DT                 <NA>            95            Active
#> 3117   2020 <NA>       DT                 <NA>            61            Active
#> 3118   2020 <NA>       DT                 <NA>            72          Inactive
#> 3119   2020 <NA>       DT                 <NA>            97          Inactive
#> 3120   2020 <NA>       DT                 <NA>            63          Inactive
#> 3121   2020 <NA>       DT                 <NA>            65          Inactive
#> 3122   2020 <NA>       DT                 <NA>            NA          Inactive
#> 3123   2020 <NA>       DT                 <NA>            61          Inactive
#> 3124   2020 <NA>       DT                 <NA>            97          Inactive
#> 3125   2020 <NA>       DT                 <NA>            73          Inactive
#> 3126   2020 <NA>       DT                 <NA>            71          Inactive
#> 3127   2020 <NA>       DT                  LDE            63            Active
#> 3128   2020 <NA>       DT                 <NA>            94          Inactive
#> 3129   2020 <NA>       DT                 <NA>            76          Inactive
#> 3130   2020 <NA>       DT                 <NA>            65          Inactive
#> 3131   2020 <NA>       DT                 <NA>            93            Active
#> 3132   2020 <NA>       DT                 <NA>            97          Inactive
#> 3133   2020 <NA>       DT                 <NA>            60          Inactive
#> 3134   2020 <NA>       DT                 <NA>            NA          Inactive
#> 3135   2020 <NA>       DT                 <NA>            62          Inactive
#> 3136   2020 <NA>       DT                 <NA>            65          Inactive
#> 3137   2020 <NA>       DT                 <NA>            78          Inactive
#> 3138   2020 <NA>       DT                 <NA>            60          Inactive
#> 3139   2020 <NA>       DT                 <NA>            93          Inactive
#> 3140   2020 <NA>       DT                 <NA>            67          Inactive
#> 3141   2020 <NA>       DT                 <NA>            93          Inactive
#> 3142   2020 <NA>       DT                 <NA>            78          Inactive
#> 3143   2020 <NA>       DT                 <NA>            53          Inactive
#> 3144   2020 <NA>       DT                 <NA>            68          Inactive
#> 3145   2020 <NA>       DT                 <NA>            99          Inactive
#> 3146   2020 <NA>       DT                 <NA>            90   Injured Reserve
#> 3147   2020 <NA>       DT                 <NA>            63          Inactive
#> 3148   2020 <NA>       DT                 <NA>            61          Inactive
#> 3149   2020 <NA>       DT                 <NA>            40          Inactive
#> 3150   2020 <NA>       DT                 <NA>            97          Inactive
#> 3151   2020 <NA>       DT                  LDT            93          Inactive
#> 3152   2020 <NA>       DT                 <NA>            75          Inactive
#> 3153   2020 <NA>       DT                 <NA>            72          Inactive
#> 3154   2020 <NA>       DT                 <NA>            96   Injured Reserve
#> 3155   2020 <NA>       DT                 <NA>            96   Injured Reserve
#> 3156   2020 <NA>       DT                 <NA>            66          Inactive
#> 3157   2020 <NA>       DT                 <NA>            77          Inactive
#> 3158   2020 <NA>       DT                  LDT            93          Inactive
#> 3159   2020 <NA>       DT                 <NA>            70          Inactive
#> 3160   2020 <NA>       DT                 <NA>            64          Inactive
#> 3161   2020 <NA>       DT                 <NA>            48          Inactive
#> 3162   2020 <NA>       FB                 <NA>            96          Inactive
#> 3163   2020 <NA>       FB                   RB            NA          Inactive
#> 3164   2020 <NA>       FB                 <NA>            44          Inactive
#> 3165   2020 <NA>       FB                 <NA>            49          Inactive
#> 3166   2020 <NA>       FB                 <NA>            47          Inactive
#> 3167   2020 <NA>       FB                 <NA>            30          Inactive
#> 3168   2020 <NA>       FB                 <NA>            40          Inactive
#> 3169   2020 <NA>       FB                 <NA>            45          Inactive
#> 3170   2020 <NA>       FB                 <NA>            36          Inactive
#> 3171   2020 <NA>       FB                 <NA>            40          Inactive
#> 3172   2020 <NA>       FB                 <NA>            32            Active
#> 3173   2020 <NA>       FB                   RB            NA          Inactive
#> 3174   2020 <NA>       FB                   FB            NA          Inactive
#> 3175   2020 <NA>       FB                 <NA>            45          Inactive
#> 3176   2020 <NA>       FB                 <NA>            48          Inactive
#> 3177   2020 <NA>       FB                   RB            42            Active
#> 3178   2020 <NA>       FB                 <NA>            46          Inactive
#> 3179   2020 <NA>       FB                 <NA>            22          Inactive
#> 3180   2020 <NA>       FB                   RB            35          Inactive
#> 3181   2020 <NA>       FB                   RB            33            Active
#> 3182   2020 <NA>       FB                   RB            42   Injured Reserve
#> 3183   2020 <NA>       FB                   RB            NA          Inactive
#> 3184   2020 <NA>       FB                 <NA>            46            Active
#> 3185   2020 <NA>       FB                 <NA>            40          Inactive
#> 3186   2020 <NA>       FB                 <NA>            43          Inactive
#> 3187   2020 <NA>       FB                 <NA>            75          Inactive
#> 3188   2020 <NA>       FS                 <NA>            29            Active
#> 3189   2020 <NA>       FS                 <NA>            35          Inactive
#> 3190   2020 <NA>       FS                 <NA>            41          Inactive
#> 3191   2020 <NA>       FS                 <NA>            47          Inactive
#> 3192   2020 <NA>       FS                 <NA>            23            Active
#> 3193   2020 <NA>       FS                 <NA>            47          Inactive
#> 3194   2020 <NA>       FS                 <NA>            45          Inactive
#> 3195   2020 <NA>       FS                 <NA>            38          Inactive
#> 3196   2020 <NA>       FS                 <NA>            28          Inactive
#> 3197   2020 <NA>       FS                 <NA>            NA          Inactive
#> 3198   2020 <NA>       FS                 <NA>            39          Inactive
#> 3199   2020 <NA>       FS                 <NA>            31          Inactive
#> 3200   2020 <NA>       FS                 <NA>            41          Inactive
#> 3201   2020 <NA>       FS                 <NA>            31          Inactive
#> 3202   2020 <NA>       FS                   SS            35            Active
#> 3203   2020 <NA>       FS                 <NA>            28            Active
#> 3204   2020 <NA>       FS                 <NA>            33          Inactive
#> 3205   2020 <NA>       FS                 <NA>            39          Inactive
#> 3206   2020 <NA>       FS                   FS            42            Active
#> 3207   2020 <NA>       FS                 <NA>            23          Inactive
#> 3208   2020 <NA>       FS                 <NA>            35          Inactive
#> 3209   2020 <NA>       FS                 <NA>            36            Active
#> 3210   2020 <NA>       FS                 <NA>            28            Active
#> 3211   2020 <NA>       FS                 <NA>            20          Inactive
#> 3212   2020 <NA>       FS                 <NA>            24            Active
#> 3213   2020 <NA>       FS                   FS            29            Active
#> 3214   2020 <NA>       FS                 <NA>            41          Inactive
#> 3215   2020 <NA>       FS                   FS            27            Active
#> 3216   2020 <NA>       FS                 <NA>            46          Inactive
#> 3217   2020 <NA>       FS                 <NA>            35          Inactive
#> 3218   2020 <NA>       FS                 <NA>            25          Inactive
#> 3219   2020 <NA>       FS                 <NA>            24            Active
#> 3220   2020 <NA>       FS                 <NA>            31            Active
#> 3221   2020 <NA>       FS                   FS            NA          Inactive
#> 3222   2020 <NA>       FS                 <NA>            NA          Inactive
#> 3223   2020 <NA>       FS                 <NA>            45            Active
#> 3224   2020 <NA>       FS                 <NA>            40          Inactive
#> 3225   2020 <NA>       FS                   FS            NA          Inactive
#> 3226   2020 <NA>       FS                 <NA>            45          Inactive
#> 3227   2020 <NA>       FS                   FS            41            Active
#> 3228   2020 <NA>       FS                 <NA>            46   Injured Reserve
#> 3229   2020 <NA>       FS                 <NA>            21            Active
#> 3230   2020 <NA>       FS                 <NA>            27            Active
#> 3231   2020 <NA>       FS                   FS            NA          Inactive
#> 3232   2020 <NA>       FS                 <NA>            38            Active
#> 3233   2020 <NA>       FS                 <NA>            32            Active
#> 3234   2020 <NA>       FS                 <NA>            39          Inactive
#> 3235   2020 <NA>       FS                 <NA>            27            Active
#> 3236   2020 <NA>       FS                 <NA>            34            Active
#> 3237   2020 <NA>       FS                 <NA>            30          Inactive
#> 3238   2020 <NA>       FS                 <NA>            46          Inactive
#> 3239   2020 <NA>       FS                 <NA>            37          Inactive
#> 3240   2020 <NA>       FS                   SS            20            Active
#> 3241   2020 <NA>       FS                 <NA>            36          Inactive
#> 3242   2020 <NA>       FS                 <NA>            47          Inactive
#> 3243   2020 <NA>       FS                 <NA>            29          Inactive
#> 3244   2020 <NA>       FS                 <NA>            29          Inactive
#> 3245   2020 <NA>       FS                   FS            29          Inactive
#> 3246   2020 <NA>       FS                 <NA>            43          Inactive
#> 3247   2020 <NA>       FS                 <NA>            21          Inactive
#> 3248   2020 <NA>       FS                 <NA>            38            Active
#> 3249   2020 <NA>       FS                   FS            NA          Inactive
#> 3250   2020 <NA>       FS                 <NA>            34          Inactive
#> 3251   2020 <NA>       FS                 <NA>            41          Inactive
#> 3252   2020 <NA>       FS                 <NA>            35          Inactive
#> 3253   2020 <NA>        G                 <NA>            66          Inactive
#> 3254   2020 <NA>        G                 <NA>            66          Inactive
#> 3255   2020 <NA>        G                 <NA>            72            Active
#> 3256   2020 <NA>        G                 <NA>            74          Inactive
#> 3257   2020 <NA>        G                 <NA>            70            Active
#> 3258   2020 <NA>        G                 <NA>            60          Inactive
#> 3259   2020 <NA>        G                 <NA>            65          Inactive
#> 3260   2020 <NA>        G                 <NA>            68          Inactive
#> 3261   2020 <NA>        G                 <NA>            61          Inactive
#> 3262   2020 <NA>        G                   RG            68            Active
#> 3263   2020 <NA>        G                 <NA>            60          Inactive
#> 3264   2020 <NA>        G                 <NA>            69          Inactive
#> 3265   2020 <NA>        G                 <NA>            60          Inactive
#> 3266   2020 <NA>        G                 <NA>            NA          Inactive
#> 3267   2020 <NA>        G                   RG            78          Inactive
#> 3268   2020 <NA>        G                 <NA>            68            Active
#> 3269   2020 <NA>        G                 <NA>            66          Inactive
#> 3270   2020 <NA>        G                   LG            NA          Inactive
#> 3271   2020 <NA>        G                 <NA>            65            Active
#> 3272   2020 <NA>        G                   LG            62          Inactive
#> 3273   2020 <NA>        G                 <NA>            66          Inactive
#> 3274   2020 <NA>        G                 <NA>            68          Inactive
#> 3275   2020 <NA>        G                 <NA>            74            Active
#> 3276   2020 <NA>        G                   LG            73            Active
#> 3277   2020 <NA>        G                   RG            NA          Inactive
#> 3278   2020 <NA>        G                 <NA>            63          Inactive
#> 3279   2020 <NA>        G                 <NA>            69            Active
#> 3280   2020 <NA>        G                 <NA>            63          Inactive
#> 3281   2020 <NA>        G                 <NA>            63          Inactive
#> 3282   2020 <NA>        G                 <NA>            75          Inactive
#> 3283   2020 <NA>        G                 <NA>            67          Inactive
#> 3284   2020 <NA>        G                 <NA>            74          Inactive
#> 3285   2020 <NA>        G                 <NA>            61          Inactive
#> 3286   2020 <NA>        G                 <NA>            74            Active
#> 3287   2020 <NA>        G                 <NA>            63          Inactive
#> 3288   2020 <NA>        G                 <NA>            63          Inactive
#> 3289   2020 <NA>        G                 <NA>            62            Active
#> 3290   2020 <NA>        G                 <NA>            65            Active
#> 3291   2020 <NA>        G                 <NA>            65            Active
#> 3292   2020 <NA>        G                 <NA>            NA          Inactive
#> 3293   2020 <NA>        G                 <NA>            69          Inactive
#> 3294   2020 <NA>        G                 <NA>            66          Inactive
#> 3295   2020 <NA>        G                 <NA>            61          Inactive
#> 3296   2020 <NA>        G                 <NA>            62            Active
#> 3297   2020 <NA>        G                 <NA>            68          Inactive
#> 3298   2020 <NA>        G                 <NA>            66          Inactive
#> 3299   2020 <NA>        G                 <NA>            70          Inactive
#> 3300   2020 <NA>        G                 <NA>            67          Inactive
#> 3301   2020 <NA>        G                 <NA>            64          Inactive
#> 3302   2020 <NA>        G                 <NA>            62          Inactive
#> 3303   2020 <NA>        G                 <NA>            62          Inactive
#> 3304   2020 <NA>        G                 <NA>            67            Active
#> 3305   2020 <NA>        G                 <NA>            68            Active
#> 3306   2020 <NA>        G                 <NA>            71   Injured Reserve
#> 3307   2020 <NA>        G                 <NA>            79          Inactive
#> 3308   2020 <NA>        G                 <NA>            67          Inactive
#> 3309   2020 <NA>        G                 <NA>            75            Active
#> 3310   2020 <NA>        G                 <NA>            68            Active
#> 3311   2020 <NA>        G                 <NA>            60          Inactive
#> 3312   2020 <NA>        G                 <NA>            73          Inactive
#> 3313   2020 <NA>        G                   LG            63          Inactive
#> 3314   2020 <NA>        G                 <NA>            NA          Inactive
#> 3315   2020 <NA>        G                 <NA>            78          Inactive
#> 3316   2020 <NA>        G                 <NA>            65            Active
#> 3317   2020 <NA>        G                 <NA>            79          Inactive
#> 3318   2020 <NA>        G                 <NA>            72          Inactive
#> 3319   2020 <NA>        G                 <NA>            70          Inactive
#> 3320   2020 <NA>        G                   LG            66            Active
#> 3321   2020 <NA>        G                 <NA>            60          Inactive
#> 3322   2020 <NA>        G                   RG            64            Active
#> 3323   2020 <NA>        G                 <NA>            61          Inactive
#> 3324   2020 <NA>        G                 <NA>            67          Inactive
#> 3325   2020 <NA>        G                 <NA>            64          Inactive
#> 3326   2020 <NA>        G                 <NA>            78          Inactive
#> 3327   2020 <NA>        G                   LG            69            Active
#> 3328   2020 <NA>        G                 <NA>            60          Inactive
#> 3329   2020 <NA>        G                 <NA>            78          Inactive
#> 3330   2020 <NA>        G                 <NA>            63          Inactive
#> 3331   2020 <NA>        G                 <NA>            63          Inactive
#> 3332   2020 <NA>        G                   RG            67            Active
#> 3333   2020 <NA>        G                 <NA>            66          Inactive
#> 3334   2020 <NA>        G                 <NA>            62          Inactive
#> 3335   2020 <NA>        G                 <NA>            66          Inactive
#> 3336   2020 <NA>        G                 <NA>            61          Inactive
#> 3337   2020 <NA>        G                 <NA>            76          Inactive
#> 3338   2020 <NA>        G                 <NA>            70          Inactive
#> 3339   2020 <NA>        G                 <NA>            NA          Inactive
#> 3340   2020 <NA>        G                   LG            NA          Inactive
#> 3341   2020 <NA>        G                 <NA>            NA          Inactive
#> 3342   2020 <NA>        G                 <NA>            60          Inactive
#> 3343   2020 <NA>        G                 <NA>            64            Active
#> 3344   2020 <NA>        G                 <NA>            NA          Inactive
#> 3345   2020 <NA>        G                 <NA>            NA          Inactive
#> 3346   2020 <NA>        G                 <NA>            68            Active
#> 3347   2020 <NA>        G                 <NA>            74          Inactive
#> 3348   2020 <NA>        G                 <NA>            79          Inactive
#> 3349   2020 <NA>        G                 <NA>            76            Active
#> 3350   2020 <NA>        G                   LG            66          Inactive
#> 3351   2020 <NA>        G                 <NA>            65          Inactive
#> 3352   2020 <NA>        G                   RG            73            Active
#> 3353   2020 <NA>        G                 <NA>            67          Inactive
#> 3354   2020 <NA>        G                 <NA>            74          Inactive
#> 3355   2020 <NA>        G                   LG            NA          Inactive
#> 3356   2020 <NA>        G                 <NA>            73            Active
#> 3357   2020 <NA>        G                 <NA>            63          Inactive
#> 3358   2020 <NA>        G                 <NA>            73            Active
#> 3359   2020 <NA>        G                 <NA>            71            Active
#> 3360   2020 <NA>        G                 <NA>            77            Active
#> 3361   2020 <NA>        G                 <NA>            67          Inactive
#> 3362   2020 <NA>        G                 <NA>            NA          Inactive
#> 3363   2020 <NA>        G                 <NA>            64            Active
#> 3364   2020 <NA>        G                 <NA>            68          Inactive
#> 3365   2020 <NA>        G                 <NA>            68          Inactive
#> 3366   2020 <NA>        G                 <NA>            66          Inactive
#> 3367   2020 <NA>        G                 <NA>            61          Inactive
#> 3368   2020 <NA>        G                   LG            NA          Inactive
#> 3369   2020 <NA>        G                 <NA>            69          Inactive
#> 3370   2020 <NA>        G                   LG            79            Active
#> 3371   2020 <NA>        G                 <NA>            63          Inactive
#> 3372   2020 <NA>        G                 <NA>            67          Inactive
#> 3373   2020 <NA>        G                 <NA>            67          Inactive
#> 3374   2020 <NA>        G                 <NA>            68          Inactive
#> 3375   2020 <NA>        G                 <NA>            68          Inactive
#> 3376   2020 <NA>      ILB                 RILB            NA          Inactive
#> 3377   2020 <NA>      ILB                 <NA>            96          Inactive
#> 3378   2020 <NA>      ILB                 <NA>            45          Inactive
#> 3379   2020 <NA>      ILB                 <NA>            NA          Inactive
#> 3380   2020 <NA>      ILB                 <NA>            41          Inactive
#> 3381   2020 <NA>      ILB                 <NA>            53          Inactive
#> 3382   2020 <NA>      ILB                 <NA>            NA          Inactive
#> 3383   2020 <NA>      ILB                 <NA>            41          Inactive
#> 3384   2020 <NA>      ILB                 <NA>            55          Inactive
#> 3385   2020 <NA>      ILB                 <NA>            58          Inactive
#> 3386   2020 <NA>      ILB                 <NA>            50          Inactive
#> 3387   2020 <NA>      ILB                 <NA>            52          Inactive
#> 3388   2020 <NA>      ILB                 <NA>            59          Inactive
#> 3389   2020 <NA>      ILB                 <NA>            NA          Inactive
#> 3390   2020 <NA>      ILB                 <NA>            52          Inactive
#> 3391   2020 <NA>      ILB                 <NA>            41          Inactive
#> 3392   2020 <NA>      ILB                 <NA>            46          Inactive
#> 3393   2020 <NA>      ILB                 <NA>            46          Inactive
#> 3394   2020 <NA>      ILB                 <NA>            NA          Inactive
#> 3395   2020 <NA>      ILB                 <NA>            53          Inactive
#> 3396   2020 <NA>      ILB                 <NA>            33          Inactive
#> 3397   2020 <NA>      ILB                 <NA>            99          Inactive
#> 3398   2020 <NA>      ILB                 <NA>            48          Inactive
#> 3399   2020 <NA>      ILB                 <NA>            44          Inactive
#> 3400   2020 <NA>      ILB                 <NA>            49          Inactive
#> 3401   2020 <NA>      ILB                 <NA>            51          Inactive
#> 3402   2020 <NA>      ILB                  MLB            NA          Inactive
#> 3403   2020 <NA>      ILB                 <NA>            60          Inactive
#> 3404   2020 <NA>      ILB                 <NA>            59          Inactive
#> 3405   2020 <NA>      ILB                 RILB            NA          Inactive
#> 3406   2020 <NA>      ILB                 <NA>            50          Inactive
#> 3407   2020 <NA>      ILB                 <NA>            46          Inactive
#> 3408   2020 <NA>      ILB                 <NA>            49          Inactive
#> 3409   2020 <NA>      ILB                 <NA>            46          Inactive
#> 3410   2020 <NA>      ILB                 <NA>            52          Inactive
#> 3411   2020 <NA>      ILB                 <NA>            59          Inactive
#> 3412   2020 <NA>      ILB                 LILB            NA          Inactive
#> 3413   2020 <NA>      ILB                 <NA>            48          Inactive
#> 3414   2020 <NA>      ILB                 <NA>            NA          Inactive
#> 3415   2020 <NA>      ILB                 <NA>            48          Inactive
#> 3416   2020 <NA>      ILB                 <NA>            44          Inactive
#> 3417   2020 <NA>      ILB                 <NA>            45          Inactive
#> 3418   2020 <NA>      ILB                 <NA>            43          Inactive
#> 3419   2020 <NA>      ILB                 <NA>            NA          Inactive
#> 3420   2020 <NA>      ILB                 <NA>            NA          Inactive
#> 3421   2020 <NA>      ILB                 <NA>            NA          Inactive
#> 3422   2020 <NA>      ILB                 WILL            NA          Inactive
#> 3423   2020 <NA>      ILB                 <NA>            55          Inactive
#> 3424   2020 <NA>        K                 <NA>            11            Active
#> 3425   2020 <NA>        K                 <NA>             6          Inactive
#> 3426   2020 <NA>        K                 <NA>             4            Active
#> 3427   2020 <NA>        K                 <NA>             5          Inactive
#> 3428   2020 <NA>        K                 <NA>             1          Inactive
#> 3429   2020 <NA>        K                 <NA>             9          Inactive
#> 3430   2020 <NA>        K                 <NA>             6            Active
#> 3431   2020 <NA>        K                 <NA>             9          Inactive
#> 3432   2020 <NA>        K                    K             4            Active
#> 3433   2020 <NA>        K                    K             7            Active
#> 3434   2020 <NA>        K                 <NA>             4          Inactive
#> 3435   2020 <NA>        K                 <NA>             3            Active
#> 3436   2020 <NA>        K                 <NA>             9          Inactive
#> 3437   2020 <NA>       LB                 <NA>            44          Inactive
#> 3438   2020 <NA>       LB                 <NA>            59   Injured Reserve
#> 3439   2020 <NA>       LB                 <NA>            52            Active
#> 3440   2020 <NA>       LB                 <NA>            50            Active
#> 3441   2020 <NA>       LB                 <NA>            55            Active
#> 3442   2020 <NA>       LB                 <NA>            57          Inactive
#> 3443   2020 <NA>       LB                 <NA>            54            Active
#> 3444   2020 <NA>       LB                 <NA>            51            Active
#> 3445   2020 <NA>       LB                 <NA>            59            Active
#> 3446   2020 <NA>       LB                 <NA>            50          Inactive
#> 3447   2020 <NA>       LB                 RILB            52            Active
#> 3448   2020 <NA>       LB                 <NA>            49   Injured Reserve
#> 3449   2020 <NA>       LB                 RILB            45            Active
#> 3450   2020 <NA>       LB                 <NA>            52            Active
#> 3451   2020 <NA>       LB                 <NA>            48          Inactive
#> 3452   2020 <NA>       LB                 <NA>            58            Active
#> 3453   2020 <NA>       LB                 <NA>            54            Active
#> 3454   2020 <NA>       LB                 <NA>            57            Active
#> 3455   2020 <NA>       LB                 <NA>            47          Inactive
#> 3456   2020 <NA>       LB                 <NA>            50            Active
#> 3457   2020 <NA>       LB                 <NA>            56   Injured Reserve
#> 3458   2020 <NA>       LB                  ILB            52            Active
#> 3459   2020 <NA>       LB                 <NA>            56            Active
#> 3460   2020 <NA>       LB                 <NA>            55          Inactive
#> 3461   2020 <NA>       LB                 <NA>            59            Active
#> 3462   2020 <NA>       LB                 <NA>            47          Inactive
#> 3463   2020 <NA>       LB                 <NA>            NA          Inactive
#> 3464   2020 <NA>       LB                  WLB            57            Active
#> 3465   2020 <NA>       LB                 <NA>            49            Active
#> 3466   2020 <NA>       LB                 <NA>            57            Active
#> 3467   2020 <NA>       LB                 <NA>            93   Injured Reserve
#> 3468   2020 <NA>       LB                 <NA>            50            Active
#> 3469   2020 <NA>       LB                 <NA>            47            Active
#> 3470   2020 <NA>       LB                 <NA>            91            Active
#> 3471   2020 <NA>       LB                 <NA>            55          Inactive
#> 3472   2020 <NA>       LB                 <NA>            53            Active
#> 3473   2020 <NA>       LB                 <NA>            40          Inactive
#> 3474   2020 <NA>       LB                 <NA>            42          Inactive
#> 3475   2020 <NA>       LB                   LB            45            Active
#> 3476   2020 <NA>       LB                 <NA>            91            Active
#> 3477   2020 <NA>       LB                 <NA>            91            Active
#> 3478   2020 <NA>       LB                  MLB            54            Active
#> 3479   2020 <NA>       LB                 <NA>            50          Inactive
#> 3480   2020 <NA>       LB                 <NA>            51            Active
#> 3481   2020 <NA>       LB                 <NA>            57            Active
#> 3482   2020 <NA>       LB                 <NA>            49          Inactive
#> 3483   2020 <NA>       LB                 <NA>            49          Inactive
#> 3484   2020 <NA>       LB                 <NA>            56            Active
#> 3485   2020 <NA>       LB                 <NA>            49            Active
#> 3486   2020 <NA>       LB                 <NA>            50            Active
#> 3487   2020 <NA>       LB                 <NA>            55          Inactive
#> 3488   2020 <NA>       LB                 <NA>            55            Active
#> 3489   2020 <NA>       LB                 <NA>            53            Active
#> 3490   2020 <NA>       LB                 <NA>            56            Active
#> 3491   2020 <NA>       LB                 <NA>            47            Active
#> 3492   2020 <NA>       LB                 <NA>            56            Active
#> 3493   2020 <NA>       LB                 <NA>            41            Active
#> 3494   2020 <NA>       LB                  LDE            94            Active
#> 3495   2020 <NA>       LB                 <NA>            47            Active
#> 3496   2020 <NA>       LB                 <NA>            53   Injured Reserve
#> 3497   2020 <NA>       LB                 <NA>            53          Inactive
#> 3498   2020 <NA>       LB                 <NA>            53            Active
#> 3499   2020 <NA>       LB                 <NA>            63          Inactive
#> 3500   2020 <NA>       LB                 <NA>            46          Inactive
#> 3501   2020 <NA>       LB                 <NA>            51            Active
#> 3502   2020 <NA>       LB                  OLB            52            Active
#> 3503   2020 <NA>       LB                   FS            NA          Inactive
#> 3504   2020 <NA>       LB                 <NA>            51            Active
#> 3505   2020 <NA>       LB                 <NA>            50   Injured Reserve
#> 3506   2020 <NA>       LB                 <NA>            57            Active
#> 3507   2020 <NA>       LB                   DT            52          Inactive
#> 3508   2020 <NA>       LB                 <NA>            45          Inactive
#> 3509   2020 <NA>       LB                 <NA>            35          Inactive
#> 3510   2020 <NA>       LB                 <NA>            55   Injured Reserve
#> 3511   2020 <NA>       LB                 <NA>            71          Inactive
#> 3512   2020 <NA>       LB                 <NA>            98            Active
#> 3513   2020 <NA>       LB                 <NA>            55          Inactive
#> 3514   2020 <NA>       LB                 <NA>            59            Active
#> 3515   2020 <NA>       LB                 <NA>            96            Active
#> 3516   2020 <NA>       LB                 <NA>            53          Inactive
#> 3517   2020 <NA>       LB                 <NA>            96            Active
#> 3518   2020 <NA>       LB                 <NA>            48          Inactive
#> 3519   2020 <NA>       LB                 <NA>            50          Inactive
#> 3520   2020 <NA>       LS                 <NA>            59            Active
#> 3521   2020 <NA>       LS                 <NA>            47          Inactive
#> 3522   2020 <NA>       LS                 <NA>            48          Inactive
#> 3523   2020 <NA>       LS                 <NA>            47            Active
#> 3524   2020 <NA>       LS                 <NA>            51            Active
#> 3525   2020 <NA>       LS                 <NA>            47            Active
#> 3526   2020 <NA>       LS                 <NA>            63          Inactive
#> 3527   2020 <NA>       LS                 <NA>            48          Inactive
#> 3528   2020 <NA>       LS                 <NA>            NA          Inactive
#> 3529   2020 <NA>       LS                 <NA>            53          Inactive
#> 3530   2020 <NA>       LS                 <NA>            NA          Inactive
#> 3531   2020 <NA>       LS                 <NA>            46          Inactive
#> 3532   2020 <NA>       NT                 <NA>            96          Inactive
#> 3533   2020 <NA>       NT                 <NA>            NA          Inactive
#> 3534   2020 <NA>       NT                 <NA>            79          Inactive
#> 3535   2020 <NA>       NT                 <NA>            62          Inactive
#> 3536   2020 <NA>       NT                 <NA>            99          Inactive
#> 3537   2020 <NA>       NT                   NT            NA          Inactive
#> 3538   2020 <NA>       NT                 <NA>            97          Inactive
#> 3539   2020 <NA>       NT                 <NA>            61          Inactive
#> 3540   2020 <NA>       NT                 <NA>            62          Inactive
#> 3541   2020 <NA>       NT                 <NA>            93          Inactive
#> 3542   2020 <NA>       NT                 <NA>            95          Inactive
#> 3543   2020 <NA>       NT                 <NA>            67          Inactive
#> 3544   2020 <NA>       NT                 <NA>            NA          Inactive
#> 3545   2020 <NA>       NT                 <NA>            70          Inactive
#> 3546   2020 <NA>       NT                 <NA>            63          Inactive
#> 3547   2020 <NA>       NT                 <NA>            96          Inactive
#> 3548   2020 <NA>       NT                 <NA>            60          Inactive
#> 3549   2020 <NA>       NT                 <NA>            NA          Inactive
#> 3550   2020 <NA>       NT                 <NA>            91          Inactive
#> 3551   2020 <NA>       NT                 <NA>            NA          Inactive
#> 3552   2020 <NA>       NT                 <NA>            92          Inactive
#> 3553   2020 <NA>       NT                 <NA>            68          Inactive
#> 3554   2020 <NA>       NT                 <NA>            67          Inactive
#> 3555   2020 <NA>       NT                 <NA>            62          Inactive
#> 3556   2020 <NA>       NT                   NT            92            Active
#> 3557   2020 <NA>       NT                 <NA>            71          Inactive
#> 3558   2020 <NA>       NT                   NT            77            Active
#> 3559   2020 <NA>       NT                 <NA>            66          Inactive
#> 3560   2020 <NA>       NT                 <NA>            64          Inactive
#> 3561   2020 <NA>       NT                 <NA>            96            Active
#> 3562   2020 <NA>       NT                 <NA>            NA          Inactive
#> 3563   2020 <NA>       NT                   NT            60          Inactive
#> 3564   2020 <NA>      OLB                 <NA>            49          Inactive
#> 3565   2020 <NA>      OLB                 <NA>            46          Inactive
#> 3566   2020 <NA>      OLB                 <NA>            48          Inactive
#> 3567   2020 <NA>      OLB                 <NA>            NA          Inactive
#> 3568   2020 <NA>      OLB                 <NA>            49          Inactive
#> 3569   2020 <NA>      OLB                 ROLB            NA          Inactive
#> 3570   2020 <NA>      OLB                 <NA>            53          Inactive
#> 3571   2020 <NA>      OLB                 <NA>            49          Inactive
#> 3572   2020 <NA>      OLB                 LOLB            NA          Inactive
#> 3573   2020 <NA>      OLB                 LOLB            NA          Inactive
#> 3574   2020 <NA>      OLB                 <NA>            59          Inactive
#> 3575   2020 <NA>      OLB                 <NA>            NA          Inactive
#> 3576   2020 <NA>      OLB                 <NA>            58          Inactive
#> 3577   2020 <NA>      OLB                 <NA>            40          Inactive
#> 3578   2020 <NA>      OLB                 RUSH            NA          Inactive
#> 3579   2020 <NA>      OLB                 <NA>            54          Inactive
#> 3580   2020 <NA>      OLB                 <NA>            59          Inactive
#> 3581   2020 <NA>      OLB                  WLB            NA          Inactive
#> 3582   2020 <NA>      OLB                 <NA>            NA          Inactive
#> 3583   2020 <NA>      OLB                 <NA>            59          Inactive
#> 3584   2020 <NA>      OLB                 <NA>            54          Inactive
#> 3585   2020 <NA>      OLB                 <NA>            58          Inactive
#> 3586   2020 <NA>      OLB                 <NA>            50          Inactive
#> 3587   2020 <NA>      OLB                 <NA>            49          Inactive
#> 3588   2020 <NA>      OLB                 WILL            NA          Inactive
#> 3589   2020 <NA>      OLB                 <NA>            52          Inactive
#> 3590   2020 <NA>      OLB                 <NA>            59          Inactive
#> 3591   2020 <NA>      OLB                 <NA>            NA          Inactive
#> 3592   2020 <NA>      OLB                 <NA>            51          Inactive
#> 3593   2020 <NA>      OLB                 <NA>            59          Inactive
#> 3594   2020 <NA>      OLB                 <NA>            62          Inactive
#> 3595   2020 <NA>      OLB                 <NA>            45          Inactive
#> 3596   2020 <NA>      OLB                 <NA>            49          Inactive
#> 3597   2020 <NA>      OLB                 <NA>            69          Inactive
#> 3598   2020 <NA>      OLB                 <NA>            46          Inactive
#> 3599   2020 <NA>      OLB                 <NA>            40          Inactive
#> 3600   2020 <NA>      OLB                 <NA>            51          Inactive
#> 3601   2020 <NA>      OLB                 <NA>            NA          Inactive
#> 3602   2020 <NA>      OLB                 <NA>            57          Inactive
#> 3603   2020 <NA>      OLB                  SAM            NA          Inactive
#> 3604   2020 <NA>      OLB                 <NA>            58          Inactive
#> 3605   2020 <NA>      OLB                 <NA>            47          Inactive
#> 3606   2020 <NA>      OLB                 <NA>            51          Inactive
#> 3607   2020 <NA>      OLB                 <NA>            NA          Inactive
#> 3608   2020 <NA>      OLB                 <NA>            69          Inactive
#> 3609   2020 <NA>      OLB                 <NA>            49          Inactive
#> 3610   2020 <NA>      OLB                 WILL            NA          Inactive
#> 3611   2020 <NA>      OLB                 <NA>            58          Inactive
#> 3612   2020 <NA>      OLB                 <NA>             6          Inactive
#> 3613   2020 <NA>      OLB                 <NA>            48          Inactive
#> 3614   2020 <NA>      OLB                 <NA>            46          Inactive
#> 3615   2020 <NA>      OLB                 <NA>            41          Inactive
#> 3616   2020 <NA>      OLB                 <NA>            96          Inactive
#> 3617   2020 <NA>      OLB                 <NA>            63          Inactive
#> 3618   2020 <NA>      OLB                 <NA>            59          Inactive
#> 3619   2020 <NA>      OLB                  SLB            NA          Inactive
#> 3620   2020 <NA>      OLB                 <NA>            50          Inactive
#> 3621   2020 <NA>      OLB                 <NA>            50          Inactive
#> 3622   2020 <NA>      OLB                 <NA>            48          Inactive
#> 3623   2020 <NA>      OLB                 <NA>            94          Inactive
#> 3624   2020 <NA>      OLB                 <NA>            90          Inactive
#> 3625   2020 <NA>      OLB                 <NA>            56          Inactive
#> 3626   2020 <NA>      OLB                 <NA>            79          Inactive
#> 3627   2020 <NA>      OLB                 <NA>            45          Inactive
#> 3628   2020 <NA>      OLB                 <NA>            48          Inactive
#> 3629   2020 <NA>      OLB                 <NA>            46          Inactive
#> 3630   2020 <NA>      OLB                 <NA>            57          Inactive
#> 3631   2020 <NA>      OLB                 LOLB            NA          Inactive
#> 3632   2020 <NA>      OLB                 <NA>            49          Inactive
#> 3633   2020 <NA>      OLB                 <NA>            50          Inactive
#> 3634   2020 <NA>      OLB                 <NA>            50          Inactive
#> 3635   2020 <NA>      OLB                 <NA>            49          Inactive
#> 3636   2020 <NA>      OLB                 <NA>            NA          Inactive
#> 3637   2020 <NA>      OLB                 <NA>            NA          Inactive
#> 3638   2020 <NA>      OLB                 <NA>            95          Inactive
#> 3639   2020 <NA>      OLB                  SLB            58          Inactive
#> 3640   2020 <NA>      OLB                 <NA>            43          Inactive
#> 3641   2020 <NA>      OLB                 <NA>            NA          Inactive
#> 3642   2020 <NA>      OLB                 <NA>            NA          Inactive
#> 3643   2020 <NA>      OLB                 <NA>            59          Inactive
#> 3644   2020 <NA>      OLB                 <NA>            NA          Inactive
#> 3645   2020 <NA>      OLB                  WLB            NA          Inactive
#> 3646   2020 <NA>      OLB                  WLB            NA          Inactive
#> 3647   2020 <NA>      OLB                 <NA>            58          Inactive
#> 3648   2020 <NA>      OLB                 <NA>            58          Inactive
#> 3649   2020 <NA>      OLB                 <NA>            50          Inactive
#> 3650   2020 <NA>      OLB                  SLB            NA          Inactive
#> 3651   2020 <NA>      OLB                 <NA>            NA          Inactive
#> 3652   2020 <NA>      OLB                 <NA>            45          Inactive
#> 3653   2020 <NA>      OLB                 <NA>            54          Inactive
#> 3654   2020 <NA>      OLB                 <NA>            57          Inactive
#> 3655   2020 <NA>      OLB                 <NA>            53          Inactive
#> 3656   2020 <NA>      OLB                 <NA>            25          Inactive
#> 3657   2020 <NA>      OLB                 <NA>            52          Inactive
#> 3658   2020 <NA>      OLB                 <NA>            43          Inactive
#> 3659   2020 <NA>       OT                 <NA>            71          Inactive
#> 3660   2020 <NA>       OT                 <NA>            72          Inactive
#> 3661   2020 <NA>       OT                 <NA>            63          Inactive
#> 3662   2020 <NA>       OT                 <NA>            63          Inactive
#> 3663   2020 <NA>       OT                   LT            NA          Inactive
#> 3664   2020 <NA>       OT                 <NA>            NA          Inactive
#> 3665   2020 <NA>       OT                 <NA>            77          Inactive
#> 3666   2020 <NA>       OT                 <NA>            77          Inactive
#> 3667   2020 <NA>       OT                 <NA>            NA          Inactive
#> 3668   2020 <NA>       OT                 <NA>            61          Inactive
#> 3669   2020 <NA>       OT                 <NA>            63          Inactive
#> 3670   2020 <NA>       OT                 <NA>            75          Inactive
#> 3671   2020 <NA>       OT                 <NA>            63          Inactive
#> 3672   2020 <NA>       OT                 <NA>            62          Inactive
#> 3673   2020 <NA>       OT                 <NA>            NA          Inactive
#> 3674   2020 <NA>       OT                   LT            NA          Inactive
#> 3675   2020 <NA>       OT                 <NA>            64          Inactive
#> 3676   2020 <NA>       OT                 <NA>            64          Inactive
#> 3677   2020 <NA>       OT                 <NA>            72          Inactive
#> 3678   2020 <NA>       OT                   LT            NA          Inactive
#> 3679   2020 <NA>       OT                 <NA>            75          Inactive
#> 3680   2020 <NA>       OT                 <NA>            75          Inactive
#> 3681   2020 <NA>       OT                 <NA>            79          Inactive
#> 3682   2020 <NA>       OT                 <NA>            72          Inactive
#> 3683   2020 <NA>       OT                 <NA>            NA          Inactive
#> 3684   2020 <NA>       OT                 <NA>            74          Inactive
#> 3685   2020 <NA>       OT                 <NA>            71          Inactive
#> 3686   2020 <NA>       OT                 <NA>            75          Inactive
#> 3687   2020 <NA>       OT                 <NA>            78          Inactive
#> 3688   2020 <NA>       OT                 <NA>            73          Inactive
#> 3689   2020 <NA>       OT                 <NA>            79          Inactive
#> 3690   2020 <NA>       OT                 <NA>            73          Inactive
#> 3691   2020 <NA>       OT                 <NA>            65          Inactive
#> 3692   2020 <NA>       OT                 <NA>            79          Inactive
#> 3693   2020 <NA>       OT                 <NA>            72          Inactive
#> 3694   2020 <NA>       OT                 <NA>            60          Inactive
#> 3695   2020 <NA>       OT                 <NA>            67          Inactive
#> 3696   2020 <NA>       OT                 <NA>            76          Inactive
#> 3697   2020 <NA>       OT                 <NA>            64          Inactive
#> 3698   2020 <NA>       OT                 <NA>            76          Inactive
#> 3699   2020 <NA>       OT                 <NA>            NA          Inactive
#> 3700   2020 <NA>       OT                 <NA>            62          Inactive
#> 3701   2020 <NA>       OT                   RG            NA          Inactive
#> 3702   2020 <NA>       OT                 <NA>            72          Inactive
#> 3703   2020 <NA>       OT                 <NA>            68          Inactive
#> 3704   2020 <NA>       OT                 <NA>            60          Inactive
#> 3705   2020 <NA>       OT                 <NA>            67          Inactive
#> 3706   2020 <NA>       OT                 <NA>            NA          Inactive
#> 3707   2020 <NA>       OT                   RT            NA          Inactive
#> 3708   2020 <NA>       OT                   RT            NA          Inactive
#> 3709   2020 <NA>       OT                 <NA>            61          Inactive
#> 3710   2020 <NA>       OT                 <NA>            60          Inactive
#> 3711   2020 <NA>       OT                 <NA>            73          Inactive
#> 3712   2020 <NA>       OT                 <NA>            NA          Inactive
#> 3713   2020 <NA>       OT                 <NA>            62          Inactive
#> 3714   2020 <NA>       OT                 <NA>            65          Inactive
#> 3715   2020 <NA>       OT                 <NA>            60          Inactive
#> 3716   2020 <NA>       OT                 <NA>            71          Inactive
#> 3717   2020 <NA>       OT                 <NA>            76          Inactive
#> 3718   2020 <NA>       OT                 <NA>            NA          Inactive
#> 3719   2020 <NA>       OT                   RT            NA          Inactive
#> 3720   2020 <NA>       OT                 <NA>            78          Inactive
#> 3721   2020 <NA>       OT                 <NA>            63          Inactive
#> 3722   2020 <NA>       OT                 <NA>            72          Inactive
#> 3723   2020 <NA>       OT                 <NA>            63          Inactive
#> 3724   2020 <NA>       OT                 <NA>            63          Inactive
#> 3725   2020 <NA>       OT                 <NA>            62          Inactive
#> 3726   2020 <NA>       OT                 <NA>            73          Inactive
#> 3727   2020 <NA>       OT                 <NA>            68          Inactive
#> 3728   2020 <NA>       OT                   RT            NA          Inactive
#> 3729   2020 <NA>        P                 <NA>             1          Inactive
#> 3730   2020 <NA>        P                 <NA>             3          Inactive
#> 3731   2020 <NA>        P                 <NA>             9          Inactive
#> 3732   2020 <NA>        P                 <NA>             2          Inactive
#> 3733   2020 <NA>        P                 <NA>            NA          Inactive
#> 3734   2020 <NA>        P                 <NA>             6            Active
#> 3735   2020 <NA>        P                 <NA>             1          Inactive
#> 3736   2020 <NA>        P                 <NA>             5            Active
#> 3737   2020 <NA>        P                 <NA>            NA          Inactive
#> 3738   2020 <NA>        P                 <NA>             9          Inactive
#> 3739   2020 <NA>        P                 <NA>             1          Inactive
#> 3740   2020 <NA>        P                 <NA>             7          Inactive
#> 3741   2020 <NA>        P                 <NA>             1   Injured Reserve
#> 3742   2020 <NA>        P                 <NA>             4          Inactive
#> 3743   2020 <NA>        P                 <NA>             3            Active
#> 3744   2020 <NA>        P                 <NA>             5            Active
#> 3745   2020 <NA>        P                 <NA>            NA          Inactive
#> 3746   2020 <NA>        P                 <NA>            NA          Inactive
#> 3747   2020 <NA>        P                 <NA>             2          Inactive
#> 3748   2020 <NA>       QB                 <NA>            NA          Inactive
#> 3749   2020 <NA>       QB                 <NA>            10          Inactive
#> 3750   2020 <NA>       QB                 <NA>             8          Inactive
#> 3751   2020 <NA>       QB                 <NA>            12            Active
#> 3752   2020 <NA>       QB                 <NA>             8            Active
#> 3753   2020 <NA>       QB                 <NA>            14   Injured Reserve
#> 3754   2020 <NA>       QB                 <NA>             2            Active
#> 3755   2020 <NA>       QB                   QB            36          Inactive
#> 3756   2020 <NA>       QB                   QB             9          Inactive
#> 3757   2020 <NA>       QB                 <NA>             2          Inactive
#> 3758   2020 <NA>       QB                 <NA>             9            Active
#> 3759   2020 <NA>       QB                 <NA>            NA          Inactive
#> 3760   2020 <NA>       QB                 <NA>             6          Inactive
#> 3761   2020 <NA>       QB                 <NA>             5          Inactive
#> 3762   2020 <NA>       QB                   QB             7          Inactive
#> 3763   2020 <NA>       QB                   QB            NA          Inactive
#> 3764   2020 <NA>       QB                   QB             3          Inactive
#> 3765   2020 <NA>       QB                 <NA>            48          Inactive
#> 3766   2020 <NA>       QB                 <NA>             9          Inactive
#> 3767   2020 <NA>       QB                 <NA>             2          Inactive
#> 3768   2020 <NA>       QB                 <NA>             6          Inactive
#> 3769   2020 <NA>       QB                 <NA>             3          Inactive
#> 3770   2020 <NA>       QB                 <NA>             3            Active
#> 3771   2020 <NA>       QB                 <NA>            10            Active
#> 3772   2020 <NA>       QB                 <NA>             8          Inactive
#> 3773   2020 <NA>       QB                 <NA>             5          Inactive
#> 3774   2020 <NA>       QB                 <NA>             8          Inactive
#> 3775   2020 <NA>       QB                   QB             6          Inactive
#> 3776   2020 <NA>       QB                 <NA>             6          Inactive
#> 3777   2020 <NA>       QB                 <NA>            18          Inactive
#> 3778   2020 <NA>       QB                   QB            14          Inactive
#> 3779   2020 <NA>       QB                 <NA>            66          Inactive
#> 3780   2020 <NA>       QB                 <NA>            NA          Inactive
#> 3781   2020 <NA>       QB                 <NA>             6            Active
#> 3782   2020 <NA>       QB                 <NA>             3          Inactive
#> 3783   2020 <NA>       QB                 <NA>             3            Active
#> 3784   2020 <NA>       QB                 <NA>            NA          Inactive
#> 3785   2020 <NA>       QB                 <NA>             6          Inactive
#> 3786   2020 <NA>       QB                 <NA>             3   Injured Reserve
#> 3787   2020 <NA>       QB                 <NA>             8          Inactive
#> 3788   2020 <NA>       QB                   QB            NA          Inactive
#> 3789   2020 <NA>       QB                 <NA>            12            Active
#> 3790   2020 <NA>       QB                 <NA>             9          Inactive
#> 3791   2020 <NA>       QB                 <NA>             8            Active
#> 3792   2020 <NA>       QB                 <NA>            NA          Inactive
#> 3793   2020 <NA>       QB                   QB             5          Inactive
#> 3794   2020 <NA>       QB                   QB             9          Inactive
#> 3795   2020 <NA>       RB                 <NA>            40          Inactive
#> 3796   2020 <NA>       RB                 <NA>            35          Inactive
#> 3797   2020 <NA>       RB                   RB            39          Inactive
#> 3798   2020 <NA>       RB                   RB            NA          Inactive
#> 3799   2020 <NA>       RB                 <NA>            34          Inactive
#> 3800   2020 <NA>       RB                   RB            NA          Inactive
#> 3801   2020 <NA>       RB                 <NA>            22            Active
#> 3802   2020 <NA>       RB                 <NA>            41          Inactive
#> 3803   2020 <NA>       RB                 <NA>            34            Active
#> 3804   2020 <NA>       RB                   RB            34          Inactive
#> 3805   2020 <NA>       RB                 <NA>            36          Inactive
#> 3806   2020 <NA>       RB                 <NA>            22          Inactive
#> 3807   2020 <NA>       RB                   RB            25          Inactive
#> 3808   2020 <NA>       RB                   RB            39          Inactive
#> 3809   2020 <NA>       RB                 <NA>            44          Inactive
#> 3810   2020 <NA>       RB                 <NA>            29          Inactive
#> 3811   2020 <NA>       RB                   RB            27          Inactive
#> 3812   2020 <NA>       RB                 <NA>            34   Injured Reserve
#> 3813   2020 <NA>       RB                 <NA>            43          Inactive
#> 3814   2020 <NA>       RB                 <NA>            33          Inactive
#> 3815   2020 <NA>       RB                 <NA>            32          Inactive
#> 3816   2020 <NA>       RB                   RB            31          Inactive
#> 3817   2020 <NA>       RB                 <NA>            41          Inactive
#> 3818   2020 <NA>       RB                 <NA>            31            Active
#> 3819   2020 <NA>       RB                 <NA>            NA          Inactive
#> 3820   2020 <NA>       RB                   RB            48          Inactive
#> 3821   2020 <NA>       RB                 <NA>            37          Inactive
#> 3822   2020 <NA>       RB                 <NA>            38            Active
#> 3823   2020 <NA>       RB                   RB            36          Inactive
#> 3824   2020 <NA>       RB                 <NA>            NA          Inactive
#> 3825   2020 <NA>       RB                 <NA>            34   Injured Reserve
#> 3826   2020 <NA>       RB                 <NA>            36            Active
#> 3827   2020 <NA>       RB                   RB            NA          Inactive
#> 3828   2020 <NA>       RB                 <NA>            28            Active
#> 3829   2020 <NA>       RB                 <NA>            32          Inactive
#> 3830   2020 <NA>       RB                   RB            NA          Inactive
#> 3831   2020 <NA>       RB                   RB            24            Active
#> 3832   2020 <NA>       RB                 <NA>            40          Inactive
#> 3833   2020 <NA>       RB                 <NA>            29            Active
#> 3834   2020 <NA>       RB                 <NA>            37            Active
#> 3835   2020 <NA>       RB                   RB            22            Active
#> 3836   2020 <NA>       RB                 <NA>            38          Inactive
#> 3837   2020 <NA>       RB                   RB            34          Inactive
#> 3838   2020 <NA>       RB                 <NA>            34          Inactive
#> 3839   2020 <NA>       RB                   RB            40          Inactive
#> 3840   2020 <NA>       RB                 <NA>            38          Inactive
#> 3841   2020 <NA>       RB                   RB             1          Inactive
#> 3842   2020 <NA>       RB                 <NA>            22          Inactive
#> 3843   2020 <NA>       RB                   RB            35          Inactive
#> 3844   2020 <NA>       RB                 <NA>            26            Active
#> 3845   2020 <NA>       RB                 <NA>            33            Active
#> 3846   2020 <NA>       RB                 <NA>            34          Inactive
#> 3847   2020 <NA>       RB                 <NA>            48          Inactive
#> 3848   2020 <NA>       RB                 <NA>            34            Active
#> 3849   2020 <NA>       RB                 <NA>            41          Inactive
#> 3850   2020 <NA>       RB                 <NA>            NA          Inactive
#> 3851   2020 <NA>       RB                   RB            30          Inactive
#> 3852   2020 <NA>       RB                 <NA>            33            Active
#> 3853   2020 <NA>       RB                   RB            39          Inactive
#> 3854   2020 <NA>       RB                 <NA>            30          Inactive
#> 3855   2020 <NA>       RB                 <NA>            25          Inactive
#> 3856   2020 <NA>       RB                   RB            39          Inactive
#> 3857   2020 <NA>       RB                 <NA>            46          Inactive
#> 3858   2020 <NA>       RB                 <NA>            36          Inactive
#> 3859   2020 <NA>       RB                 <NA>            28            Active
#> 3860   2020 <NA>       RB                 <NA>            42          Inactive
#> 3861   2020 <NA>       RB                 <NA>            35          Inactive
#> 3862   2020 <NA>       RB                   RB            34          Inactive
#> 3863   2020 <NA>       RB                 <NA>            23          Inactive
#> 3864   2020 <NA>       RB                 <NA>            30          Inactive
#> 3865   2020 <NA>       RB                 <NA>            34            Active
#> 3866   2020 <NA>       RB                 <NA>            45          Inactive
#> 3867   2020 <NA>       RB                 <NA>            23          Inactive
#> 3868   2020 <NA>       RB                 <NA>            34          Inactive
#> 3869   2020 <NA>       RB                 <NA>            41          Inactive
#> 3870   2020 <NA>       RB                   RB            24          Inactive
#> 3871   2020 <NA>       RB                 <NA>            NA          Inactive
#> 3872   2020 <NA>       RB                 <NA>            43            Active
#> 3873   2020 <NA>       RB                 <NA>            27          Inactive
#> 3874   2020 <NA>       RB                 <NA>            42          Inactive
#> 3875   2020 <NA>       RB                 <NA>            22            Active
#> 3876   2020 <NA>       RB                 <NA>            22          Inactive
#> 3877   2020 <NA>       RB                   RB            29            Active
#> 3878   2020 <NA>       RB                 <NA>            43   Injured Reserve
#> 3879   2020 <NA>       RB                 <NA>            38          Inactive
#> 3880   2020 <NA>       RB                 <NA>            35            Active
#> 3881   2020 <NA>       RB                 <NA>            NA          Inactive
#> 3882   2020 <NA>       RB                   RB            43          Inactive
#> 3883   2020 <NA>       RB                   RB            35          Inactive
#> 3884   2020 <NA>       RB                 <NA>            35   Injured Reserve
#> 3885   2020 <NA>       RB                 <NA>            23   Injured Reserve
#> 3886   2020 <NA>       RB                   RB            NA          Inactive
#> 3887   2020 <NA>       RB                 <NA>            38          Inactive
#> 3888   2020 <NA>       RB                 <NA>            38          Inactive
#> 3889   2020 <NA>       RB                 <NA>            39          Inactive
#> 3890   2020 <NA>       RB                   RB            49          Inactive
#> 3891   2020 <NA>       RB                 <NA>            25            Active
#> 3892   2020 <NA>       RB                   RB            NA          Inactive
#> 3893   2020 <NA>       RB                   RB            NA          Inactive
#> 3894   2020 <NA>       RB                 <NA>            22          Inactive
#> 3895   2020 <NA>       RB                 <NA>            47          Inactive
#> 3896   2020 <NA>       RB                 <NA>            38          Inactive
#> 3897   2020 <NA>       RB                 <NA>            NA          Inactive
#> 3898   2020 <NA>       RB                 <NA>            34          Inactive
#> 3899   2020 <NA>       RB                 <NA>            22          Inactive
#> 3900   2020 <NA>       RB                 <NA>            38          Inactive
#> 3901   2020 <NA>       RB                 <NA>            36          Inactive
#> 3902   2020 <NA>       RB                 <NA>            NA          Inactive
#> 3903   2020 <NA>       RB                 <NA>            24          Inactive
#> 3904   2020 <NA>       RB                 <NA>            29            Active
#> 3905   2020 <NA>       RB                   RB            NA          Inactive
#> 3906   2020 <NA>       RB                 <NA>            36          Inactive
#> 3907   2020 <NA>       RB                 <NA>            35          Inactive
#> 3908   2020 <NA>       RB                 <NA>            37            Active
#> 3909   2020 <NA>       RB                 <NA>            44          Inactive
#> 3910   2020 <NA>       RB                 <NA>            32          Inactive
#> 3911   2020 <NA>       RB                 <NA>            48          Inactive
#> 3912   2020 <NA>       RB                   RB            NA          Inactive
#> 3913   2020 <NA>       RB                 <NA>            37          Inactive
#> 3914   2020 <NA>       RB                 <NA>            38            Active
#> 3915   2020 <NA>       RB                 <NA>            35          Inactive
#> 3916   2020 <NA>       RB                 <NA>            34          Inactive
#> 3917   2020 <NA>       RB                 <NA>            37          Inactive
#> 3918   2020 <NA>       RB                 <NA>            22            Active
#> 3919   2020 <NA>       RB                 <NA>            89          Inactive
#> 3920   2020 <NA>       RB                 <NA>            41          Inactive
#> 3921   2020 <NA>       RB                   RB            35          Inactive
#> 3922   2020 <NA>       RB                   RB            41          Inactive
#> 3923   2020 <NA>       RB                 <NA>            43          Inactive
#> 3924   2020 <NA>       RB                 <NA>            45          Inactive
#> 3925   2020 <NA>       RB                   RB            NA          Inactive
#> 3926   2020 <NA>       RB                   RB            22            Active
#> 3927   2020 <NA>       RB                 <NA>            38          Inactive
#> 3928   2020 <NA>       RB                 <NA>            39          Inactive
#> 3929   2020 <NA>       RB                   RB            NA          Inactive
#> 3930   2020 <NA>       RB                 <NA>            26          Inactive
#> 3931   2020 <NA>       RB                 <NA>            39          Inactive
#> 3932   2020 <NA>       RB                 <NA>            20          Inactive
#> 3933   2020 <NA>       RB                 <NA>            40          Inactive
#> 3934   2020 <NA>       RB                 <NA>            NA          Inactive
#> 3935   2020 <NA>       RB                 <NA>            27          Inactive
#> 3936   2020 <NA>       RB                   RB            56          Inactive
#> 3937   2020 <NA>       RB                   RB            NA          Inactive
#> 3938   2020 <NA>       RB                 <NA>            43          Inactive
#> 3939   2020 <NA>       RB                 <NA>            22   Injured Reserve
#> 3940   2020 <NA>        S                 <NA>            35          Inactive
#> 3941   2020 <NA>        S                 <NA>            35          Inactive
#> 3942   2020 <NA>        S                 <NA>            NA          Inactive
#> 3943   2020 <NA>        S                 <NA>            22          Inactive
#> 3944   2020 <NA>       SS                 <NA>            47          Inactive
#> 3945   2020 <NA>       SS                   SS            38            Active
#> 3946   2020 <NA>       SS                 <NA>            35          Inactive
#> 3947   2020 <NA>       SS                 <NA>            37          Inactive
#> 3948   2020 <NA>       SS                 <NA>            36          Inactive
#> 3949   2020 <NA>       SS                   SS            23            Active
#> 3950   2020 <NA>       SS                   SS            27            Active
#> 3951   2020 <NA>       SS                 <NA>            NA          Inactive
#> 3952   2020 <NA>       SS                 <NA>            39          Inactive
#> 3953   2020 <NA>       SS                 <NA>            33          Inactive
#> 3954   2020 <NA>       SS                 <NA>            29          Inactive
#> 3955   2020 <NA>       SS                 <NA>            NA          Inactive
#> 3956   2020 <NA>       SS                 <NA>            28   Injured Reserve
#> 3957   2020 <NA>       SS                 <NA>            40   Injured Reserve
#> 3958   2020 <NA>       SS                 <NA>            37          Inactive
#> 3959   2020 <NA>       SS                 <NA>            21          Inactive
#> 3960   2020 <NA>       SS                 <NA>            35          Inactive
#> 3961   2020 <NA>       SS                 <NA>            NA          Inactive
#> 3962   2020 <NA>       SS                   SS            NA          Inactive
#> 3963   2020 <NA>       SS                 <NA>            42            Active
#> 3964   2020 <NA>       SS                   SS            NA          Inactive
#> 3965   2020 <NA>       SS                 <NA>            36            Active
#> 3966   2020 <NA>       SS                   SS            NA          Inactive
#> 3967   2020 <NA>       SS                 <NA>            42          Inactive
#> 3968   2020 <NA>       SS                 <NA>            43          Inactive
#> 3969   2020 <NA>       SS                 <NA>            32          Inactive
#> 3970   2020 <NA>       SS                 <NA>            45          Inactive
#> 3971   2020 <NA>       SS                 <NA>            30          Inactive
#> 3972   2020 <NA>       SS                 <NA>            47          Inactive
#> 3973   2020 <NA>       SS                 <NA>            NA          Inactive
#> 3974   2020 <NA>       SS                 <NA>            20            Active
#> 3975   2020 <NA>       SS                 <NA>            35            Active
#> 3976   2020 <NA>       SS                 <NA>            14          Inactive
#> 3977   2020 <NA>       SS                 <NA>            38          Inactive
#> 3978   2020 <NA>       SS                   SS            NA          Inactive
#> 3979   2020 <NA>       SS                 <NA>            NA          Inactive
#> 3980   2020 <NA>       SS                 <NA>            NA          Inactive
#> 3981   2020 <NA>       SS                 <NA>            46          Inactive
#> 3982   2020 <NA>       SS                   SS            25            Active
#> 3983   2020 <NA>       SS                 <NA>            30          Inactive
#> 3984   2020 <NA>       SS                 <NA>            23          Inactive
#> 3985   2020 <NA>       SS                   FS            NA          Inactive
#> 3986   2020 <NA>       SS                 <NA>            38            Active
#> 3987   2020 <NA>       SS                   SS            42            Active
#> 3988   2020 <NA>       SS                 <NA>            32            Active
#> 3989   2020 <NA>       SS                 <NA>            37          Inactive
#> 3990   2020 <NA>       SS                 <NA>            37          Inactive
#> 3991   2020 <NA>       SS                 <NA>            49          Inactive
#> 3992   2020 <NA>       SS                 <NA>            39          Inactive
#> 3993   2020 <NA>       SS                 <NA>            47          Inactive
#> 3994   2020 <NA>       SS                 <NA>            39          Inactive
#> 3995   2020 <NA>       SS                 <NA>            32          Inactive
#> 3996   2020 <NA>       SS                 <NA>            NA          Inactive
#> 3997   2020 <NA>       SS                 <NA>            35            Active
#> 3998   2020 <NA>       SS                 <NA>            39          Inactive
#> 3999   2020 <NA>       SS                 <NA>            31          Inactive
#>                        full_name     first_name         last_name birth_date
#> 1                     Mason Cole          Mason              Cole 1996-03-28
#> 2                Lamont Gaillard         Lamont          Gaillard 1996-02-08
#> 3                   Byron Murphy          Byron            Murphy 1998-01-18
#> 4               Prince Amukamara         Prince         Amukamara 1989-06-06
#> 5                 Jace Whittaker           Jace         Whittaker 1995-07-16
#> 6                 Kevin Peterson          Kevin          Peterson 1994-03-22
#> 7               Johnathan Joseph      Johnathan            Joseph 1984-04-16
#> 8                  Robert Alford         Robert            Alford 1988-10-31
#> 9               Patrick Peterson        Patrick          Peterson 1990-07-11
#> 10               Dre Kirkpatrick            Dre       Kirkpatrick 1989-10-26
#> 11                  Chris Miller          Chris            Miller 1997-10-06
#> 12                Picasso Nelson        Picasso            Nelson 1996-04-15
#> 13                Jalen Thompson          Jalen          Thompson 1998-07-18
#> 14            Charles Washington        Charles        Washington 1993-03-10
#> 15                   Chris Banjo          Chris             Banjo 1990-02-26
#> 16                Shareef Miller        Shareef            Miller 1997-03-14
#> 17                 Michael Dogbe        Michael             Dogbe 1996-05-05
#> 18                   Stacy McGee          Stacy             McGee 1990-01-17
#> 19                    Josh Mauro           Josh             Mauro 1991-02-17
#> 20                   David Parry          David             Parry 1992-03-07
#> 21               Angelo Blackson         Angelo          Blackson 1992-11-14
#> 22                     Leki Fotu           Leki              Fotu 1998-08-23
#> 23                    Zach Allen           Zach             Allen 1997-08-20
#> 24               Jordan Phillips         Jordan          Phillips 1992-09-21
#> 25                  P.J. Johnson           P.J.           Johnson 1996-06-14
#> 26                Kentrell Brice       Kentrell             Brice 1994-08-11
#> 27                   J.R. Sweezy           J.R.            Sweezy 1989-04-08
#> 28                 Deion Calhoun          Deion           Calhoun 1996-02-20
#> 29                   Sean Harlow           Sean            Harlow 1995-03-28
#> 30                   Justin Pugh         Justin              Pugh 1990-08-15
#> 31                   Koda Martin           Koda            Martin 1995-08-21
#> 32                    Max Garcia            Max            Garcia 1991-11-09
#> 33                   Mike Nugent           Mike            Nugent 1982-03-02
#> 34                 Zane Gonzalez           Zane          Gonzalez 1995-05-07
#> 35                   Brett Maher          Brett             Maher 1989-11-21
#> 36                Dennis Gardeck         Dennis           Gardeck 1994-08-09
#> 37                 Devon Kennard          Devon           Kennard 1991-06-24
#> 38              Stephone Anthony       Stephone           Anthony 1992-07-28
#> 39                Ezekiel Turner        Ezekiel            Turner 1996-06-09
#> 40                   Kylie Fitts          Kylie             Fitts 1994-10-11
#> 41                  Jordan Hicks         Jordan             Hicks 1992-06-27
#> 42                Haason Reddick         Haason           Reddick 1994-09-22
#> 43                Tanner Vallejo         Tanner           Vallejo 1994-12-16
#> 44                 Markus Golden         Markus            Golden 1991-03-13
#> 45                  Jamal Carter          Jamal            Carter 1994-04-12
#> 46            De'Vondre Campbell      De'Vondre          Campbell 1993-07-01
#> 47                Chandler Jones       Chandler             Jones 1990-02-27
#> 48                 Reggie Walker         Reggie            Walker 1996-04-22
#> 49                 Isaiah Irving         Isaiah            Irving 1994-06-09
#> 50                Terrance Smith       Terrance             Smith 1993-05-03
#> 51                   Evan Weaver           Evan            Weaver 1998-08-11
#> 52                Isaiah Simmons         Isaiah           Simmons 1998-07-26
#> 53                  Aaron Brewer          Aaron            Brewer 1990-07-05
#> 54                  Corey Peters          Corey            Peters 1988-06-08
#> 55              Rashard Lawrence        Rashard          Lawrence 1998-08-27
#> 56                   Domata Peko         Domata              Peko 1984-11-27
#> 57                      Andy Lee           Andy               Lee 1982-08-11
#> 58                  Kyler Murray          Kyler            Murray 1997-08-07
#> 59               Chris Streveler          Chris         Streveler 1995-01-06
#> 60                 Brett Hundley          Brett           Hundley 1993-06-15
#> 61                  Kenyan Drake         Kenyan             Drake 1994-01-26
#> 62                 Chase Edmonds          Chase           Edmonds 1996-04-13
#> 63             Khalfani Muhammad       Khalfani          Muhammad 1994-09-26
#> 64                  Eno Benjamin            Eno          Benjamin 1999-04-13
#> 65                   D.J. Foster           D.J.            Foster 1993-11-22
#> 66                 Jonathan Ward       Jonathan              Ward 1997-09-30
#> 67                     Josh Shaw           Josh              Shaw 1992-03-27
#> 68              Deionte Thompson        Deionte          Thompson 1997-02-11
#> 69                   Budda Baker          Budda             Baker 1996-01-10
#> 70                    Josh Jones           Josh             Jones 1997-06-22
#> 71                Kelvin Beachum         Kelvin           Beachum 1989-06-08
#> 72                  Joshua Miles         Joshua             Miles 1996-01-04
#> 73                 Justin Murray         Justin            Murray 1993-04-19
#> 74                Marcus Gilbert         Marcus           Gilbert 1988-02-15
#> 75                D.J. Humphries           D.J.         Humphries 1993-12-28
#> 76               Darrell Daniels        Darrell           Daniels 1994-11-22
#> 77                   Ian Bunting            Ian           Bunting 1996-02-10
#> 78                  Seth DeValve           Seth           DeValve 1993-01-29
#> 79                Justin Johnson         Justin           Johnson 1996-11-08
#> 80                 Maxx Williams           Maxx          Williams 1994-04-12
#> 81                    Dan Arnold            Dan            Arnold 1995-03-15
#> 82                Krishawn Hogan       Krishawn             Hogan 1995-05-12
#> 83               KeeSean Johnson        KeeSean           Johnson 1996-10-09
#> 84                 Isaac Whitney          Isaac           Whitney 1994-06-22
#> 85                   Jaron Brown          Jaron             Brown 1990-01-08
#> 86                 Andy Isabella           Andy          Isabella 1996-11-18
#> 87               DeAndre Hopkins        DeAndre           Hopkins 1992-06-06
#> 88               A.J. Richardson           A.J.        Richardson 1995-06-02
#> 89                     JoJo Ward           JoJo              Ward 1997-12-09
#> 90                  Rico Gafford           Rico           Gafford 1996-05-23
#> 91              Larry Fitzgerald          Larry        Fitzgerald 1983-08-31
#> 92                Christian Kirk      Christian              Kirk 1996-11-18
#> 93               Trent Sherfield          Trent         Sherfield 1996-02-25
#> 94                     Alex Mack           Alex              Mack 1985-11-19
#> 95                 Willie Wright         Willie            Wright 1996-02-25
#> 96                 Justin McCray         Justin            McCray 1992-05-31
#> 97                Delrick Abrams        Delrick            Abrams 1997-04-06
#> 98              Darqueze Dennard       Darqueze           Dennard 1991-10-10
#> 99               Sharrod Neasman        Sharrod           Neasman 1991-10-14
#> 100                 A.J. Terrell           A.J.           Terrell 1998-09-23
#> 101                Isaiah Oliver         Isaiah            Oliver 1996-09-30
#> 102                   Tyler Hall          Tyler              Hall 1998-10-31
#> 103            Kendall Sheffield        Kendall         Sheffield 1996-05-30
#> 104                Ricardo Allen        Ricardo             Allen 1991-12-18
#> 105            Blidi Wreh-Wilson          Blidi       Wreh-Wilson 1989-12-05
#> 106             Chris Williamson          Chris        Williamson 1997-05-19
#> 107              Jaylinn Hawkins        Jaylinn           Hawkins 1997-08-25
#> 108                   Keanu Neal          Keanu              Neal 1995-07-26
#> 109                 Steven Means         Steven             Means 1990-09-16
#> 110                 Dante Fowler          Dante            Fowler 1994-08-03
#> 111         Jacob Tuioti-Mariner          Jacob    Tuioti-Mariner 1996-07-25
#> 112                 Allen Bailey          Allen            Bailey 1989-03-25
#> 113                Deadrin Senat        Deadrin             Senat 1994-07-22
#> 114                Chris Slayton          Chris           Slayton 1996-08-01
#> 115                Grady Jarrett          Grady           Jarrett 1993-04-28
#> 116                John Cominsky           John          Cominsky 1995-11-22
#> 117               Tyeler Davison         Tyeler           Davison 1992-09-03
#> 118              Marlon Davidson         Marlon          Davidson 1998-05-11
#> 119                  Keith Smith          Keith             Smith 1992-04-08
#> 120              James Carpenter          James         Carpenter 1989-03-22
#> 121               Willie Beavers         Willie           Beavers 1993-10-02
#> 122                Matt Hennessy           Matt          Hennessy 1997-11-17
#> 123              Chris Lindstrom          Chris         Lindstrom 1997-02-28
#> 124                 Younghoe Koo       Younghoe               Koo 1994-08-03
#> 125                  Elliott Fry        Elliott               Fry 1994-12-12
#> 126               LaRoy Reynolds          LaRoy          Reynolds 1990-11-03
#> 127                 Mykal Walker          Mykal            Walker 1997-08-28
#> 128                  Deion Jones          Deion             Jones 1994-11-04
#> 129              Pita Taumoepenu           Pita        Taumoepenu 1994-03-09
#> 130               Charles Harris        Charles            Harris 1995-03-06
#> 131                 Jake Carlock           Jake           Carlock 1996-10-02
#> 132              Edmond Robinson         Edmond          Robinson 1992-02-23
#> 133             Foyesade Oluokun       Foyesade           Oluokun 1995-08-02
#> 134                  Josh Harris           Josh            Harris 1989-04-27
#> 135          Sterling Hofrichter       Sterling        Hofrichter 1996-12-05
#> 136                    Matt Ryan           Matt              Ryan 1985-05-17
#> 137                 Kurt Benkert           Kurt           Benkert 1995-07-17
#> 138                  Matt Schaub           Matt            Schaub 1981-06-25
#> 139            Tony Brooks-James           Tony      Brooks-James 1994-12-06
#> 140                  Todd Gurley           Todd            Gurley 1994-08-03
#> 141                    Ito Smith            Ito             Smith 1995-09-11
#> 142                   Brian Hill          Brian              Hill 1995-11-09
#> 143               Qadree Ollison         Qadree           Ollison 1996-09-08
#> 144               Damontae Kazee       Damontae             Kazee 1993-06-05
#> 145                   T.J. Green           T.J.             Green 1995-03-15
#> 146                  J.J. Wilcox           J.J.            Wilcox 1991-02-14
#> 147                    Matt Gono           Matt              Gono 1996-05-10
#> 148                Jake Matthews           Jake          Matthews 1992-02-11
#> 149                  John Wetzel           John            Wetzel 1991-07-18
#> 150                 Kaleb McGary          Kaleb            McGary 1995-02-22
#> 151                 Luke Stocker           Luke           Stocker 1988-07-17
#> 152                 Hayden Hurst         Hayden             Hurst 1993-08-24
#> 153                Jaeden Graham         Jaeden            Graham 1995-10-10
#> 154                Calvin Ridley         Calvin            Ridley 1994-12-20
#> 155            Olamide Zaccheaus        Olamide         Zaccheaus 1997-07-23
#> 156                  Greg Dortch           Greg            Dortch 1998-05-29
#> 157                  Juwan Green          Juwan             Green 1998-07-01
#> 158                  Julio Jones          Julio             Jones 1989-02-08
#> 159                Chris Rowland          Chris           Rowland 1997-12-19
#> 160              Christian Blake      Christian             Blake 1996-06-08
#> 161                 Russell Gage        Russell              Gage 1996-01-22
#> 162             Laquon Treadwell         Laquon         Treadwell 1995-06-14
#> 163               Brandon Powell        Brandon            Powell 1995-09-12
#> 164                   Devin Gray          Devin              Gray 1995-06-15
#> 165                   Greg Mancz           Greg             Mancz 1992-04-23
#> 166               Patrick Mekari        Patrick            Mekari 1997-08-13
#> 167                   Matt Skura           Matt             Skura 1993-02-17
#> 168       Trystan Colon-Castillo        Trystan    Colon-Castillo 1998-03-23
#> 169                Marcus Peters         Marcus            Peters 1993-01-09
#> 170                 Pierre Desir         Pierre             Desir 1990-09-08
#> 171                  Tavon Young          Tavon             Young 1994-03-14
#> 172                  Jimmy Smith          Jimmy             Smith 1988-07-26
#> 173                Khalil Dorsey         Khalil            Dorsey 1998-03-31
#> 174                Iman Marshall           Iman          Marshall 1997-02-27
#> 175              Marlon Humphrey         Marlon          Humphrey 1996-07-08
#> 176              Anthony Averett        Anthony           Averett 1994-11-30
#> 177              Davontae Harris       Davontae            Harris 1995-01-21
#> 178                 Chris Westry          Chris            Westry 1997-07-10
#> 179                Nigel Warrior          Nigel           Warrior 1997-12-14
#> 180                  Nate Brooks           Nate            Brooks 1996-09-05
#> 181                Jayron Kearse         Jayron            Kearse 1994-02-11
#> 182               DeShon Elliott         DeShon           Elliott 1997-04-21
#> 183                   Jihad Ward          Jihad              Ward 1994-05-11
#> 184              Chauncey Rivers       Chauncey            Rivers 1997-06-12
#> 185              Yannick Ngakoue        Yannick           Ngakoue 1995-03-31
#> 186                  Derek Wolfe          Derek             Wolfe 1990-02-24
#> 187             Justin Madubuike         Justin         Madubuike 1997-11-17
#> 188               Aaron Crawford          Aaron          Crawford 1997-11-04
#> 189               Braxton Hoyett        Braxton            Hoyett 1996-02-05
#> 190         Broderick Washington      Broderick        Washington 1996-12-04
#> 191              Calais Campbell         Calais          Campbell 1986-09-01
#> 192                 Kalil Morris          Kalil            Morris 1995-10-22
#> 193                Tommy Bohanon          Tommy           Bohanon 1990-09-10
#> 194               Patrick Ricard        Patrick            Ricard 1994-05-27
#> 195             Marcus Gilchrist         Marcus         Gilchrist 1988-12-08
#> 196                   Ben Powers            Ben            Powers 1996-10-29
#> 197                 C.J. Toogood           C.J.           Toogood 1997-03-29
#> 198                 Ben Bredeson            Ben          Bredeson 1998-02-20
#> 199               Parker Ehinger         Parker           Ehinger 1992-12-30
#> 200                  D.J. Fluker           D.J.            Fluker 1991-03-13
#> 201                Tyre Phillips           Tyre          Phillips 1997-01-29
#> 202              Bradley Bozeman        Bradley           Bozeman 1994-11-24
#> 203                Justin Tucker         Justin            Tucker 1989-11-21
#> 204                  Otaro Alaka          Otaro             Alaka 1996-05-18
#> 205               Kristian Welch       Kristian             Welch 1998-05-24
#> 206               Pernell McPhee        Pernell            McPhee 1988-12-17
#> 207                Patrick Queen        Patrick             Queen 1999-08-13
#> 208                 Aaron Adeoye          Aaron            Adeoye 1993-08-26
#> 209              Jaylon Ferguson         Jaylon          Ferguson 1995-12-14
#> 210                  Tyus Bowser           Tyus            Bowser 1995-05-23
#> 211               Malik Harrison          Malik          Harrison 1998-03-05
#> 212               James Crawford          James          Crawford 1994-12-02
#> 213                    L.J. Fort           L.J.              Fort 1990-01-03
#> 214                   Matt Judon           Matt             Judon 1992-08-15
#> 215                  Chris Board          Chris             Board 1995-07-23
#> 216                   Nick Moore           Nick             Moore 1992-12-09
#> 217                   Morgan Cox         Morgan               Cox 1986-04-26
#> 218             Brandon Williams        Brandon          Williams 1989-02-21
#> 219                 Justin Ellis         Justin             Ellis 1990-12-27
#> 220              Johnny Townsend         Johnny          Townsend 1995-02-14
#> 221                     Sam Koch            Sam              Koch 1982-08-13
#> 222                Tyler Huntley          Tyler           Huntley 1998-02-03
#> 223                Lamar Jackson          Lamar           Jackson 1997-01-07
#> 224               Robert Griffin         Robert           Griffin 1990-02-12
#> 225               Trace McSorley          Trace          McSorley 1995-08-23
#> 226                  Mark Ingram           Mark            Ingram 1989-12-21
#> 227              Ty'Son Williams         Ty'Son          Williams 1996-09-04
#> 228                  Gus Edwards            Gus           Edwards 1995-04-13
#> 229                 J.K. Dobbins           J.K.           Dobbins 1998-12-17
#> 230                 Justice Hill        Justice              Hill 1997-11-14
#> 231              Jordan Richards         Jordan          Richards 1993-01-21
#> 232               Anthony Levine        Anthony            Levine 1987-03-27
#> 233                  Chuck Clark          Chuck             Clark 1995-04-19
#> 234                  R.J. Prince           R.J.            Prince 1995-04-19
#> 235                 Jordan Mills         Jordan             Mills 1990-12-24
#> 236                  Andre Smith          Andre             Smith 1987-01-25
#> 237               Ronnie Stanley         Ronnie           Stanley 1994-03-18
#> 238                Orlando Brown        Orlando             Brown 1996-05-02
#> 239                 Jake Rodgers           Jake           Rodgers 1991-09-10
#> 240               Jacob Breeland          Jacob          Breeland 1996-09-20
#> 241                 Mark Andrews           Mark           Andrews 1995-09-06
#> 242                     Eli Wolf            Eli              Wolf 1997-03-11
#> 243               Eric Tomlinson           Eric         Tomlinson 1992-04-22
#> 244                   Nick Boyle           Nick             Boyle 1993-02-17
#> 245               Xavier Grimble         Xavier           Grimble 1992-09-22
#> 246                 Miles Boykin          Miles            Boykin 1996-10-12
#> 247               Antoine Wesley        Antoine            Wesley 1997-10-22
#> 248                   Dez Bryant            Dez            Bryant 1988-11-04
#> 249                  Chris Moore          Chris             Moore 1993-06-16
#> 250                 James Proche          James            Proche 1996-09-21
#> 251               DeAndrew White       DeAndrew             White 1991-10-16
#> 252               Marquise Brown       Marquise             Brown 1997-06-04
#> 253                    Deon Cain           Deon              Cain 1996-08-09
#> 254                 Jaylon Moore         Jaylon             Moore 1997-07-01
#> 255            De'Anthony Thomas     De'Anthony            Thomas 1993-01-05
#> 256              Binjimen Victor       Binjimen            Victor 1997-01-15
#> 257               Devin Duvernay          Devin          Duvernay 1997-09-12
#> 258                 Willie Snead         Willie             Snead 1992-10-17
#> 259                  Mitch Morse          Mitch             Morse 1992-04-21
#> 260                   Ryan Bates           Ryan             Bates 1997-02-14
#> 261                 Jordan Devey         Jordan             Devey 1988-01-11
#> 262            Tre'Davious White    Tre'Davious             White 1995-01-16
#> 263                  Josh Norman           Josh            Norman 1987-12-15
#> 264                  Duke Thomas           Duke            Thomas 1994-05-21
#> 265              Lafayette Pitts      Lafayette             Pitts 1992-09-24
#> 266                 Dane Jackson           Dane           Jackson 1996-11-29
#> 267                Cameron Lewis        Cameron             Lewis 1997-04-13
#> 268                  E.J. Gaines           E.J.            Gaines 1992-02-23
#> 269                 Levi Wallace           Levi           Wallace 1995-06-12
#> 270                   Siran Neal          Siran              Neal 1994-08-04
#> 271                Taron Johnson          Taron           Johnson 1996-07-27
#> 272               Jaquan Johnson         Jaquan           Johnson 1995-11-06
#> 273                   Micah Hyde          Micah              Hyde 1990-12-31
#> 274               Darryl Johnson         Darryl           Johnson 1997-04-04
#> 275                 Jerry Hughes          Jerry            Hughes 1988-08-13
#> 276                 Trent Murphy          Trent            Murphy 1990-12-22
#> 277                 A.J. Epenesa           A.J.           Epenesa 1998-09-15
#> 278                    Mike Love           Mike              Love 1994-01-22
#> 279                Mario Addison          Mario           Addison 1987-09-06
#> 280                    Bryan Cox          Bryan               Cox 1994-06-25
#> 281               Star Lotulelei           Star         Lotulelei 1989-12-20
#> 282            Quinton Jefferson        Quinton         Jefferson 1993-03-31
#> 283            Harrison Phillips       Harrison          Phillips 1996-01-25
#> 284               Brandin Bryant        Brandin            Bryant 1993-09-16
#> 285           Quindarius Thagard     Quindarius           Thagard 1995-12-05
#> 286                Vernon Butler         Vernon            Butler 1994-06-14
#> 287                Justin Zimmer         Justin            Zimmer 1992-10-23
#> 288                    Ed Oliver             Ed            Oliver 1997-12-12
#> 289                Jon Feliciano            Jon         Feliciano 1992-02-10
#> 290                Brian Winters          Brian           Winters 1991-07-10
#> 291                 Ike Boettger            Ike          Boettger 1994-10-05
#> 292                   Tyler Bass          Tyler              Bass 1997-02-14
#> 293             Tristan Vizcaino        Tristan          Vizcaino 1996-07-31
#> 294             Tremaine Edmunds       Tremaine           Edmunds 1998-05-02
#> 295                  Andre Smith          Andre             Smith 1997-04-20
#> 296           Del'Shawn Phillips      Del'Shawn          Phillips 1996-10-09
#> 297                   Darron Lee         Darron               Lee 1994-10-18
#> 298                 Ahmad Gooden          Ahmad            Gooden 1995-10-27
#> 299                 Tyrel Dodson          Tyrel            Dodson 1998-06-25
#> 300                   A.J. Klein           A.J.             Klein 1991-07-30
#> 301             Tyler Matakevich          Tyler        Matakevich 1992-12-22
#> 302                   Deon Lacey           Deon             Lacey 1990-07-18
#> 303                  Matt Milano           Matt            Milano 1994-07-28
#> 304                Reid Ferguson           Reid          Ferguson 1994-03-24
#> 305              Corey Bojorquez          Corey         Bojorquez 1996-09-13
#> 306                 Matt Barkley           Matt           Barkley 1990-09-08
#> 307                   Jake Fromm           Jake             Fromm 1998-07-30
#> 308                   Davis Webb          Davis              Webb 1995-01-22
#> 309                   Josh Allen           Josh             Allen 1996-05-21
#> 310                    Zack Moss           Zack              Moss 1997-12-15
#> 311                  T.J. Yeldon           T.J.            Yeldon 1993-10-02
#> 312              Devonta Freeman        Devonta           Freeman 1992-03-15
#> 313                 Taiwan Jones         Taiwan             Jones 1988-07-26
#> 314               Christian Wade      Christian              Wade 1991-05-15
#> 315             Antonio Williams        Antonio          Williams 1997-10-22
#> 316             Devin Singletary          Devin        Singletary 1997-09-03
#> 317                 Jordan Poyer         Jordan             Poyer 1991-04-25
#> 318                 Dean Marlowe           Dean           Marlowe 1992-07-25
#> 319                  Josh Thomas           Josh            Thomas 1996-11-19
#> 320                   Trey Adams           Trey             Adams 1997-03-04
#> 321                    Cody Ford           Cody              Ford 1996-12-28
#> 322                 Dion Dawkins           Dion           Dawkins 1994-04-26
#> 323               Daryl Williams          Daryl          Williams 1992-08-31
#> 324                Victor Salako         Victor            Salako 1993-11-04
#> 325                    Ty Nsekhe             Ty            Nsekhe 1985-10-27
#> 326                  Dawson Knox         Dawson              Knox 1996-11-14
#> 327                  Tyler Kroft          Tyler             Kroft 1992-10-15
#> 328                  Nate Becker           Nate            Becker 1996-03-24
#> 329               Reggie Gilliam         Reggie           Gilliam 1997-08-20
#> 330                    Lee Smith            Lee             Smith 1987-11-21
#> 331                Tommy Sweeney          Tommy           Sweeney 1995-07-01
#> 332                Duke Williams           Duke          Williams 1992-05-13
#> 333              Isaiah McKenzie         Isaiah          McKenzie 1995-04-09
#> 334                 Jake Kumerow           Jake           Kumerow 1992-02-17
#> 335                 Stefon Diggs         Stefon             Diggs 1993-11-29
#> 336                   John Brown           John             Brown 1990-04-03
#> 337                Tanner Gentry         Tanner            Gentry 1994-12-18
#> 338                 Kenny Stills          Kenny            Stills 1992-04-22
#> 339                 Cole Beasley           Cole           Beasley 1989-04-26
#> 340                Andre Roberts          Andre           Roberts 1988-01-09
#> 341                Gabriel Davis        Gabriel             Davis 1999-04-01
#> 342               Isaiah Hodgins         Isaiah           Hodgins 1998-10-21
#> 343                 Matt Paradis           Matt           Paradis 1989-10-12
#> 344                 Tyler Larsen          Tyler            Larsen 1991-07-08
#> 345              Sam Tecklenburg            Sam       Tecklenburg 1997-01-31
#> 346                Donte Jackson          Donte           Jackson 1995-11-08
#> 347                Rasul Douglas          Rasul           Douglas 1994-08-29
#> 348             Trumaine Johnson       Trumaine           Johnson 1990-01-01
#> 349                   Troy Pride           Troy             Pride 1998-01-19
#> 350                   Corn Elder           Corn             Elder 1994-10-09
#> 351       Stantley Thomas-Oliver       Stantley     Thomas-Oliver 1998-06-04
#> 352             Natrell Jamerson        Natrell          Jamerson 1995-12-15
#> 353                    Eli Apple            Eli             Apple 1995-08-09
#> 354               Kenny Robinson          Kenny          Robinson 1999-01-08
#> 355             Myles Hartsfield          Myles        Hartsfield 1997-08-05
#> 356                Sean Chandler           Sean          Chandler 1996-04-27
#> 357                   Tre Boston            Tre            Boston 1992-06-25
#> 358                Derrek Thomas         Derrek            Thomas 1995-04-25
#> 359                 Jeremy Chinn         Jeremy             Chinn 1998-02-26
#> 360                 Greg Roberts           Greg           Roberts 1996-03-21
#> 361               Marquis Haynes        Marquis            Haynes 1993-12-16
#> 362                Austin Larkin         Austin            Larkin 1995-04-06
#> 363             Christian Miller      Christian            Miller 1996-06-16
#> 364            Stephen Weatherly        Stephen         Weatherly 1994-03-19
#> 365            Yetur Gross-Matos          Yetur       Gross-Matos 1998-02-26
#> 366                  Brian Burns          Brian             Burns 1998-04-23
#> 367                Jonathan Wynn       Jonathan              Wynn 1995-09-21
#> 368                    Efe Obada            Efe             Obada 1992-04-13
#> 369             Woodrow Hamilton        Woodrow          Hamilton 1992-12-20
#> 370                    Zach Kerr           Zach              Kerr 1990-08-29
#> 371                Derrick Brown        Derrick             Brown 1998-04-15
#> 372                Mike Panasiuk           Mike          Panasiuk 1997-10-13
#> 373                 Bruce Hector          Bruce            Hector 1994-10-07
#> 374                 Kawann Short         Kawann             Short 1989-02-02
#> 375                 Bravvion Roy       Bravvion               Roy 1996-10-18
#> 376                   Alex Armah           Alex             Armah 1994-05-17
#> 377               Aaron Monteiro          Aaron          Monteiro 1997-03-25
#> 378                  John Miller           John            Miller 1993-08-12
#> 379                  Mike Horton           Mike            Horton 1996-10-07
#> 380                 Dennis Daley         Dennis             Daley 1996-08-07
#> 381                   Chris Reed          Chris              Reed 1992-07-22
#> 382            Michael Schofield        Michael         Schofield 1990-11-15
#> 383                    Joey Slye           Joey              Slye 1996-04-10
#> 384                  Jordan Mack         Jordan              Mack 1998-02-07
#> 385                 Luke Kuechly           Luke           Kuechly 1991-04-20
#> 386              Tahir Whitehead          Tahir         Whitehead 1990-04-02
#> 387              Julian Stanford         Julian          Stanford 1990-09-02
#> 388                Shaq Thompson           Shaq          Thompson 1994-04-21
#> 389               Adarius Taylor        Adarius            Taylor 1990-09-21
#> 390              Jermaine Carter       Jermaine            Carter 1995-01-14
#> 391                Clay Johnston           Clay          Johnston 1996-08-08
#> 392                    Chris Orr          Chris               Orr 1997-06-17
#> 393                Daniel Bituli         Daniel            Bituli 1997-12-27
#> 394                  J.J. Jansen           J.J.            Jansen 1986-01-20
#> 395              Michael Palardy        Michael           Palardy 1992-07-06
#> 396              Joseph Charlton         Joseph          Charlton 1997-04-07
#> 397            Teddy Bridgewater          Teddy       Bridgewater 1992-11-10
#> 398               Phillip Walker        Phillip            Walker 1995-02-26
#> 399                   Will Grier           Will             Grier 1995-04-03
#> 400                Tommy Stevens          Tommy           Stevens 1996-12-15
#> 401              Reggie Bonnafon         Reggie          Bonnafon 1996-01-04
#> 402               Trenton Cannon        Trenton            Cannon 1994-07-23
#> 403                 Rodney Smith         Rodney             Smith 1996-02-28
#> 404          Christian McCaffrey      Christian         McCaffrey 1996-06-07
#> 405                   Mike Davis           Mike             Davis 1993-02-19
#> 406                 Sam Franklin            Sam          Franklin 1996-02-02
#> 407                Juston Burris         Juston            Burris 1993-08-04
#> 408                Trenton Scott        Trenton             Scott 1994-01-25
#> 409                  Greg Little           Greg            Little 1997-11-04
#> 410                 Taylor Moton         Taylor             Moton 1994-08-18
#> 411                Russell Okung        Russell             Okung 1988-10-07
#> 412                  Matt Kaskey           Matt            Kaskey 1997-03-17
#> 413                   Ian Thomas            Ian            Thomas 1996-06-06
#> 414               Colin Thompson          Colin          Thompson 1993-12-15
#> 415             Stephen Sullivan        Stephen          Sullivan 1996-11-28
#> 416               Giovanni Ricci       Giovanni             Ricci 1996-10-16
#> 417               Chris Manhertz          Chris          Manhertz 1992-04-10
#> 418                 Amara Darboh          Amara            Darboh 1994-02-01
#> 419               Shelton Gibson        Shelton            Gibson 1994-03-20
#> 420                 Omar Bayless           Omar           Bayless 1996-12-15
#> 421              Brandon Zylstra        Brandon           Zylstra 1993-03-25
#> 422                Pharoh Cooper         Pharoh            Cooper 1995-03-07
#> 423                Ishmael Hyman        Ishmael             Hyman 1995-08-23
#> 424               Robby Anderson          Robby          Anderson 1993-05-09
#> 425                Curtis Samuel         Curtis            Samuel 1996-08-11
#> 426               Ventell Bryant        Ventell            Bryant 1996-08-24
#> 427                   D.J. Moore           D.J.             Moore 1997-04-14
#> 428               Keith Kirkwood          Keith          Kirkwood 1993-12-26
#> 429                Marken Michel         Marken            Michel 1993-07-06
#> 430               Cody Whitehair           Cody         Whitehair 1992-07-11
#> 431                Sam Mustipher            Sam         Mustipher 1996-08-13
#> 432                Buster Skrine         Buster            Skrine 1989-04-26
#> 433                 Duke Shelley           Duke           Shelley 1996-10-08
#> 434                 Tre Roberson            Tre          Roberson 1992-10-22
#> 435              Xavier Crawford         Xavier          Crawford 1995-12-10
#> 436                  Kyle Fuller           Kyle            Fuller 1992-02-16
#> 437               Jaylon Johnson         Jaylon           Johnson 1999-04-19
#> 438                  Artie Burns          Artie             Burns 1995-05-01
#> 439              Sojourn Shelton        Sojourn           Shelton 1994-12-25
#> 440               Michael Joseph        Michael            Joseph 1995-03-19
#> 441                Kindle Vildor         Kindle            Vildor 1997-12-11
#> 442                   Teez Tabor           Teez             Tabor 1995-12-31
#> 443               Tashaun Gipson        Tashaun            Gipson 1990-08-07
#> 444                    Deon Bush           Deon              Bush 1993-08-14
#> 445             Marqui Christian         Marqui         Christian 1994-10-27
#> 446       DeAndre Houston-Carson        DeAndre    Houston-Carson 1993-04-13
#> 447                Ledarius Mack       Ledarius              Mack 1996-10-03
#> 448                 Robert Quinn         Robert             Quinn 1990-05-18
#> 449            Lawrence Marshall       Lawrence          Marshall 1995-02-12
#> 450                Mario Edwards          Mario           Edwards 1994-01-25
#> 451         Roy Robertson-Harris            Roy  Robertson-Harris 1993-07-23
#> 452                Terry Beckner          Terry           Beckner 1997-03-02
#> 453                  Brent Urban          Brent             Urban 1991-05-05
#> 454                  Akiem Hicks          Akiem             Hicks 1989-11-16
#> 455                Lacale London         Lacale            London 1997-08-05
#> 456                James Daniels          James           Daniels 1997-09-13
#> 457               Dieter Eiselen         Dieter           Eiselen 1996-06-10
#> 458                Germain Ifedi        Germain             Ifedi 1994-06-02
#> 459           Lachavious Simmons     Lachavious           Simmons 1996-09-12
#> 460                    Alex Bars           Alex              Bars 1995-09-08
#> 461                    Eric Kush           Eric              Kush 1989-09-09
#> 462          Arlington Hambright      Arlington         Hambright 1996-01-30
#> 463                 Cairo Santos          Cairo            Santos 1991-11-12
#> 464                 Eddy Pineiro           Eddy           Pineiro 1995-09-13
#> 465                 Roquan Smith         Roquan             Smith 1997-04-08
#> 466                Trevis Gipson         Trevis            Gipson 1997-06-13
#> 467             Joel Iyiegbuniwe           Joel       Iyiegbuniwe 1995-10-12
#> 468             Barkevious Mingo     Barkevious             Mingo 1990-10-04
#> 469              James Vaughters          James         Vaughters 1993-06-27
#> 470              Danny Trevathan          Danny         Trevathan 1990-03-24
#> 471                   Josh Woods           Josh             Woods 1996-07-01
#> 472                  Khalil Mack         Khalil              Mack 1991-02-22
#> 473                 Devante Bond        Devante              Bond 1993-07-03
#> 474                   Manti Te'o          Manti              Te'o 1991-01-26
#> 475               Patrick Scales        Patrick            Scales 1988-02-11
#> 476                 John Jenkins           John           Jenkins 1989-07-11
#> 477                Bilal Nichols          Bilal           Nichols 1996-09-14
#> 478                Eddie Goldman          Eddie           Goldman 1994-01-06
#> 479             Daniel McCullers         Daniel         McCullers 1992-08-11
#> 480                Pat O'Donnell            Pat         O'Donnell 1991-02-22
#> 481            Mitchell Trubisky       Mitchell          Trubisky 1994-08-20
#> 482                   Nick Foles           Nick             Foles 1989-01-20
#> 483                   Tyler Bray          Tyler              Bray 1991-12-27
#> 484                    Ryan Nall           Ryan              Nall 1995-12-27
#> 485               Artavis Pierce        Artavis            Pierce 1996-05-17
#> 486                  Tarik Cohen          Tarik             Cohen 1995-07-26
#> 487             David Montgomery          David        Montgomery 1997-06-07
#> 488                 Spencer Ware        Spencer              Ware 1991-11-23
#> 489                Eddie Jackson          Eddie           Jackson 1993-12-10
#> 490             Sherrick McManis       Sherrick           McManis 1987-12-19
#> 491                 Jordan Lucas         Jordan             Lucas 1993-08-02
#> 492               Rashaad Coward        Rashaad            Coward 1994-11-06
#> 493                Jason Spriggs          Jason           Spriggs 1994-05-17
#> 494                 Charles Leno        Charles              Leno 1991-10-09
#> 495                 Bobby Massie          Bobby            Massie 1989-08-01
#> 496                Badara Traore         Badara            Traore 1997-03-12
#> 497                 Darion Clark         Darion             Clark 1994-04-09
#> 498                   J.P. Holtz           J.P.             Holtz 1993-08-28
#> 499                    Cole Kmet           Cole              Kmet 1999-03-10
#> 500               Jesper Horsted         Jesper           Horsted 1997-02-27
#> 501                 Jimmy Graham          Jimmy            Graham 1986-11-24
#> 502             Demetrius Harris      Demetrius            Harris 1991-07-29
#> 503                     Ted Ginn            Ted              Ginn 1985-04-12
#> 504               DeAndre Carter        DeAndre            Carter 1993-04-10
#> 505                  Jester Weah         Jester              Weah 1995-02-07
#> 506                 Riley Ridley          Riley            Ridley 1996-07-21
#> 507                   Javon Wims          Javon              Wims 1994-09-11
#> 508                 Reggie Davis         Reggie             Davis 1995-11-22
#> 509                 Rodney Adams         Rodney             Adams 1994-09-15
#> 510               Darnell Mooney        Darnell            Mooney 1997-10-29
#> 511                Dwayne Harris         Dwayne            Harris 1987-09-16
#> 512                  Thomas Ives         Thomas              Ives 1997-06-25
#> 513               Anthony Miller        Anthony            Miller 1994-10-09
#> 514               Allen Robinson          Allen          Robinson 1993-08-24
#> 515        Cordarrelle Patterson    Cordarrelle         Patterson 1991-03-17
#> 516                 Trey Hopkins           Trey           Hopkins 1992-07-06
#> 517                  B.J. Finney           B.J.            Finney 1991-10-26
#> 518                  Billy Price          Billy             Price 1994-10-11
#> 519                  Trae Waynes           Trae            Waynes 1992-07-25
#> 520                 Donnie Lewis         Donnie             Lewis 1996-07-21
#> 521                 Winston Rose        Winston              Rose 1993-11-29
#> 522          Mackensie Alexander      Mackensie         Alexander 1993-11-12
#> 523                   Tony Brown           Tony             Brown 1995-07-13
#> 524              Darius Phillips         Darius          Phillips 1995-06-26
#> 525              William Jackson        William           Jackson 1992-10-27
#> 526                  Jalen Davis          Jalen             Davis 1996-02-02
#> 527                 LeShaun Sims        LeShaun              Sims 1993-09-18
#> 528                 Trajan Bandy         Trajan             Bandy 1999-06-04
#> 529               Brandon Wilson        Brandon            Wilson 1994-07-27
#> 530                 Jessie Bates         Jessie             Bates 1997-02-26
#> 531                  Carl Lawson           Carl            Lawson 1995-06-29
#> 532          Freedom Akinmoladun        Freedom       Akinmoladun 1996-02-11
#> 533                  Sam Hubbard            Sam           Hubbard 1995-06-29
#> 534                Khalid Kareem         Khalid            Kareem 1998-04-28
#> 535                Amani Bledsoe          Amani           Bledsoe 1998-02-06
#> 536              Xavier Williams         Xavier          Williams 1992-01-18
#> 537                 Mike Daniels           Mike           Daniels 1989-05-05
#> 538                  Geno Atkins           Geno            Atkins 1988-03-28
#> 539                  Margus Hunt         Margus              Hunt 1987-07-14
#> 540            Reginald McKenzie       Reginald          McKenzie 1997-01-03
#> 541                Quinton Spain        Quinton             Spain 1991-08-07
#> 542               Hakeem Adeniji         Hakeem           Adeniji 1997-12-08
#> 543                 Alex Redmond           Alex           Redmond 1995-01-18
#> 544                   Rod Taylor            Rod            Taylor 1994-10-26
#> 545            Keaton Sutherland         Keaton        Sutherland 1997-02-12
#> 546               Michael Jordan        Michael            Jordan 1998-01-25
#> 547             Xavier Su'a-Filo         Xavier         Su'a-Filo 1991-01-01
#> 548               Austin Seibert         Austin           Seibert 1996-11-15
#> 549                Randy Bullock          Randy           Bullock 1989-12-16
#> 550          Akeem Davis-Gaither          Akeem     Davis-Gaither 1997-09-21
#> 551               Germaine Pratt       Germaine             Pratt 1996-05-21
#> 552                   Josh Bynes           Josh             Bynes 1989-08-24
#> 553                Markus Bailey         Markus            Bailey 1997-03-07
#> 554            Kendall Donnerson        Kendall         Donnerson 1996-04-22
#> 555                Keandre Jones        Keandre             Jones 1997-09-24
#> 556                 Jordan Evans         Jordan             Evans 1995-01-27
#> 557                 Logan Wilson          Logan            Wilson 1996-07-08
#> 558                 Clark Harris          Clark            Harris 1984-07-10
#> 559                   Dan Godsil            Dan            Godsil 1996-08-19
#> 560                   Josh Tupou           Josh             Tupou 1994-05-02
#> 561                  D.J. Reader           D.J.            Reader 1994-07-01
#> 562                  Renell Wren         Renell              Wren 1995-10-23
#> 563          Christian Covington      Christian         Covington 1993-10-16
#> 564                  Kevin Huber          Kevin             Huber 1985-07-16
#> 565                 Kyle Shurmur           Kyle           Shurmur 1996-11-06
#> 566                   Joe Burrow            Joe            Burrow 1996-12-10
#> 567                  Ryan Finley           Ryan            Finley 1994-12-26
#> 568                  Kevin Hogan          Kevin             Hogan 1992-10-20
#> 569                Brandon Allen        Brandon             Allen 1992-09-05
#> 570            Trayveon Williams       Trayveon          Williams 1997-10-18
#> 571              Jacques Patrick        Jacques           Patrick 1997-01-07
#> 572                Samaje Perine         Samaje            Perine 1995-09-16
#> 573                    Joe Mixon            Joe             Mixon 1996-07-24
#> 574              Giovani Bernard        Giovani           Bernard 1991-11-22
#> 575               Shawn Williams          Shawn          Williams 1991-05-13
#> 576                    Vonn Bell           Vonn              Bell 1994-12-12
#> 577            Trayvon Henderson        Trayvon         Henderson 1995-08-15
#> 578                Isaiah Prince         Isaiah            Prince 1997-07-29
#> 579               Jonah Williams          Jonah          Williams 1997-11-17
#> 580                   Bobby Hart          Bobby              Hart 1994-08-21
#> 581                 Fred Johnson           Fred           Johnson 1997-06-05
#> 582                 O'Shea Dugas         O'Shea             Dugas 1996-09-22
#> 583                Cethan Carter         Cethan            Carter 1995-09-05
#> 584                Mason Schreck          Mason           Schreck 1993-11-04
#> 585                  C.J. Uzomah           C.J.            Uzomah 1993-01-14
#> 586                  Drew Sample           Drew            Sample 1996-04-16
#> 587              Mitchell Wilcox       Mitchell            Wilcox 1996-11-07
#> 588                   A.J. Green           A.J.             Green 1988-07-31
#> 589               Stanley Morgan        Stanley            Morgan 1996-09-07
#> 590                   Auden Tate          Auden              Tate 1997-02-03
#> 591            Scotty Washington         Scotty        Washington 1996-07-26
#> 592                  Tee Higgins            Tee           Higgins 1999-01-18
#> 593                Alex Erickson           Alex          Erickson 1992-11-06
#> 594                   Tyler Boyd          Tyler              Boyd 1994-11-15
#> 595                  Mike Thomas           Mike            Thomas 1994-08-16
#> 596                Trenton Irwin        Trenton             Irwin 1995-12-10
#> 597                    John Ross           John              Ross 1995-11-27
#> 598                 J.C. Tretter           J.C.           Tretter 1991-02-12
#> 599              Javon Patterson          Javon         Patterson 1997-07-08
#> 600                  Nick Harris           Nick            Harris 1998-11-13
#> 601              Anthony Fabiano        Anthony           Fabiano 1993-07-13
#> 602               Robert Jackson         Robert           Jackson 1993-12-08
#> 603              Greedy Williams         Greedy          Williams 1997-12-03
#> 604            Terrance Mitchell       Terrance          Mitchell 1992-05-17
#> 605                  Brian Allen          Brian             Allen 1993-10-21
#> 606                  Denzel Ward         Denzel              Ward 1997-04-28
#> 607                   A.J. Green           A.J.             Green 1998-06-09
#> 608               Donovan Olumba        Donovan            Olumba 1995-09-26
#> 609                 M.J. Stewart           M.J.           Stewart 1995-09-16
#> 610                Kevin Johnson          Kevin           Johnson 1992-08-05
#> 611              Tavierre Thomas       Tavierre            Thomas 1996-03-11
#> 612                 Grant Delpit          Grant            Delpit 1998-09-20
#> 613              Tedric Thompson         Tedric          Thompson 1995-01-20
#> 614               Andrew Sendejo         Andrew           Sendejo 1987-09-09
#> 615            Sheldrick Redwine      Sheldrick           Redwine 1996-11-06
#> 616             Cameron Malveaux        Cameron          Malveaux 1994-09-22
#> 617                Porter Gustin         Porter            Gustin 1997-02-08
#> 618                  Joe Jackson            Joe           Jackson 1996-12-20
#> 619                Curtis Weaver         Curtis            Weaver 1998-08-03
#> 620                  Jamal Davis          Jamal             Davis 1995-07-09
#> 621                Myles Garrett          Myles           Garrett 1995-12-29
#> 622                George Obinna         George            Obinna 1996-08-23
#> 623               Olivier Vernon        Olivier            Vernon 1990-10-07
#> 624              Adrian Clayborn         Adrian          Clayborn 1988-07-06
#> 625               Jordan Elliott         Jordan           Elliott 1997-11-23
#> 626           Sheldon Richardson        Sheldon        Richardson 1990-11-29
#> 627               Vincent Taylor        Vincent            Taylor 1994-01-05
#> 628                    Joey Ivie           Joey              Ivie 1995-01-22
#> 629                  Sheldon Day        Sheldon               Day 1994-07-01
#> 630               Larry Ogunjobi          Larry          Ogunjobi 1994-06-03
#> 631               Johnny Stanton         Johnny           Stanton 1994-09-07
#> 632                Andy Janovich           Andy          Janovich 1993-05-23
#> 633                 Joel Bitonio           Joel           Bitonio 1991-10-11
#> 634             Malcolm Pridgeon        Malcolm          Pridgeon 1995-01-20
#> 635                 Wyatt Teller          Wyatt            Teller 1994-11-21
#> 636                Colby Gossett          Colby           Gossett 1995-06-23
#> 637               Cordel Iwuagwu         Cordel           Iwuagwu 1996-09-04
#> 638              Matthew McCrane        Matthew           McCrane 1994-09-08
#> 639                  Cody Parkey           Cody            Parkey 1992-02-19
#> 640                  Mack Wilson           Mack            Wilson 1998-02-14
#> 641                Malcolm Smith        Malcolm             Smith 1989-07-05
#> 642                   Elijah Lee         Elijah               Lee 1996-02-08
#> 643               Jacob Phillips          Jacob          Phillips 1999-04-01
#> 644                 Trevon Young         Trevon             Young 1995-04-01
#> 645               Sione Takitaki          Sione          Takitaki 1995-06-08
#> 646                 B.J. Goodson           B.J.           Goodson 1993-05-29
#> 647                    Tae Davis            Tae             Davis 1996-08-14
#> 648             Charley Hughlett        Charley          Hughlett 1990-05-16
#> 649              Andrew Billings         Andrew          Billings 1995-03-06
#> 650                 Jamie Gillan          Jamie            Gillan 1997-07-04
#> 651                Kyle Lauletta           Kyle          Lauletta 1995-03-17
#> 652                  Case Keenum           Case            Keenum 1988-02-17
#> 653               Baker Mayfield          Baker          Mayfield 1995-04-14
#> 654                   John Kelly           John             Kelly 1996-10-04
#> 655                     LJ Scott             LJ             Scott 1996-09-15
#> 656                   Nick Chubb           Nick             Chubb 1995-12-27
#> 657             D'Ernest Johnson       D'Ernest           Johnson 1996-02-27
#> 658                  Kareem Hunt         Kareem              Hunt 1995-08-06
#> 659              Jovante Moffatt        Jovante           Moffatt 1996-12-25
#> 660              Montrel Meander        Montrel           Meander 1994-09-20
#> 661                Elijah Benton         Elijah            Benton 1996-09-05
#> 662              Ronnie Harrison         Ronnie          Harrison 1997-04-18
#> 663                  Karl Joseph           Karl            Joseph 1993-09-08
#> 664                Jedrick Wills        Jedrick             Wills 1999-05-17
#> 665          Christopher Hubbard    Christopher           Hubbard 1991-04-23
#> 666                  Blake Hance          Blake             Hance 1996-01-11
#> 667                Drake Dorbeck          Drake           Dorbeck 1996-10-07
#> 668                 Kendall Lamm        Kendall              Lamm 1992-06-05
#> 669                 Michael Dunn        Michael              Dunn 1994-08-28
#> 670                  Alex Taylor           Alex            Taylor 1997-04-29
#> 671                  Drew Forbes           Drew            Forbes 1997-01-18
#> 672                 Jack Conklin           Jack           Conklin 1994-08-17
#> 673              Harrison Bryant       Harrison            Bryant 1998-04-23
#> 674                Austin Hooper         Austin            Hooper 1994-10-29
#> 675              Stephen Carlson        Stephen           Carlson 1996-12-12
#> 676                  David Njoku          David             Njoku 1996-07-10
#> 677                Jordan Franks         Jordan            Franks 1996-02-01
#> 678                 Kyle Markway           Kyle           Markway 1997-03-04
#> 679                  JoJo Natson           JoJo            Natson 1994-02-01
#> 680                Taywan Taylor         Taywan            Taylor 1995-03-02
#> 681              Derrick Willies        Derrick           Willies 1994-10-17
#> 682                 Ryan Switzer           Ryan           Switzer 1994-11-04
#> 683                Odell Beckham          Odell           Beckham 1992-11-05
#> 684               Khadarel Hodge       Khadarel             Hodge 1995-01-03
#> 685                Jarvis Landry         Jarvis            Landry 1992-11-28
#> 686                  Marvin Hall         Marvin              Hall 1993-04-10
#> 687        Donovan Peoples-Jones        Donovan     Peoples-Jones 1999-02-19
#> 688              Rashard Higgins        Rashard           Higgins 1994-10-07
#> 689            Alexander Hollins      Alexander           Hollins 1996-11-24
#> 690            Ja'Marcus Bradley      Ja'Marcus           Bradley 1996-12-11
#> 691                 Marcus Henry         Marcus             Henry 1993-02-11
#> 692                Tyler Biadasz          Tyler           Biadasz 1997-11-20
#> 693             Travis Frederick         Travis         Frederick 1991-03-18
#> 694                 Adam Redmond           Adam           Redmond 1993-05-19
#> 695                   Joe Looney            Joe            Looney 1990-08-31
#> 696               Maurice Canady        Maurice            Canady 1994-05-26
#> 697                   Kemon Hall          Kemon              Hall 1997-06-02
#> 698                 Trevon Diggs         Trevon             Diggs 1998-09-20
#> 699                Anthony Brown        Anthony             Brown 1993-12-15
#> 700                 Brandon Carr        Brandon              Carr 1986-05-19
#> 701                Deante Burton         Deante            Burton 1994-07-12
#> 702               Chidobe Awuzie        Chidobe            Awuzie 1995-05-24
#> 703                 C.J. Goodwin           C.J.           Goodwin 1990-02-04
#> 704                Jourdan Lewis        Jourdan             Lewis 1995-08-31
#> 705             Rashard Robinson        Rashard          Robinson 1995-07-23
#> 706                Saivion Smith        Saivion             Smith 1997-11-05
#> 707                 Xavier Woods         Xavier             Woods 1995-07-26
#> 708                Steven Parker         Steven            Parker 1995-12-14
#> 709              Darian Thompson         Darian          Thompson 1993-09-22
#> 710              Reggie Robinson         Reggie          Robinson 1997-04-14
#> 711                  Aldon Smith          Aldon             Smith 1989-09-25
#> 712              Ron'Dell Carter       Ron'Dell            Carter 1997-07-03
#> 713            Demarcus Lawrence       Demarcus          Lawrence 1992-04-28
#> 714                 Bradlee Anae        Bradlee              Anae 1998-10-17
#> 715                Randy Gregory          Randy           Gregory 1992-11-23
#> 716            Dorance Armstrong        Dorance         Armstrong 1997-06-10
#> 717              Tyrone Crawford         Tyrone          Crawford 1989-11-22
#> 718                  Dontari Poe        Dontari               Poe 1990-08-18
#> 719                    Eli Ankou            Eli             Ankou 1994-06-08
#> 720                 Trysten Hill        Trysten              Hill 1998-03-25
#> 721                Antwaun Woods        Antwaun             Woods 1993-01-03
#> 722              Justin Hamilton         Justin          Hamilton 1993-07-27
#> 723               Walter Palmore         Walter           Palmore 1996-08-09
#> 724            Neville Gallimore        Neville         Gallimore 1997-01-17
#> 725               Jamize Olawale         Jamize           Olawale 1989-04-17
#> 726                  Zack Martin           Zack            Martin 1990-11-20
#> 727              Connor McGovern         Connor          McGovern 1997-11-03
#> 728              Connor Williams         Connor          Williams 1997-05-12
#> 729                Greg Zuerlein           Greg          Zuerlein 1987-12-27
#> 730                 Justin March         Justin             March 1993-07-05
#> 731         Leighton Vander Esch       Leighton       Vander Esch 1996-02-08
#> 732                 Jaylon Smith         Jaylon             Smith 1995-06-14
#> 733                 Luke Gifford           Luke           Gifford 1995-08-28
#> 734                   Joe Thomas            Joe            Thomas 1991-05-06
#> 735              Francis Bernard        Francis           Bernard 1995-04-08
#> 736                  Azur Kamara           Azur            Kamara 1996-01-01
#> 737                     Sean Lee           Sean               Lee 1986-07-22
#> 738            Ladarius Hamilton       Ladarius          Hamilton 1998-01-18
#> 739               L.P. LaDouceur           L.P.         LaDouceur 1981-03-13
#> 740             Hunter Niswander         Hunter         Niswander 1994-11-26
#> 741                  Chris Jones          Chris             Jones 1989-07-21
#> 742                  Cooper Rush         Cooper              Rush 1993-11-21
#> 743                  Andy Dalton           Andy            Dalton 1987-10-29
#> 744                  Ben DiNucci            Ben           DiNucci 1996-11-24
#> 745                 Dak Prescott            Dak          Prescott 1993-07-29
#> 746              Garrett Gilbert        Garrett           Gilbert 1991-07-01
#> 747                 Tony Pollard           Tony           Pollard 1997-04-30
#> 748                  Rico Dowdle           Rico            Dowdle 1998-06-14
#> 749                Sewo Olonilua           Sewo          Olonilua 1997-11-27
#> 750              Ezekiel Elliott        Ezekiel           Elliott 1995-07-22
#> 751               Donovan Wilson        Donovan            Wilson 1995-02-21
#> 752               Brandon Knight        Brandon            Knight 1997-04-01
#> 753                   Eric Smith           Eric             Smith 1995-09-02
#> 754                   Greg Senat           Greg             Senat 1994-09-08
#> 755                William Sweet        William             Sweet 1997-04-29
#> 756                Isaac Alarcon          Isaac           Alarcon 1998-07-27
#> 757                  Mitch Hyatt          Mitch             Hyatt 1997-02-06
#> 758               Cameron Erving        Cameron            Erving 1992-08-23
#> 759                  Tyron Smith          Tyron             Smith 1990-12-12
#> 760                   Alex Light           Alex             Light 1996-05-02
#> 761                La'el Collins          La'el           Collins 1993-07-26
#> 762               Terence Steele        Terence            Steele 1997-06-04
#> 763                 Blake Jarwin          Blake            Jarwin 1994-07-16
#> 764               Dalton Schultz         Dalton           Schultz 1996-07-11
#> 765                   Blake Bell          Blake              Bell 1991-08-07
#> 766                  Sean McKeon           Sean            McKeon 1997-12-28
#> 767                Cole Hikutini           Cole          Hikutini 1994-06-11
#> 768                 Malik Turner          Malik            Turner 1996-01-30
#> 769                   Chris Lacy          Chris              Lacy 1996-01-28
#> 770               Cedrick Wilson        Cedrick            Wilson 1995-11-20
#> 771                   Noah Brown           Noah             Brown 1996-01-06
#> 772                 Amari Cooper          Amari            Cooper 1994-06-17
#> 773               Michael Gallup        Michael            Gallup 1996-03-04
#> 774                  CeeDee Lamb         CeeDee              Lamb 1999-04-08
#> 775               Stephen Guidry        Stephen            Guidry 1997-03-25
#> 776              Jon'Vea Johnson        Jon'Vea           Johnson 1995-12-23
#> 777                 Aaron Parker          Aaron            Parker 1998-05-21
#> 778            Lloyd Cushenberry          Lloyd       Cushenberry 1997-11-22
#> 779               Patrick Morris        Patrick            Morris 1995-02-13
#> 780                  Jon Halapio            Jon           Halapio 1991-06-23
#> 781               Bryce Callahan          Bryce          Callahan 1991-10-23
#> 782               Parnell Motley        Parnell            Motley 1997-10-28
#> 783              De'Vante Bausby       De'Vante            Bausby 1993-01-15
#> 784                Essang Bassey         Essang            Bassey 1998-08-12
#> 785             Michael Ojemudia        Michael          Ojemudia 1997-09-12
#> 786                Nate Hairston           Nate          Hairston 1994-06-30
#> 787               Kareem Jackson         Kareem           Jackson 1988-04-10
#> 788                Kevin Toliver          Kevin           Toliver 1995-11-24
#> 789                   A.J. Bouye           A.J.             Bouye 1991-08-16
#> 790                  Duke Dawson           Duke            Dawson 1995-10-13
#> 791                   Will Parks           Will             Parks 1994-07-29
#> 792                   P.J. Locke           P.J.             Locke 1997-02-12
#> 793                Alijah Holder         Alijah            Holder 1996-01-26
#> 794               Justin Simmons         Justin           Simmons 1993-11-19
#> 795                Shelby Harris         Shelby            Harris 1991-08-11
#> 796              DeMarcus Walker       DeMarcus            Walker 1994-09-30
#> 797              Jonathan Harris       Jonathan            Harris 1996-08-04
#> 798                Bradley Chubb        Bradley             Chubb 1996-06-24
#> 799                  Deyon Sizer          Deyon             Sizer 1996-08-16
#> 800               Dre'Mont Jones       Dre'Mont             Jones 1997-01-05
#> 801             DeShawn Williams        DeShawn          Williams 1992-12-29
#> 802           Sylvester Williams      Sylvester          Williams 1988-11-21
#> 803               Timmy Jernigan          Timmy          Jernigan 1992-09-24
#> 804                  Isaiah Mack         Isaiah              Mack 1996-03-19
#> 805                    Kyle Peko           Kyle              Peko 1993-07-23
#> 806                 Darius Kilgo         Darius             Kilgo 1991-12-14
#> 807                McTelvin Agim       McTelvin              Agim 1997-09-25
#> 808                Jurrell Casey        Jurrell             Casey 1989-12-05
#> 809                  Netane Muti         Netane              Muti 1999-03-27
#> 810           Austin Schlottmann         Austin       Schlottmann 1995-09-18
#> 811                Dalton Risner         Dalton            Risner 1995-07-13
#> 812               Graham Glasgow         Graham           Glasgow 1992-07-19
#> 813              Brandon McManus        Brandon           McManus 1991-07-25
#> 814             Taylor Russolino         Taylor         Russolino 1989-05-23
#> 815                  Mark Barron           Mark            Barron 1989-10-27
#> 816            Anthony Chickillo        Anthony         Chickillo 1992-12-10
#> 817                   Malik Reed          Malik              Reed 1996-08-05
#> 818                   Von Miller            Von            Miller 1989-03-26
#> 819                Justin Strnad         Justin            Strnad 1996-08-21
#> 820               Natrez Patrick         Natrez           Patrick 1997-07-09
#> 821            Jeremiah Attaochu       Jeremiah          Attaochu 1993-01-17
#> 822                Nigel Bradham          Nigel           Bradham 1989-09-04
#> 823                 Josey Jewell          Josey            Jewell 1994-12-25
#> 824                 Joseph Jones         Joseph             Jones 1994-02-21
#> 825                  Josh Watson           Josh            Watson 1996-05-20
#> 826                Derrek Tuszka         Derrek            Tuszka 1996-07-11
#> 827                 A.J. Johnson           A.J.           Johnson 1991-12-24
#> 828               Austin Calitro         Austin           Calitro 1994-01-10
#> 829             Jacob Bobenmoyer          Jacob        Bobenmoyer 1997-05-28
#> 830                 Mike Purcell           Mike           Purcell 1991-04-20
#> 831                   Sam Martin            Sam            Martin 1990-02-27
#> 832                    Drew Lock           Drew              Lock 1996-11-10
#> 833                 Jeff Driskel           Jeff           Driskel 1993-04-23
#> 834                 Brett Rypien          Brett            Rypien 1996-07-09
#> 835             Damarea Crockett        Damarea          Crockett 1997-12-22
#> 836              LeVante Bellamy        LeVante           Bellamy 1996-11-28
#> 837              Phillip Lindsay        Phillip           Lindsay 1994-07-24
#> 838                   Jeremy Cox         Jeremy               Cox 1996-08-16
#> 839                Melvin Gordon         Melvin            Gordon 1993-04-13
#> 840                Royce Freeman          Royce           Freeman 1996-02-24
#> 841                 Chris Cooper          Chris            Cooper 1994-03-17
#> 842                Trey Marshall           Trey          Marshall 1996-02-13
#> 843                 Quinn Bailey          Quinn            Bailey 1995-10-18
#> 844             Elijah Wilkinson         Elijah         Wilkinson 1995-02-10
#> 845                 Demar Dotson          Demar            Dotson 1985-10-11
#> 846              Calvin Anderson         Calvin          Anderson 1996-03-25
#> 847                Garett Bolles         Garett            Bolles 1992-05-27
#> 848                Ja'Wuan James        Ja'Wuan             James 1992-06-03
#> 849                 Darrin Paulo         Darrin             Paulo 1997-03-06
#> 850               Troy Fumagalli           Troy         Fumagalli 1995-02-17
#> 851                    Noah Fant           Noah              Fant 1997-11-20
#> 852                    Jake Butt           Jake              Butt 1995-07-11
#> 853           Albert Okwuegbunam         Albert       Okwuegbunam 1998-04-25
#> 854                 Nick Vannett           Nick           Vannett 1993-03-06
#> 855                  Austin Fort         Austin              Fort 1995-05-14
#> 856                  Andrew Beck         Andrew              Beck 1996-05-15
#> 857               Jordan Leggett         Jordan           Leggett 1995-01-31
#> 858             Courtland Sutton      Courtland            Sutton 1995-10-10
#> 859                   Fred Brown           Fred             Brown 1993-12-01
#> 860                  Jerry Jeudy          Jerry             Jeudy 1999-04-24
#> 861             DaeSean Hamilton        DaeSean          Hamilton 1995-03-10
#> 862                  Tim Patrick            Tim           Patrick 1993-11-23
#> 863               Kendall Hinton        Kendall            Hinton 1997-02-19
#> 864               Trinity Benson        Trinity            Benson 1997-01-16
#> 865              Tyrie Cleveland          Tyrie         Cleveland 1997-09-20
#> 866                  K.J. Hamler           K.J.            Hamler 1999-07-08
#> 867              Diontae Spencer        Diontae           Spencer 1992-03-19
#> 868                     Jon Toth            Jon              Toth 1994-02-11
#> 869                 Frank Ragnow          Frank            Ragnow 1996-05-17
#> 870               Russell Bodine        Russell            Bodine 1992-06-30
#> 871              Amani Oruwariye          Amani         Oruwariye 1996-02-09
#> 872                  Jeff Okudah           Jeff            Okudah 1999-02-02
#> 873               Darryl Roberts         Darryl           Roberts 1990-11-26
#> 874                 Josh Hawkins           Josh           Hawkins 1993-01-23
#> 875               Tramaine Brock       Tramaine             Brock 1988-08-20
#> 876              Desmond Trufant        Desmond           Trufant 1990-09-10
#> 877                   Tony McRae           Tony             McRae 1993-05-03
#> 878                    Mike Ford           Mike              Ford 1995-08-04
#> 879               Justin Coleman         Justin           Coleman 1993-03-27
#> 880                  Bobby Price          Bobby             Price 1998-04-25
#> 881              Miles Killebrew          Miles         Killebrew 1993-05-10
#> 882              Alexander Myres      Alexander             Myres 1996-04-20
#> 883                Jalen Elliott          Jalen           Elliott 1998-07-07
#> 884                 Tracy Walker          Tracy            Walker 1995-02-01
#> 885                   C.J. Moore           C.J.             Moore 1995-12-15
#> 886                Julian Okwara         Julian            Okwara 1997-12-27
#> 887                   Joel Heath           Joel             Heath 1993-06-18
#> 888               Jashon Cornell         Jashon           Cornell 1996-12-30
#> 889                Austin Bryant         Austin            Bryant 1996-11-12
#> 890                 Romeo Okwara          Romeo            Okwara 1995-06-17
#> 891                Da'Shawn Hand       Da'Shawn              Hand 1995-11-14
#> 892                 Frank Herron          Frank            Herron 1994-07-09
#> 893                 Trey Flowers           Trey           Flowers 1993-08-16
#> 894                Robert McCray         Robert            McCray 1996-03-24
#> 895              Everson Griffen        Everson           Griffen 1987-12-22
#> 896                  John Atkins           John            Atkins 1992-12-21
#> 897               Albert Huggins         Albert           Huggins 1997-06-27
#> 898                John Penisini           John          Penisini 1997-05-31
#> 899                Danny Shelton          Danny           Shelton 1993-08-20
#> 900                 Kevin Strong          Kevin            Strong 1996-08-05
#> 901            Nicholas Williams       Nicholas          Williams 1990-02-21
#> 902                   Evan Brown           Evan             Brown 1996-09-16
#> 903                Jonah Jackson          Jonah           Jackson 1997-02-05
#> 904                 Oday Aboushi           Oday           Aboushi 1991-06-05
#> 905                     Joe Dahl            Joe              Dahl 1993-04-09
#> 906               Logan Stenberg          Logan          Stenberg 1997-03-18
#> 907                  Matt Prater           Matt            Prater 1984-08-10
#> 908               Matthew Wright        Matthew            Wright 1996-03-22
#> 909              Anthony Pittman        Anthony           Pittman 1996-11-24
#> 910          Jalen Reeves-Maybin          Jalen     Reeves-Maybin 1995-01-31
#> 911                Jason Cabinda          Jason           Cabinda 1996-03-17
#> 912                Jahlani Tavai        Jahlani             Tavai 1996-09-28
#> 913          Shaun Dion Hamilton     Shaun Dion          Hamilton 1995-09-11
#> 914                Jamie Collins          Jamie           Collins 1989-10-20
#> 915                 Jarrad Davis         Jarrad             Davis 1994-11-16
#> 916               Reggie Ragland         Reggie           Ragland 1993-09-23
#> 917                Kareem Martin         Kareem            Martin 1992-02-19
#> 918              Christian Jones      Christian             Jones 1991-02-18
#> 919                 Don Muhlbach            Don          Muhlbach 1981-08-17
#> 920                     Jack Fox           Jack               Fox 1996-09-01
#> 921             Matthew Stafford        Matthew          Stafford 1988-02-07
#> 922                 Chase Daniel          Chase            Daniel 1986-10-07
#> 923                 David Blough          David            Blough 1995-07-31
#> 924              Kerryon Johnson        Kerryon           Johnson 1997-06-30
#> 925                D'Andre Swift        D'Andre             Swift 1999-01-14
#> 926                Kerrith Whyte        Kerrith             Whyte 1996-10-31
#> 927              Adrian Peterson         Adrian          Peterson 1985-03-21
#> 928                Dalyn Dawkins          Dalyn           Dawkins 1994-12-12
#> 929                  Nick Bawden           Nick            Bawden 1996-06-22
#> 930                 Duron Harmon          Duron            Harmon 1991-01-24
#> 931                  Will Harris           Will            Harris 1995-12-19
#> 932             Godwin Igwebuike         Godwin         Igwebuike 1994-09-10
#> 933                  Dan Skipper            Dan           Skipper 1994-09-20
#> 934        Halapoulivaati Vaitai Halapoulivaati            Vaitai 1993-06-16
#> 935                  Matt Nelson           Matt            Nelson 1995-12-19
#> 936                Taylor Decker         Taylor            Decker 1993-08-23
#> 937                Tyrell Crosby         Tyrell            Crosby 1995-09-05
#> 938                    Khari Lee          Khari               Lee 1992-01-16
#> 939                 Jerell Adams         Jerell             Adams 1992-12-31
#> 940                  Jesse James          Jesse             James 1994-06-04
#> 941                   Alize Mack          Alize              Mack 1997-03-29
#> 942                Hunter Bryant         Hunter            Bryant 1998-08-20
#> 943               T.J. Hockenson           T.J.         Hockenson 1997-07-03
#> 944                  Jamal Agnew          Jamal             Agnew 1995-04-03
#> 945                  Tom Kennedy            Tom           Kennedy 1996-07-29
#> 946                 Mohamed Sanu        Mohamed              Sanu 1989-08-23
#> 947                 Marvin Jones         Marvin             Jones 1990-03-12
#> 948               Danny Amendola          Danny          Amendola 1985-11-02
#> 949               Quintez Cephus        Quintez            Cephus 1998-04-01
#> 950                Victor Bolden         Victor            Bolden 1995-04-04
#> 951             Geronimo Allison       Geronimo           Allison 1994-01-18
#> 952               Kenny Golladay          Kenny          Golladay 1993-11-03
#> 953                Corey Linsley          Corey           Linsley 1991-07-27
#> 954                  Jake Hanson           Jake            Hanson 1997-04-29
#> 955              Parry Nickerson          Parry         Nickerson 1994-10-11
#> 956             Chandon Sullivan        Chandon          Sullivan 1996-08-07
#> 957                   Kevin King          Kevin              King 1995-05-05
#> 958             KeiVarae Russell       KeiVarae           Russell 1993-10-19
#> 959              Tramon Williams         Tramon          Williams 1983-03-16
#> 960              Jaire Alexander          Jaire         Alexander 1997-02-09
#> 961               Ka'dar Hollman         Ka'dar           Hollman 1994-09-18
#> 962                 Josh Jackson           Josh           Jackson 1996-04-03
#> 963                  Kabion Ento         Kabion              Ento 1996-01-03
#> 964                  Adrian Amos         Adrian              Amos 1993-04-29
#> 965                  Henry Black          Henry             Black 1997-01-03
#> 966                 Vernon Scott         Vernon             Scott 1997-09-11
#> 967                 Raven Greene          Raven            Greene 1995-02-02
#> 968             Stanford Samuels       Stanford           Samuels 1999-02-23
#> 969                   Dean Lowry           Dean             Lowry 1994-06-09
#> 970                   Billy Winn          Billy              Winn 1989-04-15
#> 971               Delontae Scott       Delontae             Scott 1997-01-21
#> 972             Montravius Adams     Montravius             Adams 1995-07-24
#> 973                  Tipa Galeai           Tipa            Galeai 1997-02-26
#> 974                Kingsley Keke       Kingsley              Keke 1996-09-26
#> 975                 Anthony Rush        Anthony              Rush 1996-09-01
#> 976          Willington Previlon     Willington          Previlon 1997-05-19
#> 977               Damon Harrison          Damon          Harrison 1988-11-29
#> 978                  Brian Price          Brian             Price 1994-06-24
#> 979                  Lane Taylor           Lane            Taylor 1989-11-22
#> 980                   Ben Braden            Ben            Braden 1994-03-09
#> 981                  Rick Wagner           Rick            Wagner 1989-10-21
#> 982                 Zack Johnson           Zack           Johnson 1997-01-19
#> 983               Elgton Jenkins         Elgton           Jenkins 1995-12-26
#> 984                Lucas Patrick          Lucas           Patrick 1993-07-30
#> 985                   Jon Runyan            Jon            Runyan 1997-08-08
#> 986              Simon Stepaniak          Simon         Stepaniak 1997-05-15
#> 987                 Mason Crosby          Mason            Crosby 1984-09-03
#> 988                De'Jon Harris         De'Jon            Harris 1997-11-01
#> 989                Preston Smith        Preston             Smith 1992-11-17
#> 990                  Rashan Gary         Rashan              Gary 1997-12-03
#> 991              Jonathan Garvin       Jonathan            Garvin 1999-07-28
#> 992                   Oren Burks           Oren             Burks 1995-03-21
#> 993                   Ty Summers             Ty           Summers 1995-12-31
#> 994              Za'Darius Smith      Za'Darius             Smith 1992-09-08
#> 995                  Krys Barnes           Krys            Barnes 1998-04-02
#> 996                 Kamal Martin          Kamal            Martin 1998-06-17
#> 997                 Randy Ramsey          Randy            Ramsey 1995-09-07
#> 998                James Burgess          James           Burgess 1994-03-09
#> 999            Christian Kirksey      Christian           Kirksey 1992-08-31
#> 1000              Hunter Bradley         Hunter           Bradley 1994-05-21
#> 1001                 Kenny Clark          Kenny             Clark 1995-10-04
#> 1002             Tyler Lancaster          Tyler         Lancaster 1994-11-04
#> 1003                Ryan Winslow           Ryan           Winslow 1994-04-30
#> 1004                  J.K. Scott           J.K.             Scott 1995-10-30
#> 1005               Aaron Rodgers          Aaron           Rodgers 1983-12-02
#> 1006                   Tim Boyle            Tim             Boyle 1994-10-03
#> 1007                 Jordan Love         Jordan              Love 1998-11-02
#> 1008                 John Lovett           John            Lovett 1996-04-25
#> 1009             Dexter Williams         Dexter          Williams 1997-01-06
#> 1010                  Mike Weber           Mike             Weber 1997-08-25
#> 1011              Patrick Taylor        Patrick            Taylor 1998-04-29
#> 1012                 Aaron Jones          Aaron             Jones 1994-12-02
#> 1013                 Tyler Ervin          Tyler             Ervin 1993-10-07
#> 1014                 A.J. Dillon           A.J.            Dillon 1998-05-02
#> 1015             Jamaal Williams         Jamaal          Williams 1995-04-03
#> 1016              Darnell Savage        Darnell            Savage 1997-07-30
#> 1017                Will Redmond           Will           Redmond 1993-12-28
#> 1018                   Ryan Pope           Ryan              Pope 1996-10-17
#> 1019                Billy Turner          Billy            Turner 1991-10-17
#> 1020               Yosuah Nijman         Yosuah            Nijman 1996-01-02
#> 1021             David Bakhtiari          David         Bakhtiari 1991-09-30
#> 1022              Jared Veldheer          Jared          Veldheer 1987-06-14
#> 1023              Marcedes Lewis       Marcedes             Lewis 1984-05-19
#> 1024            Jace Sternberger           Jace       Sternberger 1996-06-26
#> 1025            Dominique Dafney      Dominique            Dafney 1997-06-03
#> 1026              Josiah Deguara         Josiah           Deguara 1997-02-14
#> 1027                 Isaac Nauta          Isaac             Nauta 1997-05-21
#> 1028             Bronson Kaufusi        Bronson           Kaufusi 1991-07-06
#> 1029               Robert Tonyan         Robert            Tonyan 1994-04-30
#> 1030           Davis Koppenhaver          Davis       Koppenhaver 1996-01-24
#> 1031               Davante Adams        Davante             Adams 1992-12-24
#> 1032                Malik Taylor          Malik            Taylor 1995-12-21
#> 1033             Reggie Begelton         Reggie          Begelton 1993-08-31
#> 1034       Equanimeous St. Brown    Equanimeous         St. Brown 1996-09-30
#> 1035                 Caleb Scott          Caleb             Scott 1996-02-08
#> 1036                Seth Roberts           Seth           Roberts 1991-02-22
#> 1037            Darrius Shepherd        Darrius          Shepherd 1995-11-01
#> 1038                Allen Lazard          Allen            Lazard 1995-12-11
#> 1039                Tavon Austin          Tavon            Austin 1990-03-15
#> 1040    Marquez Valdes-Scantling        Marquez  Valdes-Scantling 1994-10-10
#> 1041              Juwann Winfree         Juwann           Winfree 1996-09-04
#> 1042              Devin Funchess          Devin          Funchess 1994-05-21
#> 1043                 Nick Martin           Nick            Martin 1993-04-29
#> 1044                 Cohl Cabral           Cohl            Cabral 1998-02-11
#> 1045            Beau Benzschawel           Beau       Benzschawel 1995-09-10
#> 1046              Jonathan Owens       Jonathan             Owens 1995-07-22
#> 1047           Vernon Hargreaves         Vernon        Hargreaves 1995-06-03
#> 1048                   John Reid           John              Reid 1996-05-15
#> 1049              Lonnie Johnson         Lonnie           Johnson 1995-11-04
#> 1050                 Mark Fields           Mark            Fields 1996-10-10
#> 1051                Bradley Roby        Bradley              Roby 1992-05-01
#> 1052           Cornell Armstrong        Cornell         Armstrong 1995-09-22
#> 1053              Phillip Gaines        Phillip            Gaines 1991-04-04
#> 1054            Brandon Williams        Brandon          Williams 1992-09-09
#> 1055               Keion Crossen          Keion           Crossen 1996-04-17
#> 1056               Gareon Conley         Gareon            Conley 1995-06-29
#> 1057                 Eric Murray           Eric            Murray 1994-01-07
#> 1058                  A.J. Moore           A.J.             Moore 1995-12-15
#> 1059                  Geno Stone           Geno             Stone 1999-04-19
#> 1060                Jacob Martin          Jacob            Martin 1995-12-11
#> 1061             Charles Omenihu        Charles           Omenihu 1997-08-20
#> 1062              Carlos Watkins         Carlos           Watkins 1993-12-05
#> 1063                   J.J. Watt           J.J.              Watt 1989-03-22
#> 1064              Ross Blacklock           Ross         Blacklock 1998-07-09
#> 1065                   P.J. Hall           P.J.              Hall 1995-04-05
#> 1066                Corey Liuget          Corey            Liuget 1990-03-18
#> 1067                Willie Henry         Willie             Henry 1994-03-20
#> 1068            Eddie Vanderdoes          Eddie        Vanderdoes 1994-10-13
#> 1069            Auzoyah Alufohai        Auzoyah          Alufohai 1996-10-16
#> 1070             Hjalte Froholdt         Hjalte          Froholdt 1996-08-20
#> 1071              Senio Kelemete          Senio          Kelemete 1990-05-10
#> 1072                 Zach Fulton           Zach            Fulton 1991-09-23
#> 1073            Ka'imi Fairbairn         Ka'imi         Fairbairn 1994-01-29
#> 1074                  Dylan Cole          Dylan              Cole 1994-05-19
#> 1075               Curtis Bolton         Curtis            Bolton 1995-12-18
#> 1076         Benardrick McKinney     Benardrick          McKinney 1992-11-19
#> 1077                   Nate Hall           Nate              Hall 1996-04-06
#> 1078             Peter Kalambayi          Peter         Kalambayi 1995-06-26
#> 1079             Zach Cunningham           Zach        Cunningham 1994-12-02
#> 1080            Whitney Mercilus        Whitney          Mercilus 1990-07-21
#> 1081                Tyrell Adams         Tyrell             Adams 1992-04-11
#> 1082           Jonathan Greenard       Jonathan          Greenard 1997-05-25
#> 1083                Duke Ejiofor           Duke           Ejiofor 1995-04-24
#> 1084           Emmanuel Ellerbee       Emmanuel          Ellerbee 1996-11-20
#> 1085            Brennan Scarlett        Brennan          Scarlett 1993-07-31
#> 1086                Kyle Emanuel           Kyle           Emanuel 1991-08-16
#> 1087               Anthony Kukwa        Anthony             Kukwa 1992-10-30
#> 1088              Jonathan Weeks       Jonathan             Weeks 1986-02-17
#> 1089                Brandon Dunn        Brandon              Dunn 1992-09-05
#> 1090                Andrew Brown         Andrew             Brown 1995-12-30
#> 1091                 Bryan Anger          Bryan             Anger 1988-10-06
#> 1092              Deshaun Watson        Deshaun            Watson 1995-09-14
#> 1093                 AJ McCarron             AJ          McCarron 1990-09-13
#> 1094                 Josh McCown           Josh            McCown 1979-07-04
#> 1095           Dontrell Hilliard       Dontrell          Hilliard 1995-02-26
#> 1096                Buddy Howell          Buddy            Howell 1996-03-27
#> 1097               David Johnson          David           Johnson 1991-12-16
#> 1098            Scottie Phillips        Scottie          Phillips 1997-10-06
#> 1099                Duke Johnson           Duke           Johnson 1993-09-23
#> 1100            Cullen Gillaspia         Cullen         Gillaspia 1995-05-12
#> 1101              Michael Thomas        Michael            Thomas 1990-03-17
#> 1102                 Justin Reid         Justin              Reid 1997-02-15
#> 1103                 Brent Qvale          Brent             Qvale 1991-03-11
#> 1104                Tytus Howard          Tytus            Howard 1996-05-23
#> 1105            Roderick Johnson       Roderick           Johnson 1995-11-28
#> 1106               Max Scharping            Max         Scharping 1996-08-10
#> 1107               Laremy Tunsil         Laremy            Tunsil 1994-08-02
#> 1108                Charlie Heck        Charlie              Heck 1996-11-20
#> 1109             Jordan Steckler         Jordan          Steckler 1996-07-16
#> 1110                Jordan Akins         Jordan             Akins 1992-04-19
#> 1111               Pharaoh Brown        Pharaoh             Brown 1994-05-04
#> 1112                Darren Fells         Darren             Fells 1986-04-22
#> 1113              Kahale Warring         Kahale           Warring 1997-03-23
#> 1114                Randall Cobb        Randall              Cobb 1990-08-22
#> 1115             Steven Mitchell         Steven          Mitchell 1994-05-02
#> 1116                 Chad Hansen           Chad            Hansen 1995-01-18
#> 1117                 Keke Coutee           Keke            Coutee 1997-01-14
#> 1118               Damion Ratley         Damion            Ratley 1995-04-16
#> 1119              Isaiah Coulter         Isaiah           Coulter 1998-09-18
#> 1120                 J'Mon Moore          J'Mon             Moore 1995-05-23
#> 1121                 Will Fuller           Will            Fuller 1994-04-16
#> 1122               Artavis Scott        Artavis             Scott 1994-10-12
#> 1123               Brandin Cooks        Brandin             Cooks 1993-09-25
#> 1124                  Ryan Kelly           Ryan             Kelly 1993-05-30
#> 1125                   Joey Hunt           Joey              Hunt 1994-02-22
#> 1126                   Sam Jones            Sam             Jones 1996-02-21
#> 1127                 T.J. Carrie           T.J.            Carrie 1990-07-28
#> 1128              Roderic Teamer        Roderic            Teamer 1997-05-12
#> 1129                Tremon Smith         Tremon             Smith 1996-07-20
#> 1130                 Rock Ya-Sin           Rock            Ya-Sin 1996-05-23
#> 1131                 Nick Nelson           Nick            Nelson 1996-10-16
#> 1132               Xavier Rhodes         Xavier            Rhodes 1990-06-19
#> 1133             Anthony Chesley        Anthony           Chesley 1996-05-31
#> 1134              Isaiah Rodgers         Isaiah           Rodgers 1998-01-07
#> 1135                 Kenny Moore          Kenny             Moore 1995-08-23
#> 1136                Marvell Tell        Marvell              Tell 1996-08-02
#> 1137              Andre Chachere          Andre          Chachere 1996-02-10
#> 1138           Ibraheim Campbell       Ibraheim          Campbell 1992-05-13
#> 1139             Will Sunderland           Will        Sunderland 1996-09-11
#> 1140             Julian Blackmon         Julian          Blackmon 1998-08-24
#> 1141                 George Odum         George              Odum 1993-11-03
#> 1142                Malik Hooker          Malik            Hooker 1996-04-02
#> 1143                Tyquan Lewis         Tyquan             Lewis 1995-01-30
#> 1144                Denico Autry         Denico             Autry 1990-07-15
#> 1145                Kemoko Turay         Kemoko             Turay 1995-07-11
#> 1146              Justin Houston         Justin           Houston 1989-01-21
#> 1147          Al-Quadin Muhammad      Al-Quadin          Muhammad 1995-03-28
#> 1148                  Ben Banogu            Ben            Banogu 1996-01-19
#> 1149              Chris Williams          Chris          Williams 1998-06-16
#> 1150               Kameron Cline        Kameron             Cline 1998-02-19
#> 1151           Taylor Stallworth         Taylor        Stallworth 1995-08-18
#> 1152              Robert Windsor         Robert           Windsor 1997-01-15
#> 1153            DeForest Buckner       DeForest           Buckner 1994-03-17
#> 1154              Mark Glowinski           Mark         Glowinski 1992-05-03
#> 1155              Quenton Nelson        Quenton            Nelson 1996-03-19
#> 1156                Danny Pinter          Danny            Pinter 1996-06-19
#> 1157             Jake Eldrenkamp           Jake        Eldrenkamp 1994-03-04
#> 1158         Rodrigo Blankenship        Rodrigo       Blankenship 1997-01-29
#> 1159              Darius Leonard         Darius           Leonard 1995-07-27
#> 1160               Matthew Adams        Matthew             Adams 1995-12-12
#> 1161              Anthony Walker        Anthony            Walker 1995-08-08
#> 1162                 Najee Goode          Najee             Goode 1989-06-04
#> 1163                  Skai Moore           Skai             Moore 1995-01-08
#> 1164               Bobby Okereke          Bobby           Okereke 1996-07-29
#> 1165              Jordan Glasgow         Jordan           Glasgow 1996-06-28
#> 1166             Chris Covington          Chris         Covington 1996-01-03
#> 1167                  E.J. Speed           E.J.             Speed 1995-06-01
#> 1168              Zaire Franklin          Zaire          Franklin 1996-07-02
#> 1169                 Luke Rhodes           Luke            Rhodes 1992-12-02
#> 1170              Grover Stewart         Grover           Stewart 1993-10-20
#> 1171               Austin Rehkow         Austin            Rehkow 1995-03-17
#> 1172           Rigoberto Sanchez      Rigoberto           Sanchez 1994-09-08
#> 1173                  Ryan Allen           Ryan             Allen 1990-02-28
#> 1174             Jacoby Brissett         Jacoby          Brissett 1992-12-11
#> 1175                  Chad Kelly           Chad             Kelly 1994-03-26
#> 1176                 Jacob Eason          Jacob             Eason 1997-11-17
#> 1177               Philip Rivers         Philip            Rivers 1981-12-08
#> 1178                Nyheim Hines         Nyheim             Hines 1996-11-12
#> 1179              Jordan Wilkins         Jordan           Wilkins 1994-07-18
#> 1180             Darius Anderson         Darius          Anderson 1997-09-10
#> 1181             Jonathan Taylor       Jonathan            Taylor 1999-01-19
#> 1182                 Marlon Mack         Marlon              Mack 1996-03-07
#> 1183                Paul Perkins           Paul           Perkins 1994-11-16
#> 1184              Darius Jackson         Darius           Jackson 1993-12-01
#> 1185                Khari Willis          Khari            Willis 1996-05-07
#> 1186                Tavon Wilson          Tavon            Wilson 1990-03-19
#> 1187              Rolan Milligan          Rolan          Milligan 1994-08-16
#> 1188              Le'Raven Clark       Le'Raven             Clark 1993-04-22
#> 1189            Carter O'Donnell         Carter         O'Donnell 1998-12-23
#> 1190            Anthony Castonzo        Anthony          Castonzo 1988-08-09
#> 1191                Casey Tucker          Casey            Tucker 1995-09-26
#> 1192                 Will Holden           Will            Holden 1993-09-14
#> 1193                  Chaz Green           Chaz             Green 1992-04-08
#> 1194                Braden Smith         Braden             Smith 1996-03-25
#> 1195              Elijah Nkansah         Elijah           Nkansah 1994-12-28
#> 1196               J'Marcus Webb       J'Marcus              Webb 1988-08-08
#> 1197               Jordan Thomas         Jordan            Thomas 1996-08-02
#> 1198              Andrew Vollert         Andrew           Vollert 1995-03-15
#> 1199                  Jack Doyle           Jack             Doyle 1990-05-05
#> 1200                 Mo Alie-Cox             Mo          Alie-Cox 1993-09-19
#> 1201                 Noah Togiai           Noah            Togiai 1997-07-06
#> 1202                 Trey Burton           Trey            Burton 1991-10-29
#> 1203                Farrod Green         Farrod             Green 1997-06-10
#> 1204               Dezmon Patmon         Dezmon            Patmon 1998-08-06
#> 1205             Parris Campbell         Parris          Campbell 1997-07-16
#> 1206            DeMichael Harris      DeMichael            Harris 1998-07-12
#> 1207                 J.J. Nelson           J.J.            Nelson 1992-04-24
#> 1208            Daurice Fountain        Daurice          Fountain 1995-12-22
#> 1209                Ashton Dulin         Ashton             Dulin 1997-05-15
#> 1210               Gary Jennings           Gary          Jennings 1997-03-07
#> 1211                 Zach Pascal           Zach            Pascal 1994-12-18
#> 1212                 T.Y. Hilton           T.Y.            Hilton 1989-11-14
#> 1213             Michael Pittman        Michael           Pittman 1997-10-05
#> 1214                  Evan Boehm           Evan             Boehm 1993-08-19
#> 1215                 D.J. Hayden           D.J.            Hayden 1990-06-27
#> 1216                  Greg Mabin           Greg             Mabin 1994-06-25
#> 1217              Rashaan Melvin        Rashaan            Melvin 1989-10-02
#> 1218                Nate Meadors           Nate           Meadors 1997-02-13
#> 1219              Brandon Rusnak        Brandon            Rusnak 1995-07-11
#> 1220                Josiah Scott         Josiah             Scott 1999-04-05
#> 1221                Sidney Jones         Sidney             Jones 1996-05-21
#> 1222                  Luq Barcoo            Luq            Barcoo 1998-07-27
#> 1223               Quenton Meeks        Quenton             Meeks 1997-06-20
#> 1224              C.J. Henderson           C.J.         Henderson 1998-09-30
#> 1225            Chris Claybrooks          Chris        Claybrooks 1997-07-17
#> 1226                 Tre Herndon            Tre           Herndon 1996-03-05
#> 1227              Andrew Wingard         Andrew           Wingard 1996-12-05
#> 1228              Doug Middleton           Doug         Middleton 1993-09-25
#> 1229                  Josh Nurse           Josh             Nurse 1996-07-17
#> 1230                 Adam Gotsis           Adam            Gotsis 1992-09-23
#> 1231              Reggie Gilbert         Reggie           Gilbert 1993-04-01
#> 1232                  Josh Allen           Josh             Allen 1997-07-13
#> 1233            K'Lavon Chaisson        K'Lavon          Chaisson 1999-07-25
#> 1234               Dawuane Smoot        Dawuane             Smoot 1995-03-02
#> 1235               Rodney Gunter         Rodney            Gunter 1992-01-19
#> 1236             Lerentee McCray       Lerentee            McCray 1990-08-26
#> 1237                    Al Woods             Al             Woods 1987-03-25
#> 1238               Daniel Ekuale         Daniel            Ekuale 1994-01-13
#> 1239                 Taven Bryan          Taven             Bryan 1996-03-11
#> 1240                  Abry Jones           Abry             Jones 1991-09-08
#> 1241                 Doug Costin           Doug            Costin 1997-10-05
#> 1242                 Caraun Reid         Caraun              Reid 1991-11-23
#> 1243                 Daniel Ross         Daniel              Ross 1993-03-15
#> 1244                 Gabe Wright           Gabe            Wright 1992-04-03
#> 1245                Bruce Miller          Bruce            Miller 1987-08-06
#> 1246               Tyler Shatley          Tyler           Shatley 1991-05-05
#> 1247                   A.J. Cann           A.J.              Cann 1991-10-23
#> 1248              Andrew Norwell         Andrew           Norwell 1991-10-25
#> 1249              Brandon Linder        Brandon            Linder 1992-01-25
#> 1250      Tre'Vour Wallace-Simms       Tre'Vour     Wallace-Simms 1997-09-25
#> 1251            Stephen Hauschka        Stephen          Hauschka 1985-06-29
#> 1252                   Jon Brown            Jon             Brown 1992-12-07
#> 1253                  Josh Lambo           Josh             Lambo 1990-11-19
#> 1254               Aldrick Rosas        Aldrick             Rosas 1994-12-30
#> 1255            Chapelle Russell       Chapelle           Russell 1997-01-20
#> 1256        Shaquille Quarterman      Shaquille        Quarterman 1997-10-28
#> 1257                Joe Schobert            Joe          Schobert 1993-11-06
#> 1258             Quincy Williams         Quincy          Williams 1996-08-28
#> 1259            Joe Giles-Harris            Joe      Giles-Harris 1997-04-01
#> 1260                Dakota Allen         Dakota             Allen 1995-11-02
#> 1261              Kamalei Correa        Kamalei            Correa 1994-04-27
#> 1262                 Leon Jacobs           Leon            Jacobs 1995-10-03
#> 1263                  Myles Jack          Myles              Jack 1995-09-03
#> 1264                  Nate Evans           Nate             Evans 1998-02-27
#> 1265                 Aaron Lynch          Aaron             Lynch 1993-03-08
#> 1266               Ross Matiscik           Ross          Matiscik 1996-09-13
#> 1267              Davon Hamilton          Davon          Hamilton 1997-02-01
#> 1268           Dontavius Russell      Dontavius           Russell 1995-09-18
#> 1269            Cameron Nizialek        Cameron          Nizialek 1995-03-10
#> 1270                 Logan Cooke          Logan             Cooke 1995-07-28
#> 1271                  Jake Luton           Jake             Luton 1996-04-11
#> 1272                Mike Glennon           Mike           Glennon 1989-12-12
#> 1273             Gardner Minshew        Gardner           Minshew 1996-05-16
#> 1274               Devine Ozigbo         Devine            Ozigbo 1996-10-02
#> 1275            Ryquell Armstead        Ryquell          Armstead 1996-10-30
#> 1276              Chris Thompson          Chris          Thompson 1990-10-20
#> 1277             Nathan Cottrell         Nathan          Cottrell 1996-08-02
#> 1278              James Robinson          James          Robinson 1998-08-09
#> 1279              Craig Reynolds          Craig          Reynolds 1996-06-15
#> 1280             Dare Ogunbowale           Dare        Ogunbowale 1994-05-04
#> 1281               Jarrod Wilson         Jarrod            Wilson 1994-02-09
#> 1282               Daniel Thomas         Daniel            Thomas 1998-07-01
#> 1283                  Josh Jones           Josh             Jones 1994-09-20
#> 1284              Garrett McGhin        Garrett            McGhin 1995-10-13
#> 1285                  Ben Bartch            Ben            Bartch 1998-07-22
#> 1286                KC McDermott             KC         McDermott 1996-04-18
#> 1287             Will Richardson           Will        Richardson 1996-01-04
#> 1288                 Derwin Gray         Derwin              Gray 1995-05-10
#> 1289                Cam Robinson            Cam          Robinson 1995-10-09
#> 1290            Austen Pleasants         Austen         Pleasants 1997-08-22
#> 1291               Jawaan Taylor         Jawaan            Taylor 1997-11-25
#> 1292                Eric Saubert           Eric           Saubert 1994-05-01
#> 1293         James O'Shaughnessy          James     O'Shaughnessy 1992-01-14
#> 1294               Matt Flanagan           Matt          Flanagan 1995-03-26
#> 1295                Tyler Eifert          Tyler            Eifert 1990-09-08
#> 1296                Ben Ellefson            Ben          Ellefson 1996-09-01
#> 1297                 Tyler Davis          Tyler             Davis 1997-04-02
#> 1298                 Josh Oliver           Josh            Oliver 1997-03-21
#> 1299                Terry Godwin          Terry            Godwin 1996-10-23
#> 1300                 Keelan Cole         Keelan              Cole 1993-04-20
#> 1301              Michael Walker        Michael            Walker 1996-10-29
#> 1302               Damion Willis         Damion            Willis 1997-06-20
#> 1303                Josh Hammond           Josh           Hammond 1998-07-24
#> 1304              Dede Westbrook           Dede         Westbrook 1993-11-21
#> 1305            Laviska Shenault        Laviska          Shenault 1998-10-05
#> 1306                  D.J. Chark           D.J.             Chark 1996-09-23
#> 1307                Chris Conley          Chris            Conley 1992-10-25
#> 1308                  Bug Howard            Bug            Howard 1994-11-28
#> 1309              Collin Johnson         Collin           Johnson 1997-09-23
#> 1310              Daniel Kilgore         Daniel           Kilgore 1987-12-18
#> 1311             Darryl Williams         Darryl          Williams 1997-06-10
#> 1312               Austin Reiter         Austin            Reiter 1991-11-27
#> 1313            Antonio Hamilton        Antonio          Hamilton 1993-01-24
#> 1314                  Alex Brown           Alex             Brown 1996-08-30
#> 1315            Bashaud Breeland        Bashaud          Breeland 1992-01-30
#> 1316             Thakarius Keyes      Thakarius             Keyes 1997-11-09
#> 1317              L'Jarius Sneed       L'Jarius             Sneed 1997-01-21
#> 1318               Rashad Fenton         Rashad            Fenton 1997-02-17
#> 1319               Chris Lammons          Chris           Lammons 1996-01-31
#> 1320             Charvarius Ward     Charvarius              Ward 1996-05-16
#> 1321               Deandre Baker        Deandre             Baker 1997-09-04
#> 1322              Juan Thornhill           Juan         Thornhill 1995-10-19
#> 1323             Daniel Sorensen         Daniel          Sorensen 1990-03-05
#> 1324              Rodney Clemons         Rodney           Clemons 1996-12-28
#> 1325                 Alex Okafor           Alex            Okafor 1991-02-08
#> 1326                    Tim Ward            Tim              Ward 1997-08-11
#> 1327               Taco Charlton           Taco          Charlton 1994-11-07
#> 1328                 Frank Clark          Frank             Clark 1993-06-14
#> 1329               Demone Harris         Demone            Harris 1995-12-30
#> 1330            Tanoh Kpassagnon          Tanoh        Kpassagnon 1994-06-14
#> 1331               Michael Danna        Michael             Danna 1997-12-04
#> 1332              Austin Edwards         Austin           Edwards 1997-08-27
#> 1333             Khalen Saunders         Khalen          Saunders 1996-08-09
#> 1334                 Tyler Clark          Tyler             Clark 1998-07-25
#> 1335            Tershawn Wharton       Tershawn           Wharton 1998-06-25
#> 1336                 Chris Jones          Chris             Jones 1994-07-03
#> 1337              Bryan Witzmann          Bryan          Witzmann 1990-06-16
#> 1338             Kelechi Osemele        Kelechi           Osemele 1989-06-24
#> 1339           Stefen Wisniewski         Stefen        Wisniewski 1989-03-22
#> 1340     Laurent Duvernay-Tardif        Laurent   Duvernay-Tardif 1991-02-11
#> 1341              Patrick Omameh        Patrick            Omameh 1989-12-29
#> 1342             Nick Allegretti           Nick        Allegretti 1996-04-21
#> 1343             Harrison Butker       Harrison            Butker 1995-07-14
#> 1344             Dorian O'Daniel         Dorian          O'Daniel 1994-09-04
#> 1345                  Willie Gay         Willie               Gay 1998-02-15
#> 1346               Damien Wilson         Damien            Wilson 1993-05-28
#> 1347            Anthony Hitchens        Anthony          Hitchens 1992-06-10
#> 1348                 Ben Niemann            Ben           Niemann 1995-07-27
#> 1349              Emmanuel Smith       Emmanuel             Smith 1995-07-25
#> 1350               Darius Harris         Darius            Harris 1996-01-17
#> 1351                  Omari Cobb          Omari              Cobb 1997-05-31
#> 1352            James Winchester          James        Winchester 1989-08-06
#> 1353                 Mike Pennel           Mike            Pennel 1991-05-09
#> 1354               Derrick Nnadi        Derrick             Nnadi 1996-05-09
#> 1355             Dustin Colquitt         Dustin          Colquitt 1982-05-06
#> 1356              Tommy Townsend          Tommy          Townsend 1996-11-12
#> 1357             Patrick Mahomes        Patrick           Mahomes 1995-09-17
#> 1358                  Matt Moore           Matt             Moore 1984-08-09
#> 1359                  Chad Henne           Chad             Henne 1985-07-02
#> 1360               Jordan Ta'amu         Jordan            Ta'amu 1997-12-10
#> 1361             Damien Williams         Damien          Williams 1992-04-03
#> 1362             Anthony Sherman        Anthony           Sherman 1988-12-11
#> 1363             Darwin Thompson         Darwin          Thompson 1997-02-12
#> 1364              Elijah McGuire         Elijah           McGuire 1994-06-01
#> 1365             Darrel Williams         Darrel          Williams 1995-04-15
#> 1366                Le'Veon Bell        Le'Veon              Bell 1992-02-18
#> 1367       Clyde Edwards-Helaire          Clyde   Edwards-Helaire 1999-04-11
#> 1368                Armani Watts         Armani             Watts 1996-03-19
#> 1369              Tyrann Mathieu         Tyrann           Mathieu 1992-05-13
#> 1370                Mike Remmers           Mike           Remmers 1989-04-11
#> 1371                Andrew Wylie         Andrew             Wylie 1994-08-19
#> 1372                 Eric Fisher           Eric            Fisher 1991-01-05
#> 1373                 Lucas Niang          Lucas             Niang 1998-08-18
#> 1374                Yasir Durant          Yasir            Durant 1998-05-21
#> 1375             Martinas Rankin       Martinas            Rankin 1994-10-20
#> 1376           Mitchell Schwartz       Mitchell          Schwartz 1989-06-08
#> 1377         Prince Tega Wanogho    Prince Tega           Wanogho 1997-11-22
#> 1378                 Deon Yelder           Deon            Yelder 1995-03-06
#> 1379           Ricky Seals-Jones          Ricky       Seals-Jones 1995-03-15
#> 1380                Travis Kelce         Travis             Kelce 1989-10-05
#> 1381                 Sean Culkin           Sean            Culkin 1993-06-11
#> 1382                 Evan Baylis           Evan            Baylis 1993-11-18
#> 1383                 Nick Keizer           Nick            Keizer 1995-05-02
#> 1384           Demarcus Robinson       Demarcus          Robinson 1994-09-21
#> 1385             Maurice Ffrench        Maurice           Ffrench 1998-01-01
#> 1386                Tajae Sharpe          Tajae            Sharpe 1994-12-23
#> 1387               Sammy Watkins          Sammy           Watkins 1993-06-14
#> 1388               Chad Williams           Chad          Williams 1994-10-19
#> 1389                 Joe Fortson            Joe           Fortson 1995-12-07
#> 1390            Antonio Callaway        Antonio          Callaway 1997-01-09
#> 1391              Mecole Hardman         Mecole           Hardman 1998-03-12
#> 1392               Gehrig Dieter         Gehrig            Dieter 1993-02-24
#> 1393               Byron Pringle          Byron           Pringle 1993-11-17
#> 1394                 Tyreek Hill         Tyreek              Hill 1994-03-01
#> 1395                 Marcus Kemp         Marcus              Kemp 1995-08-14
#> 1396               Austin Blythe         Austin            Blythe 1992-06-16
#> 1397                 Brian Allen          Brian             Allen 1995-10-11
#> 1398                   Troy Hill           Troy              Hill 1991-08-29
#> 1399                  David Long          David              Long 1998-02-06
#> 1400                Donte Deayon          Donte            Deayon 1994-01-28
#> 1401                Jalen Ramsey          Jalen            Ramsey 1994-10-24
#> 1402            Darious Williams        Darious          Williams 1993-03-15
#> 1403                 Juju Hughes           Juju            Hughes 1998-07-19
#> 1404                John Johnson           John           Johnson 1995-12-19
#> 1405                  Nick Scott           Nick             Scott 1995-05-17
#> 1406               Jordan Fuller         Jordan            Fuller 1998-03-04
#> 1407                   J.R. Reed           J.R.              Reed 1996-03-11
#> 1408              Tyrique McGhee        Tyrique            McGhee 1998-08-11
#> 1409                Derek Rivers          Derek            Rivers 1994-05-09
#> 1410                  Morgan Fox         Morgan               Fox 1994-09-12
#> 1411              Jonah Williams          Jonah          Williams 1995-08-17
#> 1412            Michael Brockers        Michael          Brockers 1990-12-21
#> 1413                  Eric Banks           Eric             Banks 1998-01-30
#> 1414                Aaron Donald          Aaron            Donald 1991-05-23
#> 1415            A'Shawn Robinson        A'Shawn          Robinson 1995-03-21
#> 1416              Michael Hoecht        Michael            Hoecht 1997-10-05
#> 1417           Marquise Copeland       Marquise          Copeland 1997-05-09
#> 1418                 Jamil Demby          Jamil             Demby 1996-06-20
#> 1419             Jeremiah Kolone       Jeremiah            Kolone 1994-10-23
#> 1420             Joseph Noteboom         Joseph          Noteboom 1995-06-19
#> 1421               David Edwards          David           Edwards 1997-03-20
#> 1422              Austin Corbett         Austin           Corbett 1995-09-05
#> 1423             Coleman Shelton        Coleman           Shelton 1995-07-28
#> 1424                 Kai Forbath            Kai           Forbath 1987-09-02
#> 1425            Austin MacGinnis         Austin         MacGinnis 1995-05-04
#> 1426                    Matt Gay           Matt               Gay 1994-03-15
#> 1427                 Kenny Young          Kenny             Young 1994-11-15
#> 1428            Derrick Moncrief        Derrick          Moncrief 1993-06-25
#> 1429                 Troy Reeder           Troy            Reeder 1994-09-13
#> 1430          Ogbonnia Okoronkwo       Ogbonnia         Okoronkwo 1995-04-24
#> 1431               Leonard Floyd        Leonard             Floyd 1992-09-08
#> 1432                 Micah Kiser          Micah             Kiser 1995-01-25
#> 1433               Justin Lawler         Justin            Lawler 1994-12-23
#> 1434              Justin Hollins         Justin           Hollins 1996-01-15
#> 1435               Samson Ebukam         Samson            Ebukam 1995-05-09
#> 1436          Christian Rozeboom      Christian          Rozeboom 1997-01-30
#> 1437               Terrell Lewis        Terrell             Lewis 1998-08-25
#> 1438               Jachai Polite         Jachai            Polite 1997-03-30
#> 1439               Travin Howard         Travin            Howard 1996-05-10
#> 1440               Steven Wirtel         Steven            Wirtel 1997-10-03
#> 1441                 Colin Holba          Colin             Holba 1994-07-08
#> 1442               Jake McQuaide           Jake          McQuaide 1987-12-07
#> 1443                 Greg Gaines           Greg            Gaines 1996-05-06
#> 1444        Sebastian Joseph-Day      Sebastian        Joseph-Day 1995-03-21
#> 1445              Brandon Wright        Brandon            Wright 1997-02-18
#> 1446               Johnny Hekker         Johnny            Hekker 1990-02-08
#> 1447                John Wolford           John           Wolford 1995-10-16
#> 1448               Devlin Hodges         Devlin            Hodges 1996-04-12
#> 1449               Blake Bortles          Blake           Bortles 1992-04-28
#> 1450               Bryce Perkins          Bryce           Perkins 1996-12-20
#> 1451                  Jared Goff          Jared              Goff 1994-10-14
#> 1452                   Cam Akers            Cam             Akers 1999-06-22
#> 1453              Raymond Calais        Raymond            Calais 1998-04-02
#> 1454                Xavier Jones         Xavier             Jones 1997-08-24
#> 1455           Darrell Henderson        Darrell         Henderson 1997-08-19
#> 1456               Malcolm Brown        Malcolm             Brown 1993-05-15
#> 1457                 Taylor Rapp         Taylor              Rapp 1997-12-22
#> 1458                Jake Gervase           Jake           Gervase 1995-09-18
#> 1459             Terrell Burgess        Terrell           Burgess 1998-11-12
#> 1460              Rob Havenstein            Rob        Havenstein 1992-05-13
#> 1461             Chandler Brewer       Chandler            Brewer 1997-06-12
#> 1462            Tremayne Anchrum       Tremayne           Anchrum 1998-06-24
#> 1463            Andrew Whitworth         Andrew         Whitworth 1981-12-12
#> 1464                 Bobby Evans          Bobby             Evans 1997-03-24
#> 1465              Gerald Everett         Gerald           Everett 1994-06-25
#> 1466              Brycen Hopkins         Brycen           Hopkins 1997-03-27
#> 1467                Tyler Higbee          Tyler            Higbee 1993-01-01
#> 1468             Kendall Blanton        Kendall           Blanton 1995-11-10
#> 1469                Johnny Mundt         Johnny             Mundt 1994-11-23
#> 1470                Robert Woods         Robert             Woods 1992-04-10
#> 1471               Van Jefferson            Van         Jefferson 1996-07-26
#> 1472            Trishton Jackson       Trishton           Jackson 1998-03-09
#> 1473                  J.J. Koski           J.J.             Koski 1996-12-27
#> 1474                 Cooper Kupp         Cooper              Kupp 1993-06-15
#> 1475               Josh Reynolds           Josh          Reynolds 1995-02-16
#> 1476              Nsimba Webster         Nsimba           Webster 1996-01-27
#> 1477                Mike Pouncey           Mike           Pouncey 1989-07-24
#> 1478                  Cole Toner           Cole             Toner 1994-03-13
#> 1479           Tevaughn Campbell       Tevaughn          Campbell 1993-06-14
#> 1480             Brandon Facyson        Brandon           Facyson 1994-09-08
#> 1481               Michael Davis        Michael             Davis 1995-01-06
#> 1482               Casey Hayward          Casey           Hayward 1989-09-09
#> 1483                Chris Harris          Chris            Harris 1989-06-18
#> 1484              Nasir Adderley          Nasir          Adderley 1997-05-31
#> 1485               Jahleel Addae        Jahleel             Addae 1990-01-24
#> 1486                John Brannon           John           Brannon 1998-03-10
#> 1487                Donte Vaughn          Donte            Vaughn 1997-10-12
#> 1488                Derwin James         Derwin             James 1996-08-03
#> 1489             Jessie Lemonier         Jessie          Lemonier 1997-01-31
#> 1490                   Joey Bosa           Joey              Bosa 1995-07-11
#> 1491               Melvin Ingram         Melvin            Ingram 1989-04-26
#> 1492               Isaac Rochell          Isaac           Rochell 1995-04-22
#> 1493                 Joe Gaziano            Joe           Gaziano 1996-09-27
#> 1494               Uchenna Nwosu        Uchenna             Nwosu 1996-12-28
#> 1495               Jerry Tillery          Jerry           Tillery 1996-10-08
#> 1496                  T.J. Smith           T.J.             Smith 1997-04-19
#> 1497                Justin Jones         Justin             Jones 1996-08-28
#> 1498            Cortez Broughton         Cortez         Broughton 1996-09-02
#> 1499                  Dan Feeney            Dan            Feeney 1994-05-29
#> 1500          Scott Quessenberry          Scott      Quessenberry 1995-03-23
#> 1501              Nathan Gilliam         Nathan           Gilliam 1997-07-06
#> 1502                   Ryan Groy           Ryan              Groy 1990-09-30
#> 1503                 Trai Turner           Trai            Turner 1993-06-14
#> 1504                Forrest Lamp        Forrest              Lamp 1994-02-20
#> 1505                 Ryan Hunter           Ryan            Hunter 1995-01-01
#> 1506             Michael Badgley        Michael           Badgley 1995-07-28
#> 1507              Drue Tranquill           Drue         Tranquill 1995-08-15
#> 1508             Malik Jefferson          Malik         Jefferson 1996-11-15
#> 1509                 Kyzir White          Kyzir             White 1996-03-24
#> 1510              Kenneth Murray        Kenneth            Murray 1998-11-16
#> 1511                  Nick Vigil           Nick             Vigil 1993-08-20
#> 1512             Denzel Perryman         Denzel          Perryman 1992-12-05
#> 1513           Cole Christiansen           Cole      Christiansen 1997-07-30
#> 1514                Emeke Egbule          Emeke            Egbule 1996-10-13
#> 1515                  B.J. Bello           B.J.             Bello 1994-10-31
#> 1516                  Cole Mazza           Cole             Mazza 1995-02-14
#> 1517               Linval Joseph         Linval            Joseph 1988-10-10
#> 1518               Damion Square         Damion            Square 1989-02-06
#> 1519              Breiden Fehoko        Breiden            Fehoko 1996-10-15
#> 1520             Lachlan Edwards        Lachlan           Edwards 1992-04-27
#> 1521                     Ty Long             Ty              Long 1993-04-06
#> 1522                Tyrod Taylor          Tyrod            Taylor 1989-08-03
#> 1523                Easton Stick         Easton             Stick 1995-09-15
#> 1524              Justin Herbert         Justin           Herbert 1998-03-10
#> 1525               Joshua Kelley         Joshua            Kelley 1997-11-20
#> 1526               Austin Ekeler         Austin            Ekeler 1995-05-17
#> 1527             Darius Bradwell         Darius          Bradwell 1997-05-15
#> 1528              Troymaine Pope      Troymaine              Pope 1993-11-26
#> 1529               Kalen Ballage          Kalen           Ballage 1995-12-22
#> 1530                 Gabe Nabers           Gabe            Nabers 1997-11-05
#> 1531              Justin Jackson         Justin           Jackson 1996-04-22
#> 1532                Alohi Gilman          Alohi            Gilman 1997-09-17
#> 1533              Jaylen Watkins         Jaylen           Watkins 1991-11-27
#> 1534            Rayshawn Jenkins       Rayshawn           Jenkins 1994-01-25
#> 1535                    Sam Tevi            Sam              Tevi 1994-11-15
#> 1536                Trey Pipkins           Trey           Pipkins 1996-09-05
#> 1537                Storm Norton          Storm            Norton 1994-05-16
#> 1538                Bryan Bulaga          Bryan            Bulaga 1989-03-21
#> 1539             Tyree St. Louis          Tyree         St. Louis 1997-08-05
#> 1540                Hunter Henry         Hunter             Henry 1994-12-07
#> 1541               Donald Parham         Donald            Parham 1997-08-16
#> 1542                Virgil Green         Virgil             Green 1988-08-03
#> 1543                  Matt Sokol           Matt             Sokol 1995-11-09
#> 1544            Stephen Anderson        Stephen          Anderson 1993-01-30
#> 1545                  John Hurst           John             Hurst 1996-11-02
#> 1546               Tyron Johnson          Tyron           Johnson 1996-01-08
#> 1547                 Jason Moore          Jason             Moore 1995-06-23
#> 1548                Keenan Allen         Keenan             Allen 1992-04-27
#> 1549                   K.J. Hill           K.J.              Hill 1997-09-15
#> 1550                 Jeff Cotton           Jeff            Cotton 1997-04-17
#> 1551                    Joe Reed            Joe              Reed 1998-01-04
#> 1552                Jalen Guyton          Jalen            Guyton 1997-06-07
#> 1553               Mike Williams           Mike          Williams 1994-10-04
#> 1554               Erik Magnuson           Erik          Magnuson 1994-01-05
#> 1555               Rodney Hudson         Rodney            Hudson 1989-07-12
#> 1556                 Andre James          Andre             James 1997-05-02
#> 1557               Keisean Nixon        Keisean             Nixon 1997-06-22
#> 1558              Amik Robertson           Amik         Robertson 1998-07-06
#> 1559             Lamarcus Joyner       Lamarcus            Joyner 1990-11-27
#> 1560                  D.J. White           D.J.             White 1993-09-09
#> 1561                Daryl Worley          Daryl            Worley 1995-02-22
#> 1562               Damon Arnette          Damon           Arnette 1996-02-02
#> 1563               D.J. Killings           D.J.          Killings 1995-08-09
#> 1564              Trayvon Mullen        Trayvon            Mullen 1997-09-20
#> 1565              Isaiah Johnson         Isaiah           Johnson 1995-12-20
#> 1566                Nevin Lawson          Nevin            Lawson 1991-04-23
#> 1567              Kemah Siverand          Kemah          Siverand 1996-11-12
#> 1568                 Javin White          Javin             White 1997-02-21
#> 1569              Dallin Leavitt         Dallin           Leavitt 1994-08-08
#> 1570                 Erik Harris           Erik            Harris 1990-04-02
#> 1571                 Carl Nassib           Carl            Nassib 1993-04-12
#> 1572            Jeremiah Valoaga       Jeremiah           Valoaga 1994-11-15
#> 1573                David Irving          David            Irving 1993-08-18
#> 1574          Takkarist McKinley      Takkarist          McKinley 1995-11-02
#> 1575                 Chris Smith          Chris             Smith 1992-02-11
#> 1576              Clelin Ferrell         Clelin           Ferrell 1997-05-17
#> 1577                   Arden Key          Arden               Key 1996-05-03
#> 1578                 Maxx Crosby           Maxx            Crosby 1997-08-22
#> 1579                 Gerri Green          Gerri             Green 1995-09-14
#> 1580                Datone Jones         Datone             Jones 1990-07-24
#> 1581               Maurice Hurst        Maurice             Hurst 1995-05-09
#> 1582           Johnathan Hankins      Johnathan           Hankins 1992-03-30
#> 1583              Kendal Vickers         Kendal           Vickers 1995-05-23
#> 1584              Maliek Collins         Maliek           Collins 1995-04-08
#> 1585                 Alec Ingold           Alec            Ingold 1996-07-09
#> 1586               Denzelle Good       Denzelle              Good 1991-03-08
#> 1587                Gabe Jackson           Gabe           Jackson 1991-07-12
#> 1588            Richie Incognito         Richie         Incognito 1983-07-05
#> 1589               Lester Cotton         Lester            Cotton 1996-02-20
#> 1590                John Simpson           John           Simpson 1997-08-19
#> 1591              Dominik Eberle        Dominik            Eberle 1996-07-04
#> 1592              Daniel Carlson         Daniel           Carlson 1995-01-23
#> 1593                 Vic Beasley            Vic           Beasley 1992-07-08
#> 1594             Nicholas Morrow       Nicholas            Morrow 1995-07-10
#> 1595             Nick Kwiatkoski           Nick        Kwiatkoski 1993-05-26
#> 1596                 Tanner Muse         Tanner              Muse 1996-09-06
#> 1597            Raekwon McMillan        Raekwon          McMillan 1995-11-17
#> 1598              Cory Littleton           Cory         Littleton 1993-11-18
#> 1599                 Kyle Wilber           Kyle            Wilber 1989-04-26
#> 1600                Ukeme Eligwe          Ukeme            Eligwe 1994-04-27
#> 1601               James Onwualu          James           Onwualu 1994-09-04
#> 1602                  Trent Sieg          Trent              Sieg 1995-05-19
#> 1603                 Niles Scott          Niles             Scott 1995-09-30
#> 1604                   A.J. Cole           A.J.              Cole 1995-11-27
#> 1605                  Derek Carr          Derek              Carr 1991-03-28
#> 1606                 Kyle Sloter           Kyle            Sloter 1994-02-07
#> 1607             Nathan Peterman         Nathan          Peterman 1994-05-04
#> 1608              Marcus Mariota         Marcus           Mariota 1993-10-30
#> 1609             Devontae Booker       Devontae            Booker 1992-05-27
#> 1610                 Josh Jacobs           Josh            Jacobs 1998-02-11
#> 1611               Jalen Richard          Jalen           Richard 1993-10-15
#> 1612                Theo Riddick           Theo           Riddick 1991-05-04
#> 1613                  Jeff Heath           Jeff             Heath 1991-05-14
#> 1614             Rashaan Gaulden        Rashaan           Gaulden 1995-01-23
#> 1615             Johnathan Abram      Johnathan             Abram 1996-10-25
#> 1616              Brandon Parker        Brandon            Parker 1995-10-21
#> 1617              Kamaal Seymour         Kamaal           Seymour 1996-04-27
#> 1618               Trenton Brown        Trenton             Brown 1993-04-13
#> 1619           Jaryd Jones-Smith          Jaryd       Jones-Smith 1995-09-03
#> 1620               Kolton Miller         Kolton            Miller 1995-10-09
#> 1621                   Sam Young            Sam             Young 1987-06-24
#> 1622                 Nick Bowers           Nick            Bowers 1996-05-26
#> 1623                Nick O'Leary           Nick           O'Leary 1992-08-31
#> 1624               Darren Waller         Darren            Waller 1992-09-13
#> 1625                Jason Witten          Jason            Witten 1982-05-06
#> 1626               Derek Carrier          Derek           Carrier 1990-07-25
#> 1627               Foster Moreau         Foster            Moreau 1997-05-06
#> 1628        De'Mornay Pierson-El      De'Mornay        Pierson-El 1995-12-26
#> 1629                Robert Davis         Robert             Davis 1995-04-02
#> 1630                 Henry Ruggs          Henry             Ruggs 1999-01-24
#> 1631                  Trey Quinn           Trey             Quinn 1995-12-07
#> 1632             Tyrell Williams         Tyrell          Williams 1992-02-12
#> 1633                   Zay Jones            Zay             Jones 1995-03-30
#> 1634              Jalin Marshall          Jalin          Marshall 1995-07-21
#> 1635              Hunter Renfrow         Hunter           Renfrow 1995-12-21
#> 1636              Marcell Ateman        Marcell            Ateman 1994-09-16
#> 1637               Bryan Edwards          Bryan           Edwards 1998-11-13
#> 1638              Nelson Agholor         Nelson           Agholor 1993-05-24
#> 1639                 Keelan Doss         Keelan              Doss 1996-03-21
#> 1640                 Cameron Tom        Cameron               Tom 1995-06-21
#> 1641              Tyler Gauthier          Tyler          Gauthier 1997-06-29
#> 1642              Michael Deiter        Michael            Deiter 1996-09-03
#> 1643                  Ted Karras            Ted            Karras 1993-03-15
#> 1644                 Jamal Perry          Jamal             Perry 1994-10-23
#> 1645                 Byron Jones          Byron             Jones 1992-09-26
#> 1646                  Akeem King          Akeem              King 1992-08-29
#> 1647            Noah Igbinoghene           Noah       Igbinoghene 1999-11-27
#> 1648                 Nik Needham            Nik           Needham 1996-11-04
#> 1649               Xavien Howard         Xavien            Howard 1993-07-04
#> 1650                Bobby McCain          Bobby            McCain 1993-08-18
#> 1651               Brandon Jones        Brandon             Jones 1998-04-02
#> 1652                  Brian Cole          Brian              Cole 1997-04-03
#> 1653               Kavon Frazier          Kavon           Frazier 1994-08-11
#> 1654               Javaris Davis        Javaris             Davis 1996-12-26
#> 1655                 Nate Holley           Nate            Holley 1994-12-05
#> 1656                  Tino Ellis           Tino             Ellis 1997-10-15
#> 1657                 Zach Sieler           Zach            Sieler 1995-09-07
#> 1658                    Nick Coe           Nick               Coe 1997-08-12
#> 1659               Tyshun Render         Tyshun            Render 1997-03-28
#> 1660           Christian Wilkins      Christian           Wilkins 1995-12-20
#> 1661              Emmanuel Ogbah       Emmanuel             Ogbah 1993-11-06
#> 1662           Jason Strowbridge          Jason       Strowbridge 1996-09-10
#> 1663          Jonathan Ledbetter       Jonathan         Ledbetter 1997-09-12
#> 1664         Durval Queiroz Neto         Durval      Queiroz Neto 1992-08-27
#> 1665                Benito Jones         Benito             Jones 1997-11-27
#> 1666                   Ray Smith            Ray             Smith 1997-01-18
#> 1667                Chandler Cox       Chandler               Cox 1996-07-29
#> 1668                 Adam Pankey           Adam            Pankey 1994-02-02
#> 1669               Ereck Flowers          Ereck           Flowers 1994-04-25
#> 1670             Solomon Kindley        Solomon           Kindley 1997-07-03
#> 1671               Jason Sanders          Jason           Sanders 1995-11-16
#> 1672           Andrew Van Ginkel         Andrew        Van Ginkel 1995-07-01
#> 1673                 Shaq Lawson           Shaq            Lawson 1994-06-17
#> 1674                Vince Biegel          Vince            Biegel 1993-07-02
#> 1675           Kamu Grugier-Hill           Kamu      Grugier-Hill 1994-05-16
#> 1676               Calvin Munson         Calvin            Munson 1994-12-27
#> 1677                Kyle Van Noy           Kyle           Van Noy 1991-03-26
#> 1678                Sam Eguavoen            Sam          Eguavoen 1993-02-22
#> 1679               Kylan Johnson          Kylan           Johnson 1996-12-23
#> 1680                Jerome Baker         Jerome             Baker 1996-12-25
#> 1681             Elandon Roberts        Elandon           Roberts 1994-04-22
#> 1682                Donald Payne         Donald             Payne 1994-07-12
#> 1683                Rex Sunahara            Rex          Sunahara 1996-10-09
#> 1684              Blake Ferguson          Blake          Ferguson 1997-04-21
#> 1685               Raekwon Davis        Raekwon             Davis 1997-06-10
#> 1686              Davon Godchaux          Davon          Godchaux 1994-11-11
#> 1687                  Matt Haack           Matt             Haack 1994-07-25
#> 1688                 Jake Rudock           Jake            Rudock 1993-01-21
#> 1689              Tua Tagovailoa            Tua        Tagovailoa 1998-03-02
#> 1690                Reid Sinnett           Reid           Sinnett 1997-02-05
#> 1691            Ryan Fitzpatrick           Ryan       Fitzpatrick 1982-11-24
#> 1692               Patrick Laird        Patrick             Laird 1995-08-17
#> 1693                Salvon Ahmed         Salvon             Ahmed 1998-12-29
#> 1694                 Matt Breida           Matt            Breida 1995-02-28
#> 1695                Myles Gaskin          Myles            Gaskin 1997-02-15
#> 1696               Malcolm Perry        Malcolm             Perry 1997-04-19
#> 1697          DeAndre Washington        DeAndre        Washington 1993-02-22
#> 1698             Jordan Scarlett         Jordan          Scarlett 1996-02-09
#> 1699                 Lynn Bowden           Lynn            Bowden 1997-10-14
#> 1700           Clayton Fejedelem        Clayton         Fejedelem 1993-06-02
#> 1701                   Eric Rowe           Eric              Rowe 1992-10-03
#> 1702                 Robert Hunt         Robert              Hunt 1996-08-25
#> 1703            Jonathan Hubbard       Jonathan           Hubbard 1997-08-17
#> 1704            Julien Davenport         Julien         Davenport 1995-01-09
#> 1705              Austin Jackson         Austin           Jackson 1999-08-11
#> 1706                 Jesse Davis          Jesse             Davis 1991-09-15
#> 1707               Durham Smythe         Durham            Smythe 1995-08-09
#> 1708                Adam Shaheen           Adam           Shaheen 1994-10-24
#> 1709               Chris Myarick          Chris           Myarick 1995-10-06
#> 1710                Mike Gesicki           Mike           Gesicki 1995-10-03
#> 1711               Albert Wilson         Albert            Wilson 1992-07-12
#> 1712                Kirk Merritt           Kirk           Merritt 1997-01-05
#> 1713                Mack Hollins           Mack           Hollins 1993-09-16
#> 1714                Jakeem Grant         Jakeem             Grant 1992-10-30
#> 1715              DeVante Parker        DeVante            Parker 1993-01-20
#> 1716                 Allen Hurns          Allen             Hurns 1991-11-12
#> 1717                Andre Patton          Andre            Patton 1994-05-28
#> 1718                 Isaiah Ford         Isaiah              Ford 1996-02-09
#> 1719            Preston Williams        Preston          Williams 1997-03-27
#> 1720            Garrett Bradbury        Garrett          Bradbury 1995-06-20
#> 1721                 Brett Jones          Brett             Jones 1991-07-29
#> 1722            Cameron Dantzler        Cameron          Dantzler 1998-09-03
#> 1723                 Mike Hughes           Mike            Hughes 1997-02-11
#> 1724               Harrison Hand       Harrison              Hand 1998-11-12
#> 1725                Jeff Gladney           Jeff           Gladney 1996-12-12
#> 1726                 Holton Hill         Holton              Hill 1997-03-28
#> 1727                 Dylan Mabin          Dylan             Mabin 1997-09-14
#> 1728               Marcus Sayles         Marcus            Sayles 1994-10-01
#> 1729                 Chris Jones          Chris             Jones 1995-08-13
#> 1730          Cordrea Tankersley        Cordrea        Tankersley 1993-11-19
#> 1731                   Tae Hayes            Tae             Hayes 1997-08-19
#> 1732                   Kris Boyd           Kris              Boyd 1996-09-12
#> 1733                George Iloka         George             Iloka 1990-03-31
#> 1734              Anthony Harris        Anthony            Harris 1991-10-09
#> 1735                Curtis Riley         Curtis             Riley 1992-07-18
#> 1736                  Myles Dorn          Myles              Dorn 1998-06-25
#> 1737               Josh Metellus           Josh          Metellus 1998-01-21
#> 1738                 Luther Kirk         Luther              Kirk 1996-11-07
#> 1739             Ifeadi Odenigbo         Ifeadi          Odenigbo 1994-04-08
#> 1740             Danielle Hunter       Danielle            Hunter 1994-10-29
#> 1741                Jalyn Holmes          Jalyn            Holmes 1996-01-25
#> 1742             Eddie Yarbrough          Eddie         Yarbrough 1993-04-24
#> 1743           Abdullah Anderson       Abdullah          Anderson 1996-01-24
#> 1744              Kenny Willekes          Kenny          Willekes 1997-07-22
#> 1745                 D.J. Wonnum           D.J.            Wonnum 1997-10-31
#> 1746                 James Lynch          James             Lynch 1999-01-20
#> 1747           Hercules Mata'afa       Hercules          Mata'afa 1995-09-18
#> 1748              Jaleel Johnson         Jaleel           Johnson 1994-07-12
#> 1749                    C.J. Ham           C.J.               Ham 1993-07-22
#> 1750                 Zack Bailey           Zack            Bailey 1995-11-08
#> 1751                   Dru Samia            Dru             Samia 1997-08-22
#> 1752               Dakota Dozier         Dakota            Dozier 1991-04-30
#> 1753              Ezra Cleveland           Ezra         Cleveland 1998-05-08
#> 1754                 Kyle Hinton           Kyle            Hinton 1998-02-27
#> 1755                  Dan Bailey            Dan            Bailey 1988-01-26
#> 1756             Taylor Bertolet         Taylor          Bertolet 1992-10-24
#> 1757                 Greg Joseph           Greg            Joseph 1994-08-04
#> 1758               Cameron Smith        Cameron             Smith 1997-03-26
#> 1759             Hardy Nickerson          Hardy         Nickerson 1994-01-05
#> 1760              Eric Kendricks           Eric         Kendricks 1992-02-29
#> 1761                 Blake Lynch          Blake             Lynch 1997-02-14
#> 1762                  Ben Gedeon            Ben            Gedeon 1994-10-16
#> 1763                 Eric Wilson           Eric            Wilson 1994-09-26
#> 1764               Ryan Connelly           Ryan          Connelly 1995-10-03
#> 1765                Anthony Barr        Anthony              Barr 1992-03-18
#> 1766            Jordan Brailford         Jordan         Brailford 1995-10-09
#> 1767                  Todd Davis           Todd             Davis 1992-05-17
#> 1768                    Troy Dye           Troy               Dye 1996-09-18
#> 1769              Austin Cutting         Austin           Cutting 1996-10-27
#> 1770              Andrew DePaola         Andrew           DePaola 1987-07-28
#> 1771              Shamar Stephen         Shamar           Stephen 1991-02-25
#> 1772              Michael Pierce        Michael            Pierce 1992-11-06
#> 1773                 Armon Watts          Armon             Watts 1996-07-22
#> 1774            Britton Colquitt        Britton          Colquitt 1985-03-20
#> 1775               Jake Browning           Jake          Browning 1996-04-11
#> 1776                Kirk Cousins           Kirk           Cousins 1988-08-19
#> 1777                Nate Stanley           Nate           Stanley 1997-08-26
#> 1778                Sean Mannion           Sean           Mannion 1992-04-25
#> 1779              Ameer Abdullah          Ameer          Abdullah 1993-06-13
#> 1780                 Jake Bargas           Jake            Bargas 1996-11-28
#> 1781                  Mike Boone           Mike             Boone 1995-07-30
#> 1782                 Dalvin Cook         Dalvin              Cook 1995-08-10
#> 1783          Alexander Mattison      Alexander          Mattison 1998-06-19
#> 1784              Harrison Smith       Harrison             Smith 1989-02-02
#> 1785                 Rashod Hill         Rashod              Hill 1992-01-12
#> 1786                 Riley Reiff          Riley             Reiff 1988-12-01
#> 1787               Brian O'Neill          Brian           O'Neill 1995-09-15
#> 1788             Olisaemeka Udoh     Olisaemeka              Udoh 1997-02-14
#> 1789               Blake Brandel          Blake           Brandel 1997-01-23
#> 1790              Brandon Dillon        Brandon            Dillon 1997-04-30
#> 1791                Kyle Rudolph           Kyle           Rudolph 1989-11-09
#> 1792                   Irv Smith            Irv             Smith 1998-08-09
#> 1793                Hale Hentges           Hale           Hentges 1996-08-19
#> 1794               Tyler Conklin          Tyler           Conklin 1995-07-30
#> 1795                  Chad Beebe           Chad             Beebe 1994-06-01
#> 1796                 K.J. Osborn           K.J.            Osborn 1997-06-10
#> 1797                Adam Thielen           Adam           Thielen 1990-08-22
#> 1798             Olabisi Johnson        Olabisi           Johnson 1997-03-17
#> 1799                 Dan Chisena            Dan           Chisena 1997-02-25
#> 1800            Justin Jefferson         Justin         Jefferson 1999-06-16
#> 1801                 Corey Levin          Corey             Levin 1994-08-12
#> 1802              Dustin Woodard         Dustin           Woodard 1998-03-08
#> 1803               James Ferentz          James           Ferentz 1989-06-05
#> 1804               David Andrews          David           Andrews 1992-07-10
#> 1805               Marcus Martin         Marcus            Martin 1993-11-29
#> 1806               Justin Bethel         Justin            Bethel 1990-06-17
#> 1807               D'Angelo Ross       D'Angelo              Ross 1996-10-29
#> 1808             Stephon Gilmore        Stephon           Gilmore 1990-09-19
#> 1809             Michael Jackson        Michael           Jackson 1997-01-10
#> 1810              Jason McCourty          Jason          McCourty 1987-08-13
#> 1811              Jonathan Jones       Jonathan             Jones 1993-09-20
#> 1812            Joejuan Williams        Joejuan          Williams 1997-12-06
#> 1813                J.C. Jackson           J.C.           Jackson 1995-11-17
#> 1814                  Dee Virgin            Dee            Virgin 1993-10-29
#> 1815                 Kyle Dugger           Kyle            Dugger 1996-03-22
#> 1816                Myles Bryant          Myles            Bryant 1998-01-02
#> 1817              Devin McCourty          Devin          McCourty 1987-08-13
#> 1818                Nick Thurman           Nick           Thurman 1995-06-12
#> 1819                  John Simon           John             Simon 1990-10-14
#> 1820               Deatrich Wise       Deatrich              Wise 1994-07-26
#> 1821              Chase Winovich          Chase          Winovich 1995-04-19
#> 1822               Tashawn Bower        Tashawn             Bower 1995-02-18
#> 1823                 Bill Murray           Bill            Murray 1997-07-03
#> 1824                 Adam Butler           Adam            Butler 1994-04-12
#> 1825                Lawrence Guy       Lawrence               Guy 1990-03-17
#> 1826             Michael Barnett        Michael           Barnett 1997-07-11
#> 1827                Akeem Spence          Akeem            Spence 1991-11-29
#> 1828                Byron Cowart          Byron            Cowart 1996-05-20
#> 1829                  Dan Vitale            Dan            Vitale 1993-10-26
#> 1830               Jakob Johnson          Jakob           Johnson 1994-12-15
#> 1831             Shaquille Mason      Shaquille             Mason 1993-08-28
#> 1832               Ross Reynolds           Ross          Reynolds 1995-09-14
#> 1833              Michael Onwenu        Michael            Onwenu 1997-12-10
#> 1834                 Jordan Roos         Jordan              Roos 1993-07-06
#> 1835                 Najee Toran          Najee             Toran 1995-11-15
#> 1836                   Nick Folk           Nick              Folk 1984-11-05
#> 1837           Justin Rohrwasser         Justin        Rohrwasser 1996-12-07
#> 1838              Roberto Aguayo        Roberto            Aguayo 1994-05-17
#> 1839                  Terez Hall          Terez              Hall 1996-11-18
#> 1840           Anfernee Jennings       Anfernee          Jennings 1997-05-01
#> 1841                Brandon King        Brandon              King 1993-06-08
#> 1842                Cassh Maluia          Cassh            Maluia 1998-10-03
#> 1843            Shilique Calhoun       Shilique           Calhoun 1992-03-20
#> 1844                   Josh Uche           Josh              Uche 1998-09-18
#> 1845            Ja'Whaun Bentley       Ja'Whaun           Bentley 1996-08-24
#> 1846            Dont'a Hightower         Dont'a         Hightower 1990-03-12
#> 1847            Brandon Copeland        Brandon          Copeland 1991-07-02
#> 1848                 Joe Cardona            Joe           Cardona 1992-04-16
#> 1849                  Carl Davis           Carl             Davis 1992-03-02
#> 1850                  Beau Allen           Beau             Allen 1991-11-14
#> 1851                 Jake Bailey           Jake            Bailey 1997-06-18
#> 1852                  Cam Newton            Cam            Newton 1989-05-11
#> 1853                 Brian Hoyer          Brian             Hoyer 1985-10-13
#> 1854              Jacob Dolegala          Jacob          Dolegala 1996-10-07
#> 1855             Jarrett Stidham        Jarrett           Stidham 1996-08-08
#> 1856                 James White          James             White 1992-02-03
#> 1857                 Sony Michel           Sony            Michel 1995-02-17
#> 1858                Rex Burkhead            Rex          Burkhead 1990-07-02
#> 1859               Damien Harris         Damien            Harris 1997-02-11
#> 1860              Brandon Bolden        Brandon            Bolden 1990-01-26
#> 1861                 J.J. Taylor           J.J.            Taylor 1998-01-04
#> 1862               Patrick Chung        Patrick             Chung 1987-08-19
#> 1863                  Cody Davis           Cody             Davis 1989-06-06
#> 1864             Adrian Phillips         Adrian          Phillips 1992-03-28
#> 1865             Terrence Brooks       Terrence            Brooks 1992-03-02
#> 1866               Justin Herron         Justin            Herron 1995-11-27
#> 1867               Yodny Cajuste          Yodny           Cajuste 1996-02-21
#> 1868            Korey Cunningham          Korey        Cunningham 1995-05-17
#> 1869          Jermaine Eluemunor       Jermaine         Eluemunor 1994-12-13
#> 1870                  Joe Thuney            Joe            Thuney 1992-11-18
#> 1871               Marcus Cannon         Marcus            Cannon 1988-05-06
#> 1872              Caleb Benenoch          Caleb          Benenoch 1994-08-02
#> 1873                 Isaiah Wynn         Isaiah              Wynn 1995-12-09
#> 1874                 David Wells          David             Wells 1995-05-02
#> 1875                Dalton Keene         Dalton             Keene 1999-04-14
#> 1876                Matt LaCosse           Matt           LaCosse 1992-09-21
#> 1877                Devin Asiasi          Devin            Asiasi 1997-08-14
#> 1878                   Ryan Izzo           Ryan              Izzo 1995-12-21
#> 1879                   Jake Burt           Jake              Burt 1996-08-25
#> 1880                Rashod Berry         Rashod             Berry 1996-10-14
#> 1881            Quincy Adeboyejo         Quincy         Adeboyejo 1995-05-26
#> 1882                Damiere Byrd        Damiere              Byrd 1993-01-27
#> 1883               Jakobi Meyers         Jakobi            Meyers 1996-11-09
#> 1884                Isaiah Zuber         Isaiah             Zuber 1997-04-15
#> 1885              Julian Edelman         Julian           Edelman 1986-05-22
#> 1886                 Devin Smith          Devin             Smith 1992-03-03
#> 1887                  Devin Ross          Devin              Ross 1995-08-12
#> 1888            Gunner Olszewski         Gunner         Olszewski 1996-11-26
#> 1889          Kristian Wilkerson       Kristian         Wilkerson 1997-01-10
#> 1890              Donte Moncrief          Donte          Moncrief 1993-08-06
#> 1891                 Matt Slater           Matt            Slater 1985-09-09
#> 1892                 Marqise Lee        Marqise               Lee 1991-11-25
#> 1893                N'Keal Harry         N'Keal             Harry 1997-12-17
#> 1894                  Will Clapp           Will             Clapp 1995-12-10
#> 1895                  Erik McCoy           Erik             McCoy 1997-08-27
#> 1896            Patrick Robinson        Patrick          Robinson 1987-09-07
#> 1897             Janoris Jenkins        Janoris           Jenkins 1988-10-29
#> 1898                 Grant Haley          Grant             Haley 1996-01-06
#> 1899           Marshon Lattimore        Marshon         Lattimore 1996-05-20
#> 1900               Justin Hardee         Justin            Hardee 1994-02-07
#> 1901                 Ken Crawley            Ken           Crawley 1993-02-08
#> 1902            Johnson Bademosi        Johnson          Bademosi 1990-07-23
#> 1903               P.J. Williams           P.J.          Williams 1993-06-01
#> 1904             Marcus Williams         Marcus          Williams 1996-09-08
#> 1905            Keith Washington          Keith        Washington 1996-12-20
#> 1906             D.J. Swearinger           D.J.        Swearinger 1991-09-01
#> 1907              Anthony Lanier        Anthony            Lanier 1993-05-08
#> 1908                 Will Clarke           Will            Clarke 1991-05-04
#> 1909            Trey Hendrickson           Trey       Hendrickson 1994-12-05
#> 1910                 Noah Spence           Noah            Spence 1994-01-08
#> 1911              Cameron Jordan        Cameron            Jordan 1989-07-10
#> 1912            Marcus Davenport         Marcus         Davenport 1996-09-04
#> 1913             Carl Granderson           Carl        Granderson 1996-12-18
#> 1914           Marcus Willoughby         Marcus        Willoughby 1998-07-26
#> 1915               Malcolm Roach        Malcolm             Roach 1998-06-09
#> 1916                  Shy Tuttle            Shy            Tuttle 1995-10-20
#> 1917                Jalen Dalton          Jalen            Dalton 1997-08-04
#> 1918                Ryan Glasgow           Ryan           Glasgow 1993-09-30
#> 1919              Anthony Zettel        Anthony            Zettel 1992-08-09
#> 1920              David Onyemata          David          Onyemata 1992-11-13
#> 1921             Christian Ringo      Christian             Ringo 1992-03-10
#> 1922             Sheldon Rankins        Sheldon           Rankins 1994-04-02
#> 1923                Malcom Brown         Malcom             Brown 1994-02-02
#> 1924              Michael Burton        Michael            Burton 1992-02-01
#> 1925                 Andrus Peat         Andrus              Peat 1993-11-04
#> 1926               Derrick Kelly        Derrick             Kelly 1995-08-23
#> 1927                  Cesar Ruiz          Cesar              Ruiz 1999-06-14
#> 1928                 James Hurst          James             Hurst 1991-12-17
#> 1929                 Nick Easton           Nick            Easton 1992-06-16
#> 1930                 Blair Walsh          Blair             Walsh 1990-01-08
#> 1931                    Wil Lutz            Wil              Lutz 1994-07-07
#> 1932                Chase Hansen          Chase            Hansen 1993-05-20
#> 1933               Demario Davis        Demario             Davis 1989-01-11
#> 1934                   Zack Baun           Zack              Baun 1996-12-30
#> 1935               Alex Anzalone           Alex          Anzalone 1994-09-22
#> 1936             Craig Robertson          Craig         Robertson 1988-02-11
#> 1937                Kaden Elliss          Kaden            Elliss 1995-07-10
#> 1938              Kwon Alexander           Kwon         Alexander 1994-08-03
#> 1939               Andrew Dowell         Andrew            Dowell 1996-11-16
#> 1940                 John Denney           John            Denney 1978-12-13
#> 1941                   Zach Wood           Zach              Wood 1993-01-10
#> 1942              Blake Gillikin          Blake          Gillikin 1998-01-21
#> 1943             Thomas Morstead         Thomas          Morstead 1986-03-08
#> 1944              Jameis Winston         Jameis           Winston 1994-01-06
#> 1945                  Drew Brees           Drew             Brees 1979-01-15
#> 1946                 Taysom Hill         Taysom              Hill 1990-08-23
#> 1947              Trevor Siemian         Trevor           Siemian 1991-12-26
#> 1948               Ty Montgomery             Ty        Montgomery 1993-01-22
#> 1949                  Tony Jones           Tony             Jones 1997-11-24
#> 1950                Alvin Kamara          Alvin            Kamara 1995-07-25
#> 1951             Darnell Holland        Darnell           Holland       <NA>
#> 1952             Latavius Murray       Latavius            Murray 1990-01-18
#> 1953           Dwayne Washington         Dwayne        Washington 1994-04-24
#> 1954                   J.T. Gray           J.T.              Gray 1996-01-18
#> 1955             Malcolm Jenkins        Malcolm           Jenkins 1987-12-20
#> 1956    Chauncey Gardner-Johnson       Chauncey   Gardner-Johnson 1997-12-20
#> 1957             Ethan Greenidge          Ethan         Greenidge 1997-09-10
#> 1958         Calvin Throckmorton         Calvin      Throckmorton 1996-08-16
#> 1959                Ryan Ramczyk           Ryan           Ramczyk 1994-04-22
#> 1960             Terron Armstead         Terron          Armstead 1991-07-23
#> 1961               Adam Trautman           Adam          Trautman 1997-02-05
#> 1962                   Josh Hill           Josh              Hill 1990-05-21
#> 1963                  Ethan Wolf          Ethan              Wolf 1995-11-07
#> 1964                   Cole Wick           Cole              Wick 1993-11-30
#> 1965                  Jared Cook          Jared              Cook 1987-04-07
#> 1966             Garrett Griffin        Garrett           Griffin 1994-03-04
#> 1967           Jason Vander Laan          Jason       Vander Laan 1992-09-22
#> 1968              Michael Thomas        Michael            Thomas 1993-03-03
#> 1969               Bennie Fowler         Bennie            Fowler 1991-06-10
#> 1970              Tre'Quan Smith       Tre'Quan             Smith 1996-01-07
#> 1971               Deonte Harris         Deonte            Harris 1997-12-04
#> 1972                 Malik Henry          Malik             Henry 1997-04-16
#> 1973         Lil'Jordan Humphrey     Lil'Jordan          Humphrey 1998-04-19
#> 1974                 Austin Carr         Austin              Carr 1993-12-25
#> 1975              Tommylee Lewis       Tommylee             Lewis 1992-10-24
#> 1976               Juwan Johnson          Juwan           Johnson 1996-09-13
#> 1977            Emmanuel Sanders       Emmanuel           Sanders 1987-03-17
#> 1978            Marquez Callaway        Marquez          Callaway 1998-03-27
#> 1979                Jake Lampman           Jake           Lampman 1993-06-11
#> 1980                  Nick Gates           Nick             Gates 1995-11-27
#> 1981              Spencer Pulley        Spencer            Pulley 1993-04-03
#> 1982          Jonotthan Harrison      Jonotthan          Harrison 1991-08-25
#> 1983                Isaac Yiadom          Isaac            Yiadom 1996-02-20
#> 1984                    Sam Beal            Sam              Beal 1996-08-30
#> 1985                  Ryan Lewis           Ryan             Lewis 1994-04-15
#> 1986               Quincy Wilson         Quincy            Wilson 1996-08-16
#> 1987               Darnay Holmes         Darnay            Holmes 1998-06-23
#> 1988             James Bradberry          James         Bradberry 1993-08-04
#> 1989             Jarren Williams         Jarren          Williams 1997-07-18
#> 1990              Adrian Colbert         Adrian           Colbert 1993-10-06
#> 1991                 Julian Love         Julian              Love 1998-03-19
#> 1992                Madre Harper          Madre            Harper 1997-10-13
#> 1993                  Logan Ryan          Logan              Ryan 1991-02-09
#> 1994             Xavier McKinney         Xavier          McKinney 1999-08-09
#> 1995             Breeland Speaks       Breeland            Speaks 1995-12-18
#> 1996               R.J. McIntosh           R.J.          McIntosh 1996-06-02
#> 1997                  Niko Lalos           Niko             Lalos 1997-06-25
#> 1998             Dexter Lawrence         Dexter          Lawrence 1997-11-12
#> 1999               Jabaal Sheard         Jabaal            Sheard 1989-05-10
#> 2000            Leonard Williams        Leonard          Williams 1994-06-20
#> 2001                   B.J. Hill           B.J.              Hill 1995-04-20
#> 2002                   David Moa          David               Moa 1996-06-14
#> 2003               Elijhaa Penny        Elijhaa             Penny 1993-08-17
#> 2004                  Chad Slade           Chad             Slade 1992-05-04
#> 2005              Will Hernandez           Will         Hernandez 1995-09-02
#> 2006               Kevin Zeitler          Kevin           Zeitler 1990-03-08
#> 2007               Shane Lemieux          Shane           Lemieux 1997-05-12
#> 2008               Kenny Wiggins          Kenny           Wiggins 1988-08-08
#> 2009                 Graham Gano         Graham              Gano 1987-04-09
#> 2010                  David Mayo          David              Mayo 1993-08-18
#> 2011                   Cam Brown            Cam             Brown 1998-04-01
#> 2012              Lorenzo Carter        Lorenzo            Carter 1995-12-10
#> 2013                Trent Harris          Trent            Harris 1995-09-17
#> 2014                 Tae Crowder            Tae           Crowder 1997-03-12
#> 2015             Carter Coughlin         Carter          Coughlin 1997-07-21
#> 2016              Oshane Ximines         Oshane           Ximines 1996-12-07
#> 2017               Devante Downs        Devante             Downs 1995-10-18
#> 2018              Blake Martinez          Blake          Martinez 1994-01-09
#> 2019              Jermaine Grace       Jermaine             Grace 1993-11-08
#> 2020                T.J. Brunson           T.J.           Brunson 1997-12-03
#> 2021              Kyler Fackrell          Kyler          Fackrell 1991-11-25
#> 2022               Carson Tinker         Carson            Tinker 1989-11-15
#> 2023               Casey Kreiter          Casey           Kreiter 1990-08-13
#> 2024              Austin Johnson         Austin           Johnson 1994-05-08
#> 2025            Dalvin Tomlinson         Dalvin         Tomlinson 1994-02-28
#> 2026                Ryan Santoso           Ryan           Santoso 1995-08-26
#> 2027                 Riley Dixon          Riley             Dixon 1993-08-24
#> 2028                Daniel Jones         Daniel             Jones 1997-05-27
#> 2029                  Colt McCoy           Colt             McCoy 1986-09-05
#> 2030                    Joe Webb            Joe              Webb 1986-11-14
#> 2031             Clayton Thorson        Clayton           Thorson 1995-06-15
#> 2032                 Alex Tanney           Alex            Tanney 1987-11-11
#> 2033          Sandro Platzgummer         Sandro       Platzgummer 1997-03-10
#> 2034                  Dion Lewis           Dion             Lewis 1990-09-27
#> 2035               Wayne Gallman          Wayne           Gallman 1994-10-01
#> 2036              Taquan Mizzell         Taquan           Mizzell 1993-10-21
#> 2037                Jordan Chunn         Jordan             Chunn 1995-01-02
#> 2038                   Rod Smith            Rod             Smith 1992-01-10
#> 2039              Saquon Barkley         Saquon           Barkley 1997-02-09
#> 2040               Alfred Morris         Alfred            Morris 1988-12-12
#> 2041             Jabrill Peppers        Jabrill           Peppers 1995-10-04
#> 2042                  Nate Ebner           Nate             Ebner 1988-12-14
#> 2043              Montre Hartage         Montre           Hartage 1997-06-16
#> 2044                  Matt Peart           Matt             Peart 1997-06-11
#> 2045              Jackson Barton        Jackson            Barton 1995-08-08
#> 2046                Nate Wozniak           Nate           Wozniak 1994-08-30
#> 2047               Andrew Thomas         Andrew            Thomas 1999-01-22
#> 2048             Cameron Fleming        Cameron           Fleming 1992-09-03
#> 2049                 Kyle Murphy           Kyle            Murphy 1998-05-18
#> 2050                 Nate Solder           Nate            Solder 1988-04-12
#> 2051                 Evan Engram           Evan            Engram 1994-09-02
#> 2052                 Kaden Smith          Kaden             Smith 1997-04-24
#> 2053                  Rysen John          Rysen              John 1997-12-20
#> 2054              Levine Toilolo         Levine           Toilolo 1991-07-30
#> 2055               Da'Mari Scott        Da'Mari             Scott 1995-08-08
#> 2056                 Golden Tate         Golden              Tate 1988-08-02
#> 2057               Johnny Holton         Johnny            Holton 1990-08-22
#> 2058                  C.J. Board           C.J.             Board 1993-12-12
#> 2059                 Austin Mack         Austin              Mack 1997-08-31
#> 2060              Darius Slayton         Darius           Slayton 1997-01-12
#> 2061                Alex Bachman           Alex           Bachman 1996-05-29
#> 2062                 David Sills          David             Sills 1996-05-29
#> 2063                Dante Pettis          Dante            Pettis 1995-10-23
#> 2064                   Cody Core           Cody              Core 1994-04-17
#> 2065            Sterling Shepard       Sterling           Shepard 1993-02-10
#> 2066               Corey Coleman          Corey           Coleman 1994-07-06
#> 2067             Connor McGovern         Connor          McGovern 1993-04-27
#> 2068            Leo Koloamatangi            Leo      Koloamatangi 1994-05-09
#> 2069                James Murray          James            Murray 1995-05-05
#> 2070                 Kyron Brown          Kyron             Brown 1996-05-26
#> 2071                 Brian Poole          Brian             Poole 1992-10-20
#> 2072            Corey Ballentine          Corey        Ballentine 1996-04-13
#> 2073               Arthur Maulet         Arthur            Maulet 1993-07-13
#> 2074             Blessuan Austin       Blessuan            Austin 1996-07-19
#> 2075             Matthias Farley       Matthias            Farley 1992-07-15
#> 2076                  Zane Lewis           Zane             Lewis 1998-04-06
#> 2077                  Bryce Hall          Bryce              Hall 1997-05-11
#> 2078                 Marcus Maye         Marcus              Maye 1993-03-09
#> 2079              Javelin Guidry        Javelin            Guidry 1998-08-06
#> 2080               Lamar Jackson          Lamar           Jackson 1998-04-13
#> 2081             Bennett Jackson        Bennett           Jackson 1991-09-16
#> 2082              Saquan Hampton         Saquan           Hampton 1995-12-12
#> 2083             Elijah Campbell         Elijah          Campbell 1995-08-24
#> 2084               Kyle Phillips           Kyle          Phillips 1997-05-05
#> 2085         John Franklin-Myers           John    Franklin-Myers 1996-09-26
#> 2086               Jabari Zuniga         Jabari            Zuniga 1997-08-14
#> 2087                  Bryce Huff          Bryce              Huff 1998-04-17
#> 2088              Henry Anderson          Henry          Anderson 1991-08-03
#> 2089          Folorunso Fatukasi      Folorunso          Fatukasi 1995-03-04
#> 2090                Trevon Coley         Trevon             Coley 1994-07-13
#> 2091                Tanzel Smart         Tanzel             Smart 1994-11-06
#> 2092             Nathan Shepherd         Nathan          Shepherd 1993-10-09
#> 2093                Josh Andrews           Josh           Andrews 1991-06-21
#> 2094                 Pat Elflein            Pat           Elflein 1994-07-06
#> 2095              Greg Van Roten           Greg         Van Roten 1990-02-26
#> 2096             Sergio Castillo         Sergio          Castillo 1990-11-01
#> 2097            Chase McLaughlin          Chase        McLaughlin 1996-04-09
#> 2098                  Sam Ficken            Sam            Ficken 1992-12-14
#> 2099               Alec Ogletree           Alec          Ogletree 1991-09-25
#> 2100               Brady Sheldon          Brady           Sheldon 1993-02-23
#> 2101               Paul Worrilow           Paul          Worrilow 1990-05-01
#> 2102            Patrick Onwuasor        Patrick          Onwuasor 1992-08-22
#> 2103                 C.J. Mosley           C.J.            Mosley 1992-06-19
#> 2104              Neville Hewitt        Neville            Hewitt 1993-04-06
#> 2105               Blake Cashman          Blake           Cashman 1996-05-10
#> 2106               Tarell Basham         Tarell            Basham 1994-03-18
#> 2107                Noah Dawkins           Noah           Dawkins 1997-08-13
#> 2108              Jordan Jenkins         Jordan           Jenkins 1994-07-01
#> 2109                Frankie Luvu        Frankie              Luvu 1996-09-19
#> 2110                Harvey Langi         Harvey             Langi 1992-09-24
#> 2111                 Bryce Hager          Bryce             Hager 1992-05-04
#> 2112                Sharif Finch         Sharif             Finch 1995-10-01
#> 2113             Thomas Hennessy         Thomas          Hennessy 1994-06-11
#> 2114            Quinnen Williams        Quinnen          Williams 1997-12-21
#> 2115                 Braden Mann         Braden              Mann 1997-11-24
#> 2116             Brandon Silvers        Brandon           Silvers 1994-05-09
#> 2117                 David Fales          David             Fales 1990-10-04
#> 2118                  Mike White           Mike             White 1995-03-25
#> 2119                  Joe Flacco            Joe            Flacco 1985-01-16
#> 2120                James Morgan          James            Morgan 1997-02-28
#> 2121                 Sam Darnold            Sam           Darnold 1997-06-05
#> 2122                  Ty Johnson             Ty           Johnson 1997-09-17
#> 2123              Pete Guerriero           Pete         Guerriero 1998-07-13
#> 2124             La'Mical Perine       La'Mical            Perine 1998-01-30
#> 2125                 Jalin Moore          Jalin             Moore 1995-11-28
#> 2126                  Frank Gore          Frank              Gore 1983-05-14
#> 2127                  Josh Adams           Josh             Adams 1996-10-29
#> 2128                J.T. Hassell           J.T.           Hassell 1995-08-14
#> 2129                Ashtyn Davis         Ashtyn             Davis 1996-10-10
#> 2130           Bradley McDougald        Bradley         McDougald 1990-11-15
#> 2131               Cameron Clark        Cameron             Clark 1997-11-16
#> 2132                  Alex Lewis           Alex             Lewis 1992-04-21
#> 2133             Conor McDermott          Conor         McDermott 1992-10-19
#> 2134                 George Fant         George              Fant 1992-07-19
#> 2135                Mekhi Becton          Mekhi            Becton 1999-04-18
#> 2136                 Chuma Edoga          Chuma             Edoga 1997-05-25
#> 2137                 Ross Travis           Ross            Travis 1993-01-09
#> 2138         Christopher Herndon    Christopher           Herndon 1996-02-23
#> 2139                Trevon Wesco         Trevon             Wesco 1995-09-12
#> 2140                Connor Davis         Connor             Davis 1994-10-20
#> 2141                Ryan Griffin           Ryan           Griffin 1990-01-11
#> 2142             Jamison Crowder        Jamison           Crowder 1993-06-17
#> 2143             Braxton Berrios        Braxton           Berrios 1995-10-06
#> 2144                 Josh Malone           Josh            Malone 1996-03-21
#> 2145             D.J. Montgomery           D.J.        Montgomery 1996-11-17
#> 2146                Josh Doctson           Josh           Doctson 1992-12-03
#> 2147                  Jeff Smith           Jeff             Smith 1997-04-21
#> 2148                 Denzel Mims         Denzel              Mims 1997-10-10
#> 2149                Jaleel Scott         Jaleel             Scott 1995-02-23
#> 2150              Lawrence Cager       Lawrence             Cager 1997-08-20
#> 2151                 Chris Hogan          Chris             Hogan 1987-10-24
#> 2152               Vyncint Smith        Vyncint             Smith 1996-06-09
#> 2153                Daniel Brown         Daniel             Brown 1992-05-26
#> 2154            Breshad Perriman        Breshad          Perriman 1993-09-10
#> 2155                 Luke Juriga           Luke            Juriga 1997-06-07
#> 2156                 Jason Kelce          Jason             Kelce 1987-11-05
#> 2157          Ross Pierschbacher           Ross     Pierschbacher 1995-06-05
#> 2158                 Darius Slay         Darius              Slay 1991-01-01
#> 2159               Kevon Seymour          Kevon           Seymour 1993-11-30
#> 2160       Nickell Robey-Coleman        Nickell     Robey-Coleman 1992-01-17
#> 2161             Cre'von LeBlanc        Cre'von           LeBlanc 1994-07-25
#> 2162                 Craig James          Craig             James 1996-04-29
#> 2163               Avonte Maddox         Avonte            Maddox 1996-03-31
#> 2164             Michael Jacquet        Michael           Jacquet 1997-01-29
#> 2165                 Lavert Hill         Lavert              Hill 1998-10-03
#> 2166               Rodney McLeod         Rodney            McLeod 1990-06-23
#> 2167              Shakial Taylor        Shakial            Taylor 1996-12-27
#> 2168                Elijah Riley         Elijah             Riley 1998-06-12
#> 2169               K'Von Wallace          K'Von           Wallace 1997-07-25
#> 2170             Grayland Arnold       Grayland            Arnold 1997-09-04
#> 2171             Jameson Houston        Jameson           Houston 1996-06-30
#> 2172                  Josh Sweat           Josh             Sweat 1997-03-29
#> 2173              Brandon Graham        Brandon            Graham 1988-04-03
#> 2174                 Vinny Curry          Vinny             Curry 1988-06-30
#> 2175                    Matt Leo           Matt               Leo 1992-05-08
#> 2176                  Joe Ostman            Joe            Ostman 1995-07-12
#> 2177               Derek Barnett          Derek           Barnett 1996-06-25
#> 2178            Raequan Williams        Raequan          Williams 1997-02-14
#> 2179                Fletcher Cox       Fletcher               Cox 1990-12-13
#> 2180              Javon Hargrave          Javon          Hargrave 1993-02-07
#> 2181             Hassan Ridgeway         Hassan          Ridgeway 1994-11-02
#> 2182               Malik Jackson          Malik           Jackson 1990-01-11
#> 2183                 T.Y. McGill           T.Y.            McGill 1992-11-23
#> 2184              Treyvon Hester        Treyvon            Hester 1992-09-21
#> 2185               Isaac Seumalo          Isaac           Seumalo 1993-10-29
#> 2186              Brandon Brooks        Brandon            Brooks 1989-08-19
#> 2187                 Nate Herbig           Nate            Herbig 1998-07-10
#> 2188                 Jamon Brown          Jamon             Brown 1993-03-15
#> 2189                  Matt Pryor           Matt             Pryor 1994-12-16
#> 2190                 Iosua Opeta          Iosua             Opeta 1996-08-15
#> 2191                Jake Elliott           Jake           Elliott 1995-01-21
#> 2192                Genard Avery         Genard             Avery 1995-04-26
#> 2193                T.J. Edwards           T.J.           Edwards 1996-08-12
#> 2194               Shaun Bradley          Shaun           Bradley 1997-04-08
#> 2195               Jatavis Brown        Jatavis             Brown 1994-02-18
#> 2196                  Duke Riley           Duke             Riley 1994-08-09
#> 2197                Rashad Smith         Rashad             Smith 1997-04-20
#> 2198              Alex Singleton           Alex         Singleton 1993-12-07
#> 2199               Davion Taylor         Davion            Taylor 1998-08-05
#> 2200                Nathan Gerry         Nathan             Gerry 1995-02-23
#> 2201                  Joe Bachie            Joe            Bachie 1998-02-26
#> 2202                 Rick Lovato           Rick            Lovato 1992-09-09
#> 2203            Cameron Johnston        Cameron          Johnston 1992-02-24
#> 2204                Arryn Siposs          Arryn            Siposs 1992-11-25
#> 2205                Nate Sudfeld           Nate           Sudfeld 1993-10-07
#> 2206                 Jalen Hurts          Jalen             Hurts 1998-08-07
#> 2207                Carson Wentz         Carson             Wentz 1992-12-30
#> 2208                  Nico Evans           Nico             Evans       <NA>
#> 2209               Jordan Howard         Jordan            Howard 1994-11-02
#> 2210            Elijah Holyfield         Elijah         Holyfield 1997-11-30
#> 2211               Miles Sanders          Miles           Sanders 1997-05-01
#> 2212              Adrian Killins         Adrian           Killins 1998-01-02
#> 2213                Boston Scott         Boston             Scott 1995-04-27
#> 2214               Corey Clement          Corey           Clement 1994-11-02
#> 2215               Jason Huntley          Jason           Huntley 1998-04-20
#> 2216                 Marcus Epps         Marcus              Epps 1996-01-27
#> 2217                   Rudy Ford           Rudy              Ford 1994-11-01
#> 2218                 Jalen Mills          Jalen             Mills 1994-04-06
#> 2219              Blake Countess          Blake          Countess 1993-08-08
#> 2220                Lane Johnson           Lane           Johnson 1990-05-08
#> 2221              Jordan Mailata         Jordan           Mailata 1997-03-31
#> 2222                  Brett Toth          Brett              Toth 1996-09-01
#> 2223               Jack Driscoll           Jack          Driscoll 1997-04-01
#> 2224               Andre Dillard          Andre           Dillard 1995-10-03
#> 2225                Jason Peters          Jason            Peters 1982-01-22
#> 2226                   Zach Ertz           Zach              Ertz 1990-11-10
#> 2227              Joshua Perkins         Joshua           Perkins 1993-08-05
#> 2228               Tyree Jackson          Tyree           Jackson 1997-11-07
#> 2229                 Jason Croom          Jason             Croom 1994-02-28
#> 2230              Dallas Goedert         Dallas           Goedert 1995-01-03
#> 2231                Caleb Wilson          Caleb            Wilson 1996-07-15
#> 2232               Hakeem Butler         Hakeem            Butler 1996-05-16
#> 2233             Richard Rodgers        Richard           Rodgers 1992-01-22
#> 2234            Marquise Goodwin       Marquise           Goodwin 1990-11-19
#> 2235                   Greg Ward           Greg              Ward 1995-07-12
#> 2236             Deontay Burnett        Deontay           Burnett 1997-10-04
#> 2237              Travis Fulgham         Travis           Fulgham 1995-09-13
#> 2238                Jalen Reagor          Jalen            Reagor 1999-01-02
#> 2239                Marcus Green         Marcus             Green 1996-08-13
#> 2240                Quez Watkins           Quez           Watkins 1998-06-09
#> 2241       J.J. Arcega-Whiteside           J.J.  Arcega-Whiteside 1996-12-31
#> 2242              Alshon Jeffery         Alshon           Jeffery 1990-02-14
#> 2243              DeSean Jackson         DeSean           Jackson 1986-12-01
#> 2244              John Hightower           John         Hightower 1996-05-31
#> 2245            Maurkice Pouncey       Maurkice           Pouncey 1989-07-24
#> 2246             J.C. Hassenauer           J.C.        Hassenauer 1995-09-15
#> 2247                Justin Layne         Justin             Layne 1998-01-12
#> 2248             Trevor Williams         Trevor          Williams 1993-09-15
#> 2249              Cameron Sutton        Cameron            Sutton 1995-02-27
#> 2250                   Joe Haden            Joe             Haden 1989-04-14
#> 2251                 Mike Hilton           Mike            Hilton 1994-03-09
#> 2252                James Pierre          James            Pierre 1996-09-16
#> 2253             Stephen Denmark        Stephen           Denmark 1996-04-20
#> 2254               Steven Nelson         Steven            Nelson 1993-01-22
#> 2255              Antoine Brooks        Antoine            Brooks 1998-10-28
#> 2256                  Sean Davis           Sean             Davis 1993-10-23
#> 2257                Marcus Allen         Marcus             Allen 1996-08-07
#> 2258               Chris Wormley          Chris           Wormley 1993-10-25
#> 2259               Cassius Marsh        Cassius             Marsh 1992-07-07
#> 2260              Henry Mondeaux          Henry          Mondeaux 1995-09-19
#> 2261                Isaiah Buggs         Isaiah             Buggs 1996-08-24
#> 2262                Tyson Alualu          Tyson            Alualu 1987-05-12
#> 2263               Stephon Tuitt        Stephon             Tuitt 1993-05-23
#> 2264               Calvin Taylor         Calvin            Taylor 1996-12-24
#> 2265             Cameron Heyward        Cameron           Heyward 1989-05-06
#> 2266                Carlos Davis         Carlos             Davis 1996-08-22
#> 2267          Demarcus Christmas       Demarcus         Christmas 1995-07-04
#> 2268                  Derek Watt          Derek              Watt 1992-11-07
#> 2269                Kevin Dotson          Kevin            Dotson 1996-09-18
#> 2270               Danny Isidora          Danny           Isidora 1994-06-05
#> 2271              David DeCastro          David          DeCastro 1990-01-11
#> 2272               Chris Boswell          Chris           Boswell 1991-03-16
#> 2273         Olasunkanmi Adeniyi    Olasunkanmi           Adeniyi 1997-09-12
#> 2274             Robert Spillane         Robert          Spillane 1995-12-14
#> 2275              Vince Williams          Vince          Williams 1989-12-27
#> 2276                  Bud Dupree            Bud            Dupree 1993-02-12
#> 2277               Tegray Scales         Tegray            Scales 1996-05-10
#> 2278                  Devin Bush          Devin              Bush 1998-07-18
#> 2279                   T.J. Watt           T.J.              Watt 1994-10-11
#> 2280            Avery Williamson          Avery        Williamson 1992-03-09
#> 2281             Christian Kuntz      Christian             Kuntz 1994-04-13
#> 2282              Alex Highsmith           Alex         Highsmith 1997-08-07
#> 2283             Ulysees Gilbert        Ulysees           Gilbert 1997-08-09
#> 2284             Jayrone Elliott        Jayrone           Elliott 1991-11-11
#> 2285             Kameron Canaday        Kameron           Canaday 1993-08-20
#> 2286                Jordan Berry         Jordan             Berry 1991-03-18
#> 2287             Corliss Waitman        Corliss           Waitman 1995-07-21
#> 2288                Joshua Dobbs         Joshua             Dobbs 1995-01-26
#> 2289          Ben Roethlisberger            Ben    Roethlisberger 1982-03-02
#> 2290               Mason Rudolph          Mason           Rudolph 1995-07-17
#> 2291              Dwayne Haskins         Dwayne           Haskins 1997-05-03
#> 2292              Jaylen Samuels         Jaylen           Samuels 1996-07-20
#> 2293           Anthony McFarland        Anthony         McFarland 1999-03-04
#> 2294                 Benny Snell          Benny             Snell 1998-02-26
#> 2295                Trey Edmunds           Trey           Edmunds 1994-12-30
#> 2296           Wendell Smallwood        Wendell         Smallwood 1994-01-20
#> 2297                James Conner          James            Conner 1995-05-05
#> 2298          Jordan Dangerfield         Jordan       Dangerfield 1990-12-25
#> 2299             Terrell Edmunds        Terrell           Edmunds 1997-01-20
#> 2300                 John Battle           John            Battle 1995-08-21
#> 2301          Minkah Fitzpatrick         Minkah       Fitzpatrick 1996-11-17
#> 2302             Aviante Collins        Aviante           Collins 1993-04-21
#> 2303                 Zach Banner           Zach            Banner 1993-12-25
#> 2304               Anthony Coyle        Anthony             Coyle 1996-09-19
#> 2305              Jerald Hawkins         Jerald           Hawkins 1993-10-16
#> 2306                Jarron Jones         Jarron             Jones 1994-03-11
#> 2307                 Matt Feiler           Matt            Feiler 1992-07-07
#> 2308           Chukwuma Okorafor       Chukwuma          Okorafor 1997-08-08
#> 2309        Alejandro Villanueva      Alejandro        Villanueva 1988-09-22
#> 2310              Brandon Walton        Brandon            Walton 1998-03-18
#> 2311                 John Leglue           John            Leglue 1996-04-17
#> 2312                  Eric Ebron           Eric             Ebron 1993-04-10
#> 2313              Vance McDonald          Vance          McDonald 1990-06-13
#> 2314                 Kevin Rader          Kevin             Rader 1995-04-26
#> 2315                 Zach Gentry           Zach            Gentry 1996-09-10
#> 2316                 Dax Raymond            Dax           Raymond 1994-11-30
#> 2317               Charles Jones        Charles             Jones 1996-08-05
#> 2318              Chase Claypool          Chase          Claypool 1998-07-07
#> 2319             Diontae Johnson        Diontae           Johnson 1996-07-05
#> 2320             Anthony Johnson        Anthony           Johnson 1995-01-29
#> 2321            James Washington          James        Washington 1996-04-02
#> 2322                  Cody White           Cody             White 1998-11-28
#> 2323             Ray-Ray McCloud        Ray-Ray           McCloud 1996-10-15
#> 2324         JuJu Smith-Schuster           JuJu    Smith-Schuster 1996-11-22
#> 2325                 Ethan Pocic          Ethan             Pocic 1995-08-05
#> 2326              Brad Lundblade           Brad         Lundblade 1995-09-21
#> 2327              Jayson Stanley         Jayson           Stanley 1997-04-24
#> 2328                   Ryan Neal           Ryan              Neal 1995-12-24
#> 2329            Shaquill Griffin       Shaquill           Griffin 1995-07-20
#> 2330              Quinton Dunbar        Quinton            Dunbar 1992-07-22
#> 2331               Jordan Miller         Jordan            Miller 1997-02-08
#> 2332                Neiko Thorpe          Neiko            Thorpe 1990-02-01
#> 2333                 Tre Flowers            Tre           Flowers 1995-06-02
#> 2334              Marquise Blair       Marquise             Blair 1997-07-18
#> 2335                Gavin Heslop          Gavin            Heslop 1997-11-13
#> 2336               Quandre Diggs        Quandre             Diggs 1993-01-22
#> 2337             Ugochukwu Amadi      Ugochukwu             Amadi 1997-05-16
#> 2338                   D.J. Reed           D.J.              Reed 1996-11-11
#> 2339           Damarious Randall      Damarious           Randall 1992-08-29
#> 2340             Linden Stephens         Linden          Stephens 1995-03-21
#> 2341              Darrell Taylor        Darrell            Taylor 1997-03-24
#> 2342              Alton Robinson          Alton          Robinson 1998-06-02
#> 2343             Branden Jackson        Branden           Jackson 1992-11-11
#> 2344            Jonathan Bullard       Jonathan           Bullard 1993-10-22
#> 2345               Rasheem Green        Rasheem             Green 1997-05-15
#> 2346               Carlos Dunlap         Carlos            Dunlap 1989-02-28
#> 2347                L.J. Collier           L.J.           Collier 1995-09-12
#> 2348               Benson Mayowa         Benson            Mayowa 1991-08-03
#> 2349              Damontre Moore       Damontre             Moore 1992-09-11
#> 2350           Cedrick Lattimore        Cedrick         Lattimore 1998-02-06
#> 2351                 Jarran Reed         Jarran              Reed 1992-12-16
#> 2352                Nick Bellore           Nick           Bellore 1989-05-12
#> 2353                 Mike Iupati           Mike            Iupati 1987-05-12
#> 2354                Damien Lewis         Damien             Lewis 1997-03-21
#> 2355              Chance Warmack         Chance           Warmack 1991-09-14
#> 2356                 Phil Haynes           Phil            Haynes 1995-10-19
#> 2357                 Kyle Fuller           Kyle            Fuller 1994-03-04
#> 2358              Jordan Simmons         Jordan           Simmons 1994-07-15
#> 2359                  Alex Boone           Alex             Boone 1987-05-04
#> 2360                 Jason Myers          Jason             Myers 1991-05-12
#> 2361             Ben Burr-Kirven            Ben       Burr-Kirven 1997-09-08
#> 2362               Jordyn Brooks         Jordyn            Brooks 1997-10-21
#> 2363                 Cody Barton           Cody            Barton 1996-11-13
#> 2364             Shaquem Griffin        Shaquem           Griffin 1995-07-20
#> 2365           Ray-Ray Armstrong        Ray-Ray         Armstrong 1991-03-05
#> 2366              D'Andre Walker        D'Andre            Walker 1997-01-23
#> 2367                Bobby Wagner          Bobby            Wagner 1990-06-27
#> 2368                Tim Williams            Tim          Williams 1993-11-12
#> 2369                 Bruce Irvin          Bruce             Irvin 1987-11-01
#> 2370                 K.J. Wright           K.J.            Wright 1989-07-23
#> 2371                   Tyler Ott          Tyler               Ott 1992-02-28
#> 2372                  Bryan Mone          Bryan              Mone 1995-10-20
#> 2373                  Poona Ford          Poona              Ford 1995-11-19
#> 2374             Michael Dickson        Michael           Dickson 1996-01-04
#> 2375                Alex McGough           Alex           McGough 1995-11-19
#> 2376                  Geno Smith           Geno             Smith 1990-10-10
#> 2377                Danny Etling          Danny            Etling 1994-07-22
#> 2378              Russell Wilson        Russell            Wilson 1988-11-29
#> 2379               Bo Scarbrough             Bo        Scarbrough 1994-09-29
#> 2380               Rashaad Penny        Rashaad             Penny 1996-02-02
#> 2381                Alex Collins           Alex           Collins 1994-08-26
#> 2382                 Carlos Hyde         Carlos              Hyde 1990-09-20
#> 2383                Patrick Carr        Patrick              Carr 1995-09-22
#> 2384               DeeJay Dallas         DeeJay            Dallas 1998-09-16
#> 2385                Travis Homer         Travis             Homer 1998-08-07
#> 2386                Chris Carson          Chris            Carson 1994-09-16
#> 2387                 Jamal Adams          Jamal             Adams 1995-10-17
#> 2388                 Delano Hill         Delano              Hill 1995-11-26
#> 2389               Jamarco Jones        Jamarco             Jones 1996-06-04
#> 2390                Chad Wheeler           Chad           Wheeler 1994-01-19
#> 2391              Cedric Ogbuehi         Cedric           Ogbuehi 1992-04-25
#> 2392                 Duane Brown          Duane             Brown 1985-08-30
#> 2393              Tommy Champion          Tommy          Champion 1997-03-04
#> 2394               Brandon Shell        Brandon             Shell 1992-02-06
#> 2395                Wyatt Miller          Wyatt            Miller 1995-10-23
#> 2396                  Greg Olsen           Greg             Olsen 1985-03-11
#> 2397                 Tyler Mabry          Tyler             Mabry 1996-11-21
#> 2398                Luke Willson           Luke           Willson 1990-01-15
#> 2399             Colby Parkinson          Colby         Parkinson 1999-01-08
#> 2400                 Will Dissly           Will            Dissly 1996-07-08
#> 2401             Jacob Hollister          Jacob         Hollister 1993-11-18
#> 2402               Tyler Lockett          Tyler           Lockett 1992-09-28
#> 2403                  John Ursua           John             Ursua 1994-01-17
#> 2404                Aaron Fuller          Aaron            Fuller 1997-09-30
#> 2405               Freddie Swain        Freddie             Swain 1998-08-04
#> 2406                  Penny Hart          Penny              Hart 1996-07-05
#> 2407                Darvin Kidsy         Darvin             Kidsy 1995-03-19
#> 2408                Lance Lenoir          Lance            Lenoir 1995-02-09
#> 2409                 David Moore          David             Moore 1995-01-15
#> 2410                  DK Metcalf             DK           Metcalf 1997-12-14
#> 2411             Phillip Dorsett        Phillip           Dorsett 1993-01-05
#> 2412               Cody Thompson           Cody          Thompson 1996-01-11
#> 2413                 Josh Gordon           Josh            Gordon 1991-04-13
#> 2414                 Aaron Neary          Aaron             Neary 1992-11-15
#> 2415                 Ben Garland            Ben           Garland 1988-04-06
#> 2416             Weston Richburg         Weston          Richburg 1991-07-09
#> 2417                Jake Brendel           Jake           Brendel 1992-09-10
#> 2418                Spencer Long        Spencer              Long 1990-11-08
#> 2419               Hroniss Grasu        Hroniss             Grasu 1991-08-12
#> 2420                  Tim Harris            Tim            Harris 1995-07-31
#> 2421             Richard Sherman        Richard           Sherman 1988-03-30
#> 2422         Ahkello Witherspoon        Ahkello       Witherspoon 1995-03-21
#> 2423            Emmanuel Moseley       Emmanuel           Moseley 1996-03-25
#> 2424                 Ken Webster            Ken           Webster 1996-06-19
#> 2425                Jamar Taylor          Jamar            Taylor 1990-09-29
#> 2426             K'Waun Williams         K'Waun          Williams 1991-07-12
#> 2427               Jason Verrett          Jason           Verrett 1991-06-18
#> 2428            Adonis Alexander         Adonis         Alexander 1996-11-07
#> 2429              Dontae Johnson         Dontae           Johnson 1991-12-01
#> 2430                Jared Mayden          Jared            Mayden 1998-06-24
#> 2431               Obi Melifonwu            Obi         Melifonwu 1994-04-05
#> 2432             Tarvarius Moore      Tarvarius             Moore 1996-08-16
#> 2433        Briean Boddy-Calhoun         Briean     Boddy-Calhoun 1993-01-21
#> 2434                 Jimmie Ward         Jimmie              Ward 1991-07-18
#> 2435               Jordan Willis         Jordan            Willis 1995-05-02
#> 2436               Arik Armstead           Arik          Armstead 1993-11-15
#> 2437            Kentavius Street      Kentavius            Street 1996-05-08
#> 2438              Solomon Thomas        Solomon            Thomas 1995-08-26
#> 2439               Ezekiel Ansah        Ezekiel             Ansah 1989-05-29
#> 2440                Alex Barrett           Alex           Barrett 1994-03-06
#> 2441                   Nick Bosa           Nick              Bosa 1997-10-23
#> 2442                 Dion Jordan           Dion            Jordan 1990-03-05
#> 2443                Ronald Blair         Ronald             Blair 1993-01-21
#> 2444                 Kerry Hyder          Kerry             Hyder 1991-05-02
#> 2445                    Dee Ford            Dee              Ford 1991-03-19
#> 2446                Daeshon Hall        Daeshon              Hall 1995-06-14
#> 2447              Josiah Coatney         Josiah           Coatney 1996-01-04
#> 2448                Javon Kinlaw          Javon            Kinlaw 1997-10-03
#> 2449             Darrion Daniels        Darrion           Daniels 1997-12-04
#> 2450                  D.J. Jones           D.J.             Jones 1995-01-19
#> 2451                Kevin Givens          Kevin            Givens 1997-03-01
#> 2452               Kyle Juszczyk           Kyle          Juszczyk 1991-04-23
#> 2453             Laken Tomlinson          Laken         Tomlinson 1992-02-09
#> 2454              Tony Bergstrom           Tony         Bergstrom 1986-08-06
#> 2455            Daniel Brunskill         Daniel         Brunskill 1994-01-27
#> 2456             Isaiah Williams         Isaiah          Williams 1993-05-05
#> 2457                Robbie Gould         Robbie             Gould 1982-12-06
#> 2458                Mark Nzeocha           Mark           Nzeocha 1990-01-19
#> 2459                 Kiko Alonso           Kiko            Alonso 1990-08-14
#> 2460                 Fred Warner           Fred            Warner 1996-11-19
#> 2461              Jonas Griffith          Jonas          Griffith 1997-01-27
#> 2462                  Joe Walker            Joe            Walker 1992-12-11
#> 2463             Azeez Al-Shaair          Azeez         Al-Shaair 1997-08-04
#> 2464                Dre Greenlaw            Dre          Greenlaw 1997-05-25
#> 2465               Taybor Pepper         Taybor            Pepper 1994-05-28
#> 2466                 Kyle Nelson           Kyle            Nelson 1986-10-03
#> 2467                  Drew Kaser           Drew             Kaser 1993-02-11
#> 2468            Mitch Wishnowsky          Mitch        Wishnowsky 1992-03-03
#> 2469                Josh Johnson           Josh           Johnson 1986-05-15
#> 2470                Nick Mullens           Nick           Mullens 1995-03-21
#> 2471             Jimmy Garoppolo          Jimmy         Garoppolo 1991-11-02
#> 2472                  Josh Rosen           Josh             Rosen 1997-02-10
#> 2473               C.J. Beathard           C.J.          Beathard 1993-11-16
#> 2474                  Josh Hokit           Josh             Hokit 1997-11-12
#> 2475             Jerick McKinnon         Jerick          McKinnon 1992-05-03
#> 2476               Tyler Gaffney          Tyler           Gaffney 1991-04-20
#> 2477              Jeffery Wilson        Jeffery            Wilson 1995-11-16
#> 2478              Raheem Mostert         Raheem           Mostert 1992-04-09
#> 2479               Austin Walter         Austin            Walter 1996-08-17
#> 2480               Tevin Coleman          Tevin           Coleman 1993-04-16
#> 2481               Jamycal Hasty        Jamycal             Hasty 1996-09-12
#> 2482              Marcell Harris        Marcell            Harris 1994-06-09
#> 2483  Demetrius Flannigan-Fowles      Demetrius  Flannigan-Fowles 1996-09-04
#> 2484               Chris Edwards          Chris           Edwards 1992-12-23
#> 2485              Jaquiski Tartt       Jaquiski             Tartt 1992-02-18
#> 2486                   Kai Nacua            Kai             Nacua 1995-03-03
#> 2487           Johnathan Cyprien      Johnathan           Cyprien 1990-07-29
#> 2488              Trent Williams          Trent          Williams 1988-07-19
#> 2489              Corbin Kaufusi         Corbin           Kaufusi 1993-04-12
#> 2490                Justin Skule         Justin             Skule 1996-11-23
#> 2491             Mike McGlinchey           Mike        McGlinchey 1995-01-12
#> 2492                Shon Coleman           Shon           Coleman 1991-11-25
#> 2493                 Cody Conway           Cody            Conway 1996-07-09
#> 2494                 Tom Compton            Tom           Compton 1989-05-10
#> 2495             Colton McKivitz         Colton          McKivitz 1996-08-09
#> 2496              Dakoda Shepley         Dakoda           Shepley 1994-12-27
#> 2497                 Daniel Helm         Daniel              Helm 1995-04-20
#> 2498                Ross Dwelley           Ross           Dwelley 1995-01-26
#> 2499               Chase Harrell          Chase           Harrell 1996-05-16
#> 2500                 Jordan Reed         Jordan              Reed 1990-07-03
#> 2501             Charlie Woerner        Charlie           Woerner 1997-10-16
#> 2502               George Kittle         George            Kittle 1993-10-09
#> 2503                Trent Taylor          Trent            Taylor 1994-04-30
#> 2504                  Jalen Hurd          Jalen              Hurd 1996-01-23
#> 2505            Shawn Poindexter          Shawn        Poindexter 1995-12-13
#> 2506             Kendrick Bourne       Kendrick            Bourne 1995-08-04
#> 2507             Jordan Matthews         Jordan          Matthews 1992-07-16
#> 2508                Deebo Samuel          Deebo            Samuel 1996-01-15
#> 2509              Jauan Jennings          Jauan          Jennings 1997-07-10
#> 2510                   Matt Cole           Matt              Cole 1996-11-07
#> 2511             Travis Benjamin         Travis          Benjamin 1989-12-29
#> 2512                 Kevin White          Kevin             White 1992-06-25
#> 2513               Austin Proehl         Austin            Proehl 1995-10-11
#> 2514                Richie James         Richie             James 1995-09-05
#> 2515              River Cracraft          River          Cracraft 1994-11-01
#> 2516               Brandon Aiyuk        Brandon             Aiyuk 1998-03-17
#> 2517              Chris Thompson          Chris          Thompson 1994-05-09
#> 2518                A.Q. Shipley           A.Q.           Shipley 1986-05-22
#> 2519                 Ryan Jensen           Ryan            Jensen 1991-05-27
#> 2520         Sean Murphy-Bunting           Sean    Murphy-Bunting 1997-06-19
#> 2521                  Ryan Smith           Ryan             Smith 1993-09-07
#> 2522               Mazzi Wilkins          Mazzi           Wilkins 1995-10-12
#> 2523                  Jamel Dean          Jamel              Dean 1996-10-15
#> 2524               Carlton Davis        Carlton             Davis 1996-12-31
#> 2525               Ross Cockrell           Ross          Cockrell 1991-08-06
#> 2526                 Javon Hagan          Javon             Hagan 1997-02-22
#> 2527                 Herb Miller           Herb            Miller 1997-11-11
#> 2528                Mike Edwards           Mike           Edwards 1996-05-18
#> 2529            Antoine Winfield        Antoine          Winfield 1998-08-16
#> 2530                Pat O'Connor            Pat          O'Connor 1993-11-01
#> 2531             Benning Potoa'e        Benning           Potoa'e 1996-09-17
#> 2532               Ndamukong Suh      Ndamukong               Suh 1987-01-06
#> 2533           Jason Pierre-Paul          Jason       Pierre-Paul 1989-01-01
#> 2534                Quinton Bell        Quinton              Bell 1996-05-09
#> 2535            William Gholston        William          Gholston 1991-07-31
#> 2536          Jeremiah Ledbetter       Jeremiah         Ledbetter 1994-05-29
#> 2537                  Kobe Smith           Kobe             Smith 1998-06-23
#> 2538                Khalil Davis         Khalil             Davis 1996-08-22
#> 2539         Rakeem Nunez-Roches         Rakeem      Nunez-Roches 1993-07-03
#> 2540                D'Cota Dixon         D'Cota             Dixon 1994-11-20
#> 2541                John Molchon           John           Molchon 1997-02-02
#> 2542               Aaron Stinnie          Aaron           Stinnie 1994-02-18
#> 2543                  Ali Marpet            Ali            Marpet 1993-04-17
#> 2544               Nick Leverett           Nick          Leverett 1997-01-11
#> 2545                Earl Watford           Earl           Watford 1990-06-24
#> 2546                  Ted Larsen            Ted            Larsen 1987-06-13
#> 2547                  Alex Cappa           Alex             Cappa 1995-01-27
#> 2548                 Ryan Succop           Ryan            Succop 1986-09-19
#> 2549                  Jack Cichy           Jack             Cichy 1995-05-05
#> 2550                Kevin Minter          Kevin            Minter 1990-12-03
#> 2551              Deone Bucannon          Deone          Bucannon 1992-08-30
#> 2552              Anthony Nelson        Anthony            Nelson 1997-03-04
#> 2553             Shaquil Barrett        Shaquil           Barrett 1992-11-17
#> 2554                    Cam Gill            Cam              Gill 1997-12-14
#> 2555                 Devin White          Devin             White 1998-02-17
#> 2556               Lavonte David        Lavonte             David 1990-01-23
#> 2557            Garrison Sanborn       Garrison           Sanborn 1985-07-31
#> 2558                 Zach Triner           Zach            Triner 1991-01-30
#> 2559              Steve McLendon          Steve          McLendon 1986-01-03
#> 2560                    Vita Vea           Vita               Vea 1995-02-05
#> 2561              Bradley Pinion        Bradley            Pinion 1994-06-01
#> 2562                 Hayden Hunt         Hayden              Hunt 1993-06-09
#> 2563                   Matt Wile           Matt              Wile 1992-06-20
#> 2564                Ryan Griffin           Ryan           Griffin 1989-11-17
#> 2565                Drew Stanton           Drew           Stanton 1984-05-07
#> 2566              Blaine Gabbert         Blaine           Gabbert 1989-10-15
#> 2567                   Tom Brady            Tom             Brady 1977-08-03
#> 2568                Ronald Jones         Ronald             Jones 1997-08-03
#> 2569                LeSean McCoy         LeSean             McCoy 1988-07-12
#> 2570             Ke'Shawn Vaughn       Ke'Shawn            Vaughn 1997-05-04
#> 2571             Aca'Cedric Ware     Aca'Cedric              Ware 1997-06-29
#> 2572           Leonard Fournette        Leonard         Fournette 1995-01-18
#> 2573               Kenjon Barner         Kenjon            Barner 1989-04-28
#> 2574                C.J. Prosise           C.J.           Prosise 1994-05-20
#> 2575                  T.J. Logan           T.J.             Logan 1994-09-03
#> 2576            Jordan Whitehead         Jordan         Whitehead 1997-03-18
#> 2577                Andrew Adams         Andrew             Adams 1992-10-28
#> 2578                Justin Evans         Justin             Evans 1995-08-26
#> 2579               Donovan Smith        Donovan             Smith 1993-06-23
#> 2580                  Josh Wells           Josh             Wells 1991-02-14
#> 2581                 Brad Seaton           Brad            Seaton 1993-11-23
#> 2582               Tristan Wirfs        Tristan             Wirfs 1999-01-24
#> 2583                    Joe Haeg            Joe              Haeg 1993-03-11
#> 2584                 O.J. Howard           O.J.            Howard 1994-11-18
#> 2585               Tanner Hudson         Tanner            Hudson 1994-11-12
#> 2586              Antony Auclair         Antony           Auclair 1993-05-28
#> 2587               Cameron Brate        Cameron             Brate 1991-07-03
#> 2588              Rob Gronkowski            Rob        Gronkowski 1989-05-14
#> 2589               Codey McElroy          Codey           McElroy 1992-12-13
#> 2590              Jaydon Mickens         Jaydon           Mickens 1994-04-21
#> 2591               Cyril Grayson          Cyril           Grayson 1993-12-05
#> 2592                Chris Godwin          Chris            Godwin 1996-02-27
#> 2593                Josh Pearson           Josh           Pearson 1997-06-13
#> 2594               Antonio Brown        Antonio             Brown 1988-07-10
#> 2595               John Franklin           John          Franklin 1994-09-21
#> 2596               Travis Jonsen         Travis            Jonsen 1996-10-16
#> 2597               Tyler Johnson          Tyler           Johnson 1998-08-25
#> 2598                  Mike Evans           Mike             Evans 1993-08-21
#> 2599                Scott Miller          Scott            Miller 1997-07-31
#> 2600               Justin Watson         Justin            Watson 1996-04-04
#> 2601                   Ben Jones            Ben             Jones 1989-07-02
#> 2602               Daniel Munyer         Daniel            Munyer 1992-03-04
#> 2603                Aaron Brewer          Aaron            Brewer 1997-10-28
#> 2604                 Joshua Kalu         Joshua              Kalu 1995-08-28
#> 2605                Desmond King        Desmond              King 1994-12-14
#> 2606               Breon Borders          Breon           Borders 1995-07-22
#> 2607              Malcolm Butler        Malcolm            Butler 1990-03-02
#> 2608             Kristian Fulton       Kristian            Fulton 1998-09-03
#> 2609               Chris Jackson          Chris           Jackson 1998-04-13
#> 2610                Chris Milton          Chris            Milton 1992-09-15
#> 2611                   Tye Smith            Tye             Smith 1993-05-03
#> 2612                  Kareem Orr         Kareem               Orr 1997-01-02
#> 2613             Adoree' Jackson        Adoree'           Jackson 1995-09-18
#> 2614                Amani Hooker          Amani            Hooker 1998-06-14
#> 2615               Maurice Smith        Maurice             Smith 1995-06-14
#> 2616                 Kevin Byard          Kevin             Byard 1993-08-17
#> 2617            Jadeveon Clowney       Jadeveon           Clowney 1993-02-14
#> 2618                   Wyatt Ray          Wyatt               Ray 1996-10-24
#> 2619                Nate Orchard           Nate           Orchard 1993-01-05
#> 2620             Jeffery Simmons        Jeffery           Simmons 1997-07-28
#> 2621                  Teair Tart          Teair              Tart 1997-02-28
#> 2622                 Daylon Mack         Daylon              Mack 1997-02-23
#> 2623              Jullian Taylor        Jullian            Taylor 1995-01-30
#> 2624               Jack Crawford           Jack          Crawford 1988-09-07
#> 2625           Larrell Murchison        Larrell         Murchison 1997-04-24
#> 2626              Matt Dickerson           Matt         Dickerson 1995-11-09
#> 2627            Khari Blasingame          Khari        Blasingame 1996-07-01
#> 2628              Rodger Saffold         Rodger           Saffold 1988-06-06
#> 2629          David Quessenberry          David      Quessenberry 1990-08-24
#> 2630                  Nate Davis           Nate             Davis 1996-09-23
#> 2631               Jamil Douglas          Jamil           Douglas 1992-02-28
#> 2632           Giorgio Tavecchio        Giorgio         Tavecchio 1990-07-16
#> 2633               Tucker McCann         Tucker            McCann 1997-11-10
#> 2634                  Sam Sloman            Sam            Sloman 1997-09-19
#> 2635          Stephen Gostkowski        Stephen        Gostkowski 1984-01-28
#> 2636             Derick Roberson         Derick          Roberson 1995-11-15
#> 2637                Nick Dzubnar           Nick           Dzubnar 1991-08-15
#> 2638                Will Compton           Will           Compton 1989-09-19
#> 2639               Harold Landry         Harold            Landry 1996-06-05
#> 2640                 Daren Bates          Daren             Bates 1990-11-27
#> 2641               Davin Bellamy          Davin           Bellamy 1994-12-27
#> 2642               Tuzar Skipper          Tuzar           Skipper 1995-06-05
#> 2643               Rashaan Evans        Rashaan             Evans 1995-11-08
#> 2644                 Brooks Reed         Brooks              Reed 1987-02-28
#> 2645                 Jayon Brown          Jayon             Brown 1995-02-26
#> 2646                  David Long          David              Long 1996-10-12
#> 2647                 Matt Orzech           Matt            Orzech 1995-04-12
#> 2648               Beau Brinkley           Beau          Brinkley 1990-01-25
#> 2649                Matt Overton           Matt           Overton 1985-07-06
#> 2650                DaQuan Jones         DaQuan             Jones 1991-12-27
#> 2651                 Miles Brown          Miles             Brown 1997-09-04
#> 2652                  Brett Kern          Brett              Kern 1986-02-17
#> 2653               Trevor Daniel         Trevor            Daniel 1994-12-08
#> 2654              Ryan Tannehill           Ryan         Tannehill 1988-07-27
#> 2655               DeShone Kizer        DeShone             Kizer 1996-01-03
#> 2656              Logan Woodside          Logan          Woodside 1995-01-27
#> 2657             Darrynton Evans      Darrynton             Evans 1998-07-09
#> 2658            Jeremy McNichols         Jeremy         McNichols 1995-12-26
#> 2659               Derrick Henry        Derrick             Henry 1994-01-04
#> 2660              D'Onta Foreman         D'Onta           Foreman 1996-04-24
#> 2661              Senorise Perry       Senorise             Perry 1991-09-19
#> 2662               Kenny Vaccaro          Kenny           Vaccaro 1991-02-15
#> 2663             Dane Cruikshank           Dane        Cruikshank 1995-04-27
#> 2664               Isaiah Wilson         Isaiah            Wilson 1999-02-12
#> 2665                Taylor Lewan         Taylor             Lewan 1991-07-22
#> 2666           Marshall Newhouse       Marshall          Newhouse 1988-09-29
#> 2667                Brandon Kemp        Brandon              Kemp 1997-01-18
#> 2668                Dennis Kelly         Dennis             Kelly 1990-01-16
#> 2669                  Paul Adams           Paul             Adams 1995-05-17
#> 2670                Ty Sambrailo             Ty         Sambrailo 1992-03-10
#> 2671            Anthony McKinney        Anthony          McKinney 1997-10-25
#> 2672               MyCole Pruitt         MyCole            Pruitt 1992-03-24
#> 2673                Parker Hesse         Parker             Hesse 1995-05-26
#> 2674                 Geoff Swaim          Geoff             Swaim 1993-09-16
#> 2675             Anthony Firkser        Anthony           Firkser 1995-02-19
#> 2676               Jared Pinkney          Jared           Pinkney 1997-08-21
#> 2677                 Jonnu Smith          Jonnu             Smith 1995-08-22
#> 2678                Tommy Hudson          Tommy            Hudson 1997-02-22
#> 2679                 Corey Davis          Corey             Davis 1995-01-11
#> 2680              Cameron Batson        Cameron            Batson 1995-12-20
#> 2681               Rashard Davis        Rashard             Davis 1995-09-14
#> 2682              Chester Rogers        Chester            Rogers 1994-01-12
#> 2683                  A.J. Brown           A.J.             Brown 1997-06-30
#> 2684              Marcus Johnson         Marcus           Johnson 1994-08-05
#> 2685       Nick Westbrook-Ikhine           Nick  Westbrook-Ikhine 1997-03-21
#> 2686              Adam Humphries           Adam         Humphries 1993-06-24
#> 2687               Kalif Raymond          Kalif           Raymond 1994-08-08
#> 2688              Cody Hollister           Cody         Hollister 1993-11-18
#> 2689              Chase Roullier          Chase          Roullier 1993-08-23
#> 2690                Keith Ismael          Keith            Ismael 1998-07-25
#> 2691                Ronald Darby         Ronald             Darby 1994-01-02
#> 2692               Fabian Moreau         Fabian            Moreau 1994-04-09
#> 2693                Aaron Colvin          Aaron            Colvin 1991-10-02
#> 2694                Greg Stroman           Greg           Stroman 1996-03-08
#> 2695               Simeon Thomas         Simeon            Thomas 1993-09-22
#> 2696                Torry McTyer          Torry            McTyer 1995-04-10
#> 2697               Danny Johnson          Danny           Johnson 1995-11-17
#> 2698              Jimmy Moreland          Jimmy          Moreland 1995-08-26
#> 2699              Kendall Fuller        Kendall            Fuller 1995-02-13
#> 2700                 Kamren Curl         Kamren              Curl 1999-03-03
#> 2701                Jordan Brown         Jordan             Brown 1996-03-26
#> 2702               Jeremy Reaves         Jeremy            Reaves 1996-08-29
#> 2703                   Troy Apke           Troy              Apke 1995-04-11
#> 2704                   Cole Luke           Cole              Luke 1995-06-30
#> 2705               Ryan Anderson           Ryan          Anderson 1994-08-12
#> 2706        James Smith-Williams          James    Smith-Williams 1997-07-30
#> 2707                Montez Sweat         Montez             Sweat 1996-09-04
#> 2708               Casey Toohill          Casey           Toohill 1996-08-22
#> 2709                 Daniel Wise         Daniel              Wise 1996-01-16
#> 2710                    Ryan Bee           Ryan               Bee 1995-11-12
#> 2711                 Chase Young          Chase             Young 1999-04-14
#> 2712              Caleb Brantley          Caleb          Brantley 1994-09-02
#> 2713               Ryan Kerrigan           Ryan          Kerrigan 1988-08-16
#> 2714                 Jalen Jelks          Jalen             Jelks 1996-08-03
#> 2715              Matt Ioannidis           Matt         Ioannidis 1994-01-11
#> 2716                  David Bada          David              Bada 1995-05-24
#> 2717                 Daron Payne          Daron             Payne 1997-05-27
#> 2718                  Tim Settle            Tim            Settle 1997-07-11
#> 2719            Devaroe Lawrence        Devaroe          Lawrence 1992-10-13
#> 2720              Jonathan Allen       Jonathan             Allen 1995-01-16
#> 2721             Michael Liedtke        Michael           Liedtke 1992-01-15
#> 2722              Wes Schweitzer            Wes        Schweitzer 1993-09-11
#> 2723                  Wes Martin            Wes            Martin 1996-05-09
#> 2724             Brandon Scherff        Brandon           Scherff 1991-12-26
#> 2725              Joshua Garnett         Joshua           Garnett 1994-02-21
#> 2726              Dustin Hopkins         Dustin           Hopkins 1990-10-01
#> 2727                Kaare Vedvik          Kaare            Vedvik 1994-03-16
#> 2728                  Jon Bostic            Jon            Bostic 1991-05-05
#> 2729         Josh Harvey-Clemons           Josh    Harvey-Clemons 1994-02-20
#> 2730                Jared Norris          Jared            Norris 1993-07-19
#> 2731               Reuben Foster         Reuben            Foster 1994-04-04
#> 2732             Jordan Kunaszyk         Jordan          Kunaszyk 1996-10-15
#> 2733              Khaleke Hudson        Khaleke            Hudson 1997-12-06
#> 2734             Justin Phillips         Justin          Phillips 1995-10-10
#> 2735                Cole Holcomb           Cole           Holcomb 1996-07-30
#> 2736            Mychal Kendricks         Mychal         Kendricks 1990-09-28
#> 2737                Thomas Davis         Thomas             Davis 1983-03-22
#> 2738          Kevin Pierre-Louis          Kevin      Pierre-Louis 1991-10-07
#> 2739               Nick Sundberg           Nick          Sundberg 1987-07-29
#> 2740                   Tress Way          Tress               Way 1990-04-18
#> 2741             Taylor Heinicke         Taylor          Heinicke 1993-03-15
#> 2742                  Kyle Allen           Kyle             Allen 1996-03-08
#> 2743               Steven Montez         Steven            Montez 1997-01-14
#> 2744                  Alex Smith           Alex             Smith 1984-05-07
#> 2745                Lamar Miller          Lamar            Miller 1991-04-25
#> 2746                  Bryce Love          Bryce              Love 1997-07-08
#> 2747               J.D. McKissic           J.D.          McKissic 1993-08-15
#> 2748           Jonathan Williams       Jonathan          Williams 1994-02-02
#> 2749               Peyton Barber         Peyton            Barber 1994-06-27
#> 2750              Antonio Gibson        Antonio            Gibson 1998-06-23
#> 2751              Landon Collins         Landon           Collins 1994-01-10
#> 2752            Deshazor Everett       Deshazor           Everett 1992-02-22
#> 2753                Rick Leonard           Rick           Leonard 1996-11-22
#> 2754             Geron Christian          Geron         Christian 1996-09-10
#> 2755             Saahdiq Charles        Saahdiq           Charles 1999-07-26
#> 2756             David Steinmetz          David         Steinmetz 1995-03-01
#> 2757                David Sharpe          David            Sharpe 1995-10-21
#> 2758                Morgan Moses         Morgan             Moses 1991-03-03
#> 2759             Cornelius Lucas      Cornelius             Lucas 1991-07-18
#> 2760                Timon Parris          Timon            Parris 1995-09-11
#> 2761                Marcus Baugh         Marcus             Baugh 1994-12-09
#> 2762               Thaddeus Moss       Thaddeus              Moss 1998-05-14
#> 2763             Jeremy Sprinkle         Jeremy          Sprinkle 1994-08-10
#> 2764                Logan Thomas          Logan            Thomas 1991-07-01
#> 2765              Dylan Cantrell          Dylan          Cantrell 1994-06-29
#> 2766         Temarrick Hemingway      Temarrick         Hemingway 1993-07-30
#> 2767              Tyrone Swoopes         Tyrone           Swoopes 1994-11-14
#> 2768        Antonio Gandy-Golden        Antonio      Gandy-Golden 1998-04-11
#> 2769                Jordan Veasy         Jordan             Veasy 1995-06-23
#> 2770              Terry McLaurin          Terry          McLaurin 1995-09-15
#> 2771                    Cam Sims            Cam              Sims 1996-01-06
#> 2772                  Tony Brown           Tony             Brown 1997-08-08
#> 2773               Kelvin Harmon         Kelvin            Harmon 1996-12-15
#> 2774                Emanuel Hall        Emanuel              Hall 1997-05-21
#> 2775             Dontrelle Inman      Dontrelle             Inman 1989-01-31
#> 2776               Robert Foster         Robert            Foster 1994-05-07
#> 2777               Isaiah Wright         Isaiah            Wright 1997-01-13
#> 2778                 Steven Sims         Steven              Sims 1997-03-31
#> 2779                  Jeff Badet           Jeff             Badet 1994-08-02
#> 2780                Trevor Davis         Trevor             Davis 1993-07-04
#> 2781            Demetrius Rhaney      Demetrius            Rhaney 1992-06-22
#> 2782                 Kyle Friend           Kyle            Friend 1994-04-03
#> 2783                  Ryan Kalil           Ryan             Kalil 1985-03-29
#> 2784            Cornelius Edison      Cornelius            Edison 1993-07-10
#> 2785                Justin Britt         Justin             Britt 1991-05-29
#> 2786                  Casey Dunn          Casey              Dunn 1994-10-11
#> 2787               Toa Lobendahn            Toa         Lobendahn 1996-02-14
#> 2788            Bunchy Stallings         Bunchy         Stallings 1995-09-27
#> 2789              Jake Ohnesorge           Jake         Ohnesorge       <NA>
#> 2790           Vitas Hrynkiewicz          Vitas       Hrynkiewicz 1995-10-27
#> 2791             Gino Gradkowski           Gino        Gradkowski 1988-11-05
#> 2792                 Nate Trewyn           Nate            Trewyn 1996-05-16
#> 2793                 James Stone          James             Stone 1992-04-26
#> 2794                  Nico Falah           Nico             Falah 1995-01-06
#> 2795                T.J. Johnson           T.J.           Johnson 1990-07-17
#> 2796                Cole Madison           Cole           Madison 1994-12-20
#> 2797                 Andrew East         Andrew              East 1991-09-17
#> 2798             Chandler Miller       Chandler            Miller 1996-04-16
#> 2799               John Sullivan           John          Sullivan 1985-08-08
#> 2800              Wesley Johnson         Wesley           Johnson 1991-01-09
#> 2801              Lucas Gravelle          Lucas          Gravelle 1995-07-28
#> 2802              Travis Swanson         Travis           Swanson 1991-01-30
#> 2803                  Tony Adams           Tony             Adams 1995-12-28
#> 2804                 Kirk Barron           Kirk            Barron 1995-06-03
#> 2805                  Dillon Day         Dillon               Day 1991-10-17
#> 2806             Skyler Phillips         Skyler          Phillips 1995-10-04
#> 2807               Deyshawn Bond       Deyshawn              Bond 1994-08-19
#> 2808                 John Keenoy           John            Keenoy 1997-02-26
#> 2809               Keegan Render         Keegan            Render 1995-11-23
#> 2810                Ethan Cooper          Ethan            Cooper 1995-06-11
#> 2811               Tanner Volson         Tanner            Volson 1996-05-04
#> 2812              Brian Schwenke          Brian          Schwenke 1991-03-22
#> 2813                  J.P. Quinn           J.P.             Quinn 1994-07-30
#> 2814              Parker Collins         Parker           Collins 1994-05-19
#> 2815                Tejan Koroma          Tejan            Koroma 1996-04-27
#> 2816               Mike Matthews           Mike          Matthews 1994-01-27
#> 2817                Luke Bowanko           Luke           Bowanko 1991-06-13
#> 2818               James O'Hagan          James           O'Hagan 1996-09-19
#> 2819                Austin Davis         Austin             Davis 1995-02-25
#> 2820                   Max Unger            Max             Unger 1986-04-14
#> 2821               Marquez White        Marquez             White 1994-10-29
#> 2822                 Davon House          Davon             House 1989-07-10
#> 2823          Dominique Hatfield      Dominique          Hatfield 1994-12-13
#> 2824               Marcus Cooper         Marcus            Cooper 1990-02-01
#> 2825       Prince Charles Iworah Prince Charles            Iworah 1993-03-11
#> 2826                  Kalan Reed          Kalan              Reed 1993-12-29
#> 2827               Josh Robinson           Josh          Robinson 1991-01-08
#> 2828               David Amerson          David           Amerson 1991-12-08
#> 2829               Derrick Jones        Derrick             Jones 1994-12-04
#> 2830              Marcus Sherels         Marcus           Sherels 1987-09-30
#> 2831            Dezmen Southward         Dezmen         Southward 1990-10-01
#> 2832                Malik Reaves          Malik            Reaves 1995-12-15
#> 2833             Coty Sensabaugh           Coty        Sensabaugh 1988-11-15
#> 2834               Leon McFadden           Leon          McFadden 1990-10-26
#> 2835                Vontae Davis         Vontae             Davis 1988-05-27
#> 2836                Antwon Blake         Antwon             Blake 1990-08-09
#> 2837                Clifton Duck        Clifton              Duck 1998-05-03
#> 2838                 Alex Carter           Alex            Carter 1994-10-19
#> 2839            Bradford Lemmons       Bradford           Lemmons 1996-04-19
#> 2840             Dexter McDonald         Dexter          McDonald 1991-11-30
#> 2841               Ronald Zamort         Ronald            Zamort 1991-11-10
#> 2842          Chris Lewis-Harris          Chris      Lewis-Harris 1989-02-11
#> 2843             Donatello Brown      Donatello             Brown 1991-05-15
#> 2844                Trey Johnson           Trey           Johnson 1994-09-27
#> 2845                  Mark Myers           Mark             Myers 1994-09-05
#> 2846               DeShawn Shead        DeShawn             Shead 1989-06-28
#> 2847                Bryce Canady          Bryce            Canady       <NA>
#> 2848              Xavier Coleman         Xavier           Coleman 1995-01-13
#> 2849              Juante Baldwin         Juante           Baldwin 1994-10-24
#> 2850                Brent Grimes          Brent            Grimes 1983-07-19
#> 2851               Taurean Nixon        Taurean             Nixon 1991-02-07
#> 2852               Travell Dixon        Travell             Dixon 1991-02-17
#> 2853                Tony Lippett           Tony           Lippett 1992-07-02
#> 2854                 Bryce Jones          Bryce             Jones 1994-08-20
#> 2855           Orlando Scandrick        Orlando         Scandrick 1987-02-10
#> 2856               Tenny Adewusi          Tenny           Adewusi 1997-05-13
#> 2857              Demontre Hurst       Demontre             Hurst 1991-03-24
#> 2858          Channing Stribling       Channing         Stribling 1994-11-21
#> 2859           Makinton Dorleant       Makinton          Dorleant 1992-10-06
#> 2860                Nydair Rouse         Nydair             Rouse 1995-06-13
#> 2861                 Ryan Pulley           Ryan            Pulley 1995-12-31
#> 2862             Adairius Barnes       Adairius            Barnes 1994-04-30
#> 2863          Christian Campbell      Christian          Campbell 1995-11-27
#> 2864               Kenneth Acker        Kenneth             Acker 1992-02-06
#> 2865             Marcus Williams         Marcus          Williams 1991-03-24
#> 2866                 Jaylen Hill         Jaylen              Hill 1994-05-26
#> 2867            Morris Claiborne         Morris         Claiborne 1990-02-07
#> 2868               Reese Fleming          Reese           Fleming 1993-12-06
#> 2869              Joshua Simmons         Joshua           Simmons 1996-07-01
#> 2870               Elijah Battle         Elijah            Battle       <NA>
#> 2871               Byron Maxwell          Byron           Maxwell 1988-02-23
#> 2872           Jeremiah McKinnon       Jeremiah          McKinnon 1993-06-29
#> 2873               Joshua Holsey         Joshua            Holsey 1994-06-25
#> 2874               Tevin Mitchel          Tevin           Mitchel 1992-08-03
#> 2875           Tarvarus McFadden       Tarvarus          McFadden 1997-01-28
#> 2876                DaShaun Amos        DaShaun              Amos 1994-09-20
#> 2877              Terence Newman        Terence            Newman 1978-09-04
#> 2878                    CJ Smith             CJ             Smith 1993-05-10
#> 2879               Dakari Monroe         Dakari            Monroe 1997-08-18
#> 2880              Treston Decoud        Treston            Decoud 1993-08-01
#> 2881               Davante Davis        Davante             Davis 1995-09-26
#> 2882                David Rivers          David            Rivers 1994-07-23
#> 2883              Sterling Moore       Sterling             Moore 1990-02-03
#> 2884               Trevon Mathis         Trevon            Mathis 1995-09-12
#> 2885              Taveze Calhoun         Taveze           Calhoun 1992-12-26
#> 2886                Keith Baxter          Keith            Baxter 1992-06-04
#> 2887               Quincy Redmon         Quincy            Redmon 1993-12-11
#> 2888              Kenneth Durden        Kenneth            Durden 1992-05-16
#> 2889                Jalen Myrick          Jalen            Myrick 1995-02-27
#> 2890                 Step Durham           Step            Durham 1995-06-10
#> 2891               Howard Wilson         Howard            Wilson 1995-10-30
#> 2892               Lenzy Pipkins          Lenzy           Pipkins 1993-11-07
#> 2893              Jeremy Boykins         Jeremy           Boykins 1995-05-29
#> 2894              Javien Elliott         Javien           Elliott 1993-07-18
#> 2895                Lashard Durr        Lashard              Durr 1994-10-24
#> 2896              Anthony Cioffi        Anthony            Cioffi 1994-08-26
#> 2897              Sammy Seamster          Sammy          Seamster 1991-02-05
#> 2898                Mercy Maston          Mercy            Maston 1992-11-10
#> 2899               Jhavonte Dean       Jhavonte              Dean 1995-12-14
#> 2900                   B.W. Webb           B.W.              Webb 1990-05-03
#> 2901             Demetri Goodson        Demetri           Goodson 1989-06-11
#> 2902              Brandon Boykin        Brandon            Boykin 1990-07-13
#> 2903               D'Andre Payne        D'Andre             Payne 1996-05-17
#> 2904              Kayvon Webster         Kayvon           Webster 1991-02-01
#> 2905                 William Gay        William               Gay 1985-01-01
#> 2906                  Mike Jones           Mike             Jones       <NA>
#> 2907                 Doran Grant          Doran             Grant 1992-11-30
#> 2908             Dexter McDougle         Dexter          McDougle 1991-04-08
#> 2909                 C.J. Reavis           C.J.            Reavis 1995-11-27
#> 2910             Leonard Johnson        Leonard           Johnson 1990-03-30
#> 2911              Michael Hunter        Michael            Hunter 1993-04-19
#> 2912             Ranthony Texada       Ranthony            Texada 1995-05-16
#> 2913             Shareece Wright       Shareece            Wright 1987-04-08
#> 2914                 Denzel Rice         Denzel              Rice 1993-03-31
#> 2915                  Elie Bouka           Elie             Bouka 1992-08-15
#> 2916               Josh Thornton           Josh          Thornton 1992-11-24
#> 2917                  Aqib Talib           Aqib             Talib 1986-02-13
#> 2918                  Rob Daniel            Rob            Daniel 1991-10-01
#> 2919                  Adam Jones           Adam             Jones 1983-09-30
#> 2920               Jalen Collins          Jalen           Collins 1993-03-20
#> 2921              Jermaine Kelly       Jermaine             Kelly 1995-02-26
#> 2922               Marcus Burley         Marcus            Burley 1990-07-16
#> 2923                Tyler Patmon          Tyler            Patmon 1991-01-26
#> 2924                 Craig Mager          Craig             Mager 1992-06-11
#> 2925             Jermaine Ponder       Jermaine            Ponder 1995-01-09
#> 2926           Captain Munnerlyn        Captain         Munnerlyn 1988-04-10
#> 2927                Rashard Fant        Rashard              Fant 1995-01-08
#> 2928                   B.J. Clay           B.J.              Clay 1995-01-18
#> 2929                 Trovon Reed         Trovon              Reed 1990-12-30
#> 2930             De'Vante Harris       De'Vante            Harris 1993-06-30
#> 2931               Jeff Richards           Jeff          Richards 1991-01-03
#> 2932               Derrick Baity        Derrick             Baity 1996-12-23
#> 2933                 Ryan Carter           Ryan            Carter 1994-11-04
#> 2934               Harlan Miller         Harlan            Miller 1994-06-20
#> 2935                 Cyrus Jones          Cyrus             Jones 1993-11-29
#> 2936             Bene' Benwikere          Bene'         Benwikere 1991-09-03
#> 2937               Robert Nelson         Robert            Nelson 1990-02-16
#> 2938             Javien Hamilton         Javien          Hamilton 1996-09-02
#> 2939                   Leon Hall           Leon              Hall 1984-12-09
#> 2940              Johnthan Banks       Johnthan             Banks 1989-10-03
#> 2941            Deatrick Nichols       Deatrick           Nichols 1994-06-08
#> 2942       Stanley Jean-Baptiste        Stanley     Jean-Baptiste 1990-04-12
#> 2943 Dominique Rodgers-Cromartie      Dominique Rodgers-Cromartie 1986-04-07
#> 2944              Ashton Lampkin         Ashton           Lampkin 1994-01-10
#> 2945             Quinten Rollins        Quinten           Rollins 1992-07-15
#> 2946               Antwuan Davis        Antwuan             Davis 1995-05-14
#> 2947              Rashard Causey        Rashard            Causey 1996-09-20
#> 2948                Lorenzo Doss        Lorenzo              Doss 1994-04-22
#> 2949               Trey Caldwell           Trey          Caldwell 1993-12-04
#> 2950              Jackson Porter        Jackson            Porter 1995-01-26
#> 2951                 Marcus Rios         Marcus              Rios 1994-10-25
#> 2952               D'Montre Wade       D'Montre              Wade 1994-12-22
#> 2953               Curtis Mikell         Curtis            Mikell 1995-11-25
#> 2954            Dashaun Phillips        Dashaun          Phillips 1991-01-03
#> 2955             Ladarius Gunter       Ladarius            Gunter 1992-05-13
#> 2956              Michael Jordan        Michael            Jordan 1992-10-21
#> 2957                 Sam Shields            Sam           Shields 1987-12-08
#> 2958              Jonathan Moxey       Jonathan             Moxey 1995-01-04
#> 2959              Darius Hillary         Darius           Hillary 1993-04-05
#> 2960           Horace Richardson         Horace        Richardson 1993-09-28
#> 2961               Jarell Carter         Jarell            Carter 1995-08-07
#> 2962                Keith Reaser          Keith            Reaser 1991-07-31
#> 2963               Amari Coleman          Amari           Coleman 1996-10-09
#> 2964            Alterraun Verner      Alterraun            Verner 1988-12-13
#> 2965            Christian Boutte      Christian            Boutte 1995-12-29
#> 2966           Rodney Randle Jr.         Rodney        Randle Jr. 1997-02-27
#> 2967                Andrew Soroh         Andrew             Soroh 1996-02-12
#> 2968              Arrion Springs         Arrion           Springs 1995-09-19
#> 2969                 Dee Delaney            Dee           Delaney 1995-02-20
#> 2970              Jocquez Kalili        Jocquez            Kalili 1996-02-29
#> 2971                Jalen Harvey          Jalen            Harvey 1995-09-19
#> 2972                Tyler Sigler          Tyler            Sigler 1996-03-26
#> 2973              Henre' Toliver         Henre'           Toliver 1996-10-21
#> 2974              Isaiah Langley         Isaiah           Langley 1996-10-13
#> 2975               Marcus Edmond         Marcus            Edmond 1995-07-06
#> 2976                Deion Harris          Deion            Harris 1995-12-18
#> 2977           Jamalcolm Liggins      Jamalcolm           Liggins 1996-04-26
#> 2978              Jarvis Jenkins         Jarvis           Jenkins 1988-04-24
#> 2979               Connor Flagel         Connor            Flagel 1995-01-08
#> 2980                Alex Jenkins           Alex           Jenkins 1993-01-15
#> 2981                 Jojo Wicker           Jojo            Wicker 1996-06-09
#> 2982                Jake Ceresna           Jake           Ceresna 1995-07-21
#> 2983              Marcell Dareus        Marcell            Dareus 1990-03-13
#> 2984               Tyrone Holmes         Tyrone            Holmes 1993-09-10
#> 2985                  Chris Long          Chris              Long 1985-03-28
#> 2986               Yurik Bethune          Yurik           Bethune 1997-04-05
#> 2987              Blaine Woodson         Blaine           Woodson 1995-10-30
#> 2988            Kendall Langford        Kendall          Langford 1986-01-27
#> 2989             Michael Johnson        Michael           Johnson 1987-02-07
#> 2990            Mychealon Thomas      Mychealon            Thomas 1994-10-02
#> 2991              Frostee Rucker        Frostee            Rucker 1983-09-14
#> 2992                   Adam Reth           Adam              Reth 1994-08-06
#> 2993           Mackendy Cheridor       Mackendy          Cheridor 1994-09-20
#> 2994                  Alec James           Alec             James 1994-09-30
#> 2995             Anthony Johnson        Anthony           Johnson 1993-01-24
#> 2996               Kendall Reyes        Kendall             Reyes 1989-09-26
#> 2997               William Hayes        William             Hayes 1985-05-02
#> 2998              Charles Tapper        Charles            Tapper 1993-05-07
#> 2999                  Ziggy Hood          Ziggy              Hood 1987-02-16
#> 3000                Ryan Delaire           Ryan           Delaire 1992-01-17
#> 3001              George Johnson         George           Johnson 1987-12-11
#> 3002            Andrew Trumbetti         Andrew         Trumbetti 1996-03-14
#> 3003                Ryan Russell           Ryan           Russell 1992-01-17
#> 3004                  Zach Moore           Zach             Moore 1990-09-05
#> 3005                Jerel Worthy          Jerel            Worthy 1990-04-26
#> 3006              Tomasi Laulile         Tomasi           Laulile 1995-05-22
#> 3007                 Nordly Capi         Nordly              Capi 1992-07-11
#> 3008            Carroll Phillips        Carroll          Phillips 1992-09-02
#> 3009           Anree Saint-Amour          Anree       Saint-Amour 1996-09-18
#> 3010            Leterrius Walton      Leterrius            Walton 1992-03-31
#> 3011               Ondre Pipkins          Ondre           Pipkins 1994-02-25
#> 3012        Cornellius Carradine     Cornellius         Carradine 1990-02-18
#> 3013                Marcus Smith         Marcus             Smith 1992-03-31
#> 3014               Geneo Grissom          Geneo           Grissom 1992-06-04
#> 3015                   Kony Ealy           Kony              Ealy 1991-12-21
#> 3016              Francis Kallon        Francis            Kallon 1994-02-02
#> 3017                   Dee Liner            Dee             Liner 1993-10-29
#> 3018             Kiante Anderson         Kiante          Anderson 1995-05-27
#> 3019            Simeyon Robinson        Simeyon          Robinson       <NA>
#> 3020              Julius Peppers         Julius           Peppers 1980-01-18
#> 3021               Pasoni Tasini         Pasoni            Tasini 1993-05-31
#> 3022                Casey Sayles          Casey            Sayles 1995-09-04
#> 3023             Mitchell Loewen       Mitchell            Loewen 1993-02-14
#> 3024              Hau'oli Kikaha        Hau'oli            Kikaha 1992-07-24
#> 3025      Jamell Garcia-Williams         Jamell   Garcia-Williams 1997-01-24
#> 3026               Destiny Vaeao        Destiny             Vaeao 1994-01-15
#> 3027               Kevin Wilkins          Kevin           Wilkins 1995-04-10
#> 3028              Derrick Shelby        Derrick            Shelby 1989-03-04
#> 3029                   Peli Anau           Peli              Anau 1993-10-26
#> 3030            Jonathan Woodard       Jonathan           Woodard 1993-09-19
#> 3031              Izaah Lunsford          Izaah          Lunsford 1993-10-21
#> 3032             Sterling Bailey       Sterling            Bailey 1992-09-13
#> 3033               Andrew Ankrah         Andrew            Ankrah 1996-12-31
#> 3034               Kasim Edebali          Kasim           Edebali 1989-08-17
#> 3035               Elijah Qualls         Elijah            Qualls 1995-02-11
#> 3036                Chris McCain          Chris            McCain 1991-11-21
#> 3037                 Eric Cotton           Eric            Cotton 1995-02-28
#> 3038              Jacquies Smith       Jacquies             Smith 1990-03-18
#> 3039                Cameron Wake        Cameron              Wake 1982-01-30
#> 3040               Winston Craig        Winston             Craig 1995-07-25
#> 3041                  Ryan Davis           Ryan             Davis 1989-02-24
#> 3042                   Ade Aruna            Ade             Aruna 1994-04-27
#> 3043              Darius Jackson         Darius           Jackson 1994-11-20
#> 3044                Myquon Stout         Myquon             Stout 1996-02-22
#> 3045                  Wes Horton            Wes            Horton 1990-01-18
#> 3046                  Mat Boesen            Mat            Boesen 1995-01-31
#> 3047              Dare Odeyingbo           Dare         Odeyingbo 1996-11-25
#> 3048               Durrant Miles        Durrant             Miles 1994-11-20
#> 3049                 Shakir Soto         Shakir              Soto 1994-02-12
#> 3050               Karter Schult         Karter            Schult 1993-12-21
#> 3051                Dante Sawyer          Dante            Sawyer 1994-12-17
#> 3052             Immanuel Turner       Immanuel            Turner 1996-12-16
#> 3053               Keionta Davis        Keionta             Davis 1994-03-01
#> 3054                 Lenny Jones          Lenny             Jones 1991-08-08
#> 3055                Owen Obasuyi           Owen           Obasuyi 1996-05-07
#> 3056             Michael Bennett        Michael           Bennett 1985-11-13
#> 3057             Jonathan Bonner       Jonathan            Bonner 1996-06-17
#> 3058               Terrence Fede       Terrence              Fede 1991-11-19
#> 3059            Clinton McDonald        Clinton          McDonald 1987-01-06
#> 3060             Garrett Sickels        Garrett           Sickels 1994-09-24
#> 3061          Muhammad Wilkerson       Muhammad         Wilkerson 1989-10-22
#> 3062               Brandon Banks        Brandon             Banks 1994-07-13
#> 3063                Chuck Harris          Chuck            Harris 1997-11-23
#> 3064                    Eric Lee           Eric               Lee 1994-08-06
#> 3065                Josh Forrest           Josh           Forrest 1992-02-24
#> 3066               Jarrell Owens        Jarrell             Owens 1994-10-11
#> 3067             Anthony Winbush        Anthony           Winbush 1994-12-18
#> 3068                Mitch Unrein          Mitch            Unrein 1987-03-25
#> 3069                Ronald Ollie         Ronald             Ollie 1996-05-19
#> 3070              Armonty Bryant        Armonty            Bryant 1990-05-20
#> 3071                 Pat Afriyie            Pat           Afriyie 1996-07-20
#> 3072               Albert Havili         Albert            Havili 1995-08-07
#> 3073                  Avery Moss          Avery              Moss 1994-09-16
#> 3074              Myles Humphrey          Myles          Humphrey 1995-09-07
#> 3075                  David King          David              King 1989-12-27
#> 3076                 Chad Thomas           Chad            Thomas 1995-10-12
#> 3077                  Kerry Wynn          Kerry              Wynn 1991-02-12
#> 3078                 Cam Johnson            Cam           Johnson 1990-05-24
#> 3079          Whitney Richardson        Whitney        Richardson 1992-07-26
#> 3080                 Stacy Keely          Stacy             Keely 1995-05-15
#> 3081                Evan Perrizo           Evan           Perrizo 1995-05-26
#> 3082                 Fadol Brown          Fadol             Brown 1993-04-15
#> 3083               Brian Robison          Brian           Robison 1983-04-27
#> 3084              Claudy Mathieu         Claudy           Mathieu 1993-01-18
#> 3085               Mathieu Betts        Mathieu             Betts 1995-03-22
#> 3086             Antonio Simmons        Antonio           Simmons 1996-02-10
#> 3087                Khairi Clark         Khairi             Clark 1994-10-31
#> 3088               Anthony Moten        Anthony             Moten 1995-07-12
#> 3089              Richard Jarvis        Richard            Jarvis 1995-04-20
#> 3090            Justin Alexandre         Justin         Alexandre 1997-11-12
#> 3091              Kingsley Opara       Kingsley             Opara 1994-10-13
#> 3092                Ricky Walker          Ricky            Walker 1996-04-18
#> 3093            Johnathan Calvin      Johnathan            Calvin 1993-11-28
#> 3094                 Jay Bromley            Jay           Bromley 1992-05-28
#> 3095              Stefan Charles         Stefan           Charles 1988-06-09
#> 3096               Zay Henderson            Zay         Henderson 1994-12-06
#> 3097                 Tom Johnson            Tom           Johnson 1984-08-30
#> 3098                  Josh Banks           Josh             Banks 1994-06-13
#> 3099                  Lewis Neal          Lewis              Neal 1995-05-17
#> 3100                   Josh Fatu           Josh              Fatu 1996-03-08
#> 3101                Cavon Walker          Cavon            Walker 1994-07-04
#> 3102               Earl Mitchell           Earl          Mitchell 1987-09-25
#> 3103                    Joey Mbu           Joey               Mbu 1993-03-28
#> 3104          Kalani Vakameilalo         Kalani       Vakameilalo 1996-04-30
#> 3105              Sealver Siliga        Sealver            Siliga 1990-04-25
#> 3106             Davonte Lambert        Davonte           Lambert 1994-06-23
#> 3107         Ricky Jean-Francois          Ricky     Jean-Francois 1986-11-23
#> 3108                Haloti Ngata         Haloti             Ngata 1984-01-21
#> 3109              Parker Cothren         Parker           Cothren 1994-01-23
#> 3110             Michael Bennett        Michael           Bennett 1993-02-24
#> 3111              Garrison Smith       Garrison             Smith 1991-10-09
#> 3112          Kapron Lewis-Moore         Kapron       Lewis-Moore 1990-01-24
#> 3113              Nigel Williams          Nigel          Williams 1993-12-20
#> 3114                Nazair Jones         Nazair             Jones 1994-12-13
#> 3115                Toby Johnson           Toby           Johnson 1991-09-01
#> 3116               Kyle Williams           Kyle          Williams 1983-06-10
#> 3117                 Jamie Meder          Jamie             Meder 1991-04-12
#> 3118             Julius Warmsley         Julius          Warmsley 1990-05-16
#> 3119                Jeremy Faulk         Jeremy             Faulk 1993-09-13
#> 3120                 Chris Jones          Chris             Jones 1990-07-12
#> 3121              Boogie Roberts         Boogie           Roberts 1996-01-19
#> 3122                Olsen Pierre          Olsen            Pierre 1991-08-27
#> 3123                McKay Murphy          McKay            Murphy 1991-09-05
#> 3124               Tyrunn Walker         Tyrunn            Walker 1990-03-18
#> 3125               Nathan Bazata         Nathan            Bazata 1994-07-15
#> 3126               Lord Hyeamang           Lord          Hyeamang 1996-12-31
#> 3127            Ethan Westbrooks          Ethan        Westbrooks 1990-11-15
#> 3128               Rickey Hatley         Rickey            Hatley 1994-03-29
#> 3129             Sterling Shippy       Sterling            Shippy 1995-08-24
#> 3130             Jamiyus Pittman        Jamiyus           Pittman 1994-10-23
#> 3131               Darius Philon         Darius            Philon 1994-01-22
#> 3132            Du'vonta Lampkin       Du'vonta           Lampkin 1997-01-07
#> 3133               Tito Odenigbo           Tito          Odenigbo 1996-07-13
#> 3134                 Lavon Hooks          Lavon             Hooks 1992-01-23
#> 3135              Tracy Sprinkle          Tracy          Sprinkle 1995-04-18
#> 3136                A.J. Francis           A.J.           Francis 1990-05-07
#> 3137           Dequinton Osborne      Dequinton           Osborne       <NA>
#> 3138             Kristjan Sokoli       Kristjan            Sokoli 1991-09-24
#> 3139                Johnny Maxey         Johnny             Maxey 1993-10-19
#> 3140                 Aziz Shittu           Aziz            Shittu 1994-07-27
#> 3141                Ahtyba Rubin         Ahtyba             Rubin 1986-07-25
#> 3142             Marcus Hardison         Marcus          Hardison 1992-02-14
#> 3143         Adolphus Washington       Adolphus        Washington 1993-11-30
#> 3144                Greg Gilmore           Greg           Gilmore 1994-11-28
#> 3145              Jon Cunningham            Jon        Cunningham 1995-08-31
#> 3146            Ra'Shede Hageman       Ra'Shede           Hageman 1990-08-08
#> 3147             Cedric Thornton         Cedric          Thornton 1988-06-21
#> 3148               Ricky Ali'fua          Ricky           Ali'fua 1991-12-02
#> 3149                 Eddy Wilson           Eddy            Wilson 1997-02-13
#> 3150              Caushaud Lyons       Caushaud             Lyons 1993-01-03
#> 3151             Terrell McClain        Terrell           McClain 1988-07-20
#> 3152               Xavier Cooper         Xavier            Cooper 1991-11-30
#> 3153               Reggie Howard         Reggie            Howard 1996-03-26
#> 3154               Robert Thomas         Robert            Thomas 1991-02-18
#> 3155                 Kaleb Eulls          Kaleb             Eulls 1991-06-28
#> 3156                 Will Sutton           Will            Sutton 1991-10-03
#> 3157                 T.J. Barnes           T.J.            Barnes 1990-06-14
#> 3158                Gerald McCoy         Gerald             McCoy 1988-02-25
#> 3159           Steven Richardson         Steven        Richardson 1996-02-28
#> 3160              Fredrick Jones       Fredrick             Jones 1996-08-25
#> 3161                 Cory Thomas           Cory            Thomas 1995-08-02
#> 3162                Kyle Coleman           Kyle           Coleman 1993-09-30
#> 3163                 Ricky Ortiz          Ricky             Ortiz 1994-04-15
#> 3164                 Shane Smith          Shane             Smith 1993-08-21
#> 3165                Joe Kerridge            Joe          Kerridge 1992-09-17
#> 3166            Glenn Gronkowski          Glenn        Gronkowski 1993-03-25
#> 3167              Algernon Brown       Algernon             Brown 1991-11-29
#> 3168                 Khalid Hill         Khalid              Hill 1995-06-04
#> 3169                  Jay Prosch            Jay            Prosch 1992-08-21
#> 3170                  Sam Rogers            Sam            Rogers 1995-04-12
#> 3171              Jalston Fowler        Jalston            Fowler 1990-07-26
#> 3172             Derrick Coleman        Derrick           Coleman 1990-10-18
#> 3173               James Develin          James           Develin 1988-07-23
#> 3174                George Aston         George             Aston 1996-02-01
#> 3175                  Alan Cross           Alan             Cross 1993-07-02
#> 3176                 Henry Poggi          Henry             Poggi 1994-08-09
#> 3177                   Zach Line           Zach              Line 1990-04-26
#> 3178              Austin Johnson         Austin           Johnson 1989-06-16
#> 3179             Aaron Ripkowski          Aaron         Ripkowski 1992-12-20
#> 3180             Dimitri Flowers        Dimitri           Flowers 1996-01-20
#> 3181               Roosevelt Nix      Roosevelt               Nix 1992-03-30
#> 3182             Patrick DiMarco        Patrick           DiMarco 1989-04-30
#> 3183              Elijah Wellman         Elijah           Wellman 1994-09-20
#> 3184             Malcolm Johnson        Malcolm           Johnson 1992-08-11
#> 3185                 Daniel Marx         Daniel              Marx 1995-10-07
#> 3186                 Luke McNitt           Luke            McNitt 1994-04-20
#> 3187               Taniela Tupou        Taniela             Tupou 1992-12-13
#> 3188                   Andre Hal          Andre               Hal 1992-05-30
#> 3189                 Keith Tandy          Keith             Tandy 1989-02-12
#> 3190                 David Jones          David             Jones 1993-12-04
#> 3191              Charlie Miller        Charlie            Miller 1994-05-15
#> 3192                 Chris Conte          Chris             Conte 1989-02-23
#> 3193                Jojo Tillery           Jojo           Tillery 1997-06-22
#> 3194                   Tim Scott            Tim             Scott 1993-01-25
#> 3195            Terrell Williams        Terrell          Williams 1996-06-29
#> 3196                  Jack Tocho           Jack             Tocho 1995-11-02
#> 3197              Dymonte Thomas        Dymonte            Thomas 1993-11-30
#> 3198                 Joshua Moon         Joshua              Moon 1997-05-18
#> 3199              Jonathon Mincy       Jonathon             Mincy 1992-09-05
#> 3200                Marwin Evans         Marwin             Evans 1993-04-10
#> 3201                   Nat Berhe            Nat             Berhe 1991-07-06
#> 3202          Jermaine Whitehead       Jermaine         Whitehead 1993-03-12
#> 3203              Kendrick Lewis       Kendrick             Lewis 1988-06-16
#> 3204            Dominick Sanders       Dominick           Sanders       <NA>
#> 3205              Isaiah Johnson         Isaiah           Johnson 1992-10-14
#> 3206                 Colin Jones          Colin             Jones 1987-10-27
#> 3207                Jeremy Clark         Jeremy             Clark 1994-06-29
#> 3208             Abraham Wallace        Abraham           Wallace 1996-06-09
#> 3209                 Corey Moore          Corey             Moore 1993-01-28
#> 3210                Kurt Coleman           Kurt           Coleman 1988-07-01
#> 3211             Marqueston Huff     Marqueston              Huff 1992-04-06
#> 3212                Corey Graham          Corey            Graham 1985-07-25
#> 3213                 Earl Thomas           Earl            Thomas 1989-05-07
#> 3214               Will Blackmon           Will          Blackmon 1984-10-27
#> 3215                  Mike Adams           Mike             Adams 1981-03-24
#> 3216               Zedrick Woods        Zedrick             Woods 1997-08-03
#> 3217             Micah Hannemann          Micah         Hannemann 1994-08-15
#> 3218                 Lukas Denis          Lukas             Denis 1997-04-13
#> 3219              Darian Stewart         Darian           Stewart 1988-08-04
#> 3220             Brynden Trawick        Brynden           Trawick 1989-10-23
#> 3221             Derrick Kindred        Derrick           Kindred 1993-12-15
#> 3222               Fish Smithson           Fish          Smithson 1994-03-18
#> 3223                Rontez Miles         Rontez             Miles 1988-11-25
#> 3224              Lorenzo Jerome        Lorenzo            Jerome 1995-01-20
#> 3225               Quin Blanding           Quin          Blanding 1996-05-01
#> 3226              Steven Terrell         Steven           Terrell 1990-09-21
#> 3227              Antoine Bethea        Antoine            Bethea 1984-07-27
#> 3228            Marcus Cromartie         Marcus         Cromartie 1990-12-03
#> 3229                   Don Carey            Don             Carey 1987-02-14
#> 3230                 Glover Quin         Glover              Quin 1986-01-15
#> 3231               Tray Matthews           Tray          Matthews 1994-10-18
#> 3232              Isaiah Johnson         Isaiah           Johnson 1992-05-16
#> 3233                 Eric Weddle           Eric            Weddle 1985-01-04
#> 3234              Santos Ramirez         Santos           Ramirez 1996-04-22
#> 3235               Reggie Nelson         Reggie            Nelson 1983-09-21
#> 3236            Michael Mitchell        Michael          Mitchell 1987-06-10
#> 3237                Jordan Moore         Jordan             Moore 1993-12-13
#> 3238               Jordan Sterns         Jordan            Sterns 1994-05-28
#> 3239            Tyrice Beverette         Tyrice         Beverette 1995-01-28
#> 3240                Reshad Jones         Reshad             Jones 1988-02-25
#> 3241             Micah Abernathy          Micah         Abernathy 1997-02-10
#> 3242               Austin Exford         Austin            Exford 1996-05-16
#> 3243                Kamrin Moore         Kamrin             Moore 1996-10-01
#> 3244              Robert Blanton         Robert           Blanton 1989-09-07
#> 3245               Kameron Kelly        Kameron             Kelly 1996-08-19
#> 3246                Doyin Jibowu          Doyin            Jibowu 1996-07-01
#> 3247               Jamar Summers          Jamar           Summers 1995-06-14
#> 3248                  Ron Parker            Ron            Parker 1987-08-17
#> 3249                Kenny Ladler          Kenny            Ladler 1992-06-23
#> 3250             Leon McQuay III           Leon        McQuay III 1994-11-21
#> 3251            Johnathan Alston      Johnathan            Alston 1994-10-17
#> 3252              Afolabi Laguda        Afolabi            Laguda 1995-07-28
#> 3253             Austin Droogsma         Austin          Droogsma 1995-03-04
#> 3254              Jordan Agasiva         Jordan           Agasiva 1997-05-21
#> 3255                 Adam Gettis           Adam            Gettis 1988-12-09
#> 3256             Chris Schleuger          Chris         Schleuger 1995-05-12
#> 3257              Brandon Thomas        Brandon            Thomas 1991-02-18
#> 3258                    JP Flynn             JP             Flynn 1993-08-30
#> 3259                  Jason King          Jason              King 1993-11-18
#> 3260           Garrett Brumfield        Garrett         Brumfield 1996-06-23
#> 3261                 Cameron Lee        Cameron               Lee 1993-12-28
#> 3262                 Mike Person           Mike            Person 1988-05-17
#> 3263               Ryan Anderson           Ryan          Anderson 1994-12-30
#> 3264                Nate Theaker           Nate           Theaker 1993-10-06
#> 3265               Alex Balducci           Alex          Balducci 1994-03-01
#> 3266              Leonard Wester        Leonard            Wester 1993-01-03
#> 3267               Cody Wichmann           Cody          Wichmann 1992-03-02
#> 3268               Josh LeRibeus           Josh          LeRibeus 1989-07-02
#> 3269               Nico Siragusa           Nico          Siragusa 1994-05-10
#> 3270                Kofi Amichia           Kofi           Amichia 1994-07-29
#> 3271                Ronald Leary         Ronald             Leary 1989-04-29
#> 3272                Taylor Hearn         Taylor             Hearn 1996-01-11
#> 3273                  Josh Allen           Josh             Allen 1991-12-30
#> 3274                   Greg Pyke           Greg              Pyke 1993-06-04
#> 3275              Jermon Bushrod         Jermon           Bushrod 1984-08-19
#> 3276                Ramon Foster          Ramon            Foster 1986-01-07
#> 3277               Avery Gennesy          Avery           Gennesy 1994-02-06
#> 3278               Jerald Foster         Jerald            Foster 1995-09-14
#> 3279                Zane Beadles           Zane           Beadles 1986-11-19
#> 3280              Blake Blackmar          Blake          Blackmar 1995-08-03
#> 3281              Tyler Catalina          Tyler          Catalina 1993-01-24
#> 3282              Menelik Watson        Menelik            Watson 1988-12-22
#> 3283                   Beau Nunn           Beau              Nunn 1995-06-12
#> 3284                Cole Croston           Cole           Croston 1993-12-25
#> 3285                  Josh James           Josh             James 1993-05-09
#> 3286                  Byron Bell          Byron              Bell 1989-01-17
#> 3287                  JJ Dielman             JJ           Dielman 1993-12-16
#> 3288               Brendan Mahon        Brendan             Mahon 1995-01-17
#> 3289                  Evan Smith           Evan             Smith 1986-07-19
#> 3290                Clint Boling          Clint            Boling 1989-05-09
#> 3291              Amini Silatolu          Amini          Silatolu 1988-09-16
#> 3292                Cameron Hunt        Cameron              Hunt 1994-12-17
#> 3293                 Damien Mama         Damien              Mama 1995-06-27
#> 3294               Kaleb Johnson          Kaleb           Johnson 1993-02-22
#> 3295              Connor Hilland         Connor           Hilland 1995-06-18
#> 3296            Vladimir Ducasse       Vladimir           Ducasse 1987-10-15
#> 3297                Rishard Cook        Rishard              Cook 1997-06-25
#> 3298               Andrew Tiller         Andrew            Tiller 1989-03-13
#> 3299             Jonathan Cooper       Jonathan            Cooper 1990-01-19
#> 3300              Larry Williams          Larry          Williams 1995-02-22
#> 3301              Dorian Johnson         Dorian           Johnson 1994-10-21
#> 3302                 Chris Brown          Chris             Brown 1996-04-26
#> 3303                Ryan Crozier           Ryan           Crozier 1995-10-31
#> 3304                Andy Levitre           Andy           Levitre 1986-05-15
#> 3305                Matt Slauson           Matt           Slauson 1986-02-18
#> 3306             Jeremiah Sirles       Jeremiah            Sirles 1991-08-08
#> 3307             Denver Kirkland         Denver          Kirkland 1994-03-06
#> 3308                  Oni Omoile            Oni            Omoile 1993-06-24
#> 3309                   Kyle Long           Kyle              Long 1988-12-05
#> 3310               Ian Silberman            Ian         Silberman 1992-10-10
#> 3311               Jordan McCray         Jordan            McCray 1991-11-11
#> 3312            Micah St. Andrew          Micah        St. Andrew 1996-01-10
#> 3313         Christian Westerman      Christian         Westerman 1993-02-23
#> 3314              Spencer Drango        Spencer            Drango 1992-10-15
#> 3315              Kadeem Edwards         Kadeem           Edwards 1991-01-24
#> 3316               Brandon Fusco        Brandon             Fusco 1988-07-26
#> 3317              Fisayo Awolaja         Fisayo           Awolaja 1996-08-20
#> 3318                Isaac Asiata          Isaac            Asiata 1992-12-29
#> 3319                Darius James         Darius             James 1993-11-30
#> 3320              Kevin Pamphile          Kevin          Pamphile 1990-11-27
#> 3321                  Tariq Cole          Tariq              Cole 1996-02-09
#> 3322                  Josh Kline           Josh             Kline 1989-12-29
#> 3323            Maurquice Shakir      Maurquice            Shakir 1993-10-14
#> 3324               Landon Turner         Landon            Turner 1993-05-15
#> 3325               John Montelus           John          Montelus 1995-09-08
#> 3326              Darrell Greene        Darrell            Greene 1992-10-29
#> 3327                   Zac Kerin            Zac             Kerin 1991-08-13
#> 3328                 Fred Lauina           Fred            Lauina 1995-05-17
#> 3329                Givens Price         Givens             Price 1994-10-03
#> 3330                 Aaron Evans          Aaron             Evans 1995-01-07
#> 3331                 Martez Ivey         Martez              Ivey 1995-07-25
#> 3332               Larry Warford          Larry           Warford 1991-06-18
#> 3333              Malcolm Bunche        Malcolm            Bunche 1991-10-16
#> 3334                 Dejon Allen          Dejon             Allen 1994-05-05
#> 3335               Jordan Morgan         Jordan            Morgan 1994-05-13
#> 3336               Zack Golditch           Zack          Golditch 1995-02-22
#> 3337            Darrell Williams        Darrell          Williams 1993-03-24
#> 3338               Ruben Holcomb          Ruben           Holcomb 1994-11-25
#> 3339              Demetrius Knox      Demetrius              Knox 1995-10-23
#> 3340                 Tyler Jones          Tyler             Jones 1995-10-27
#> 3341                  Kyle Kalis           Kyle             Kalis 1993-12-21
#> 3342              Arie Kouandjio           Arie         Kouandjio 1992-04-23
#> 3343                  Matt Tobin           Matt             Tobin 1990-06-05
#> 3344                Joseph Cheek         Joseph             Cheek 1992-12-02
#> 3345                Kitt O'Brien           Kitt           O'Brien 1990-04-29
#> 3346              Austin Pasztor         Austin           Pasztor 1990-11-26
#> 3347                  Joe Lowery            Joe            Lowery 1996-05-20
#> 3348                Mason Gentry          Mason            Gentry 1994-02-24
#> 3349                   T.J. Lang           T.J.              Lang 1987-09-20
#> 3350                Patrick Vahe        Patrick              Vahe 1996-04-03
#> 3351               Abdul Beecham          Abdul           Beecham 1997-03-05
#> 3352               Marshal Yanda        Marshal             Yanda 1984-09-15
#> 3353              Salesi Uhatafe         Salesi           Uhatafe 1994-10-25
#> 3354                  Erick Wren          Erick              Wren       <NA>
#> 3355                Cedrick Lang        Cedrick              Lang 1992-05-12
#> 3356                  John Greco           John             Greco 1985-03-24
#> 3357                Leon Johnson           Leon           Johnson 1995-06-04
#> 3358                 Josh Walker           Josh            Walker 1991-06-02
#> 3359                 Josh Sitton           Josh            Sitton 1986-06-16
#> 3360                Shawn Lauvao          Shawn            Lauvao 1987-10-26
#> 3361                 Don Barclay            Don           Barclay 1989-04-18
#> 3362              Brandon Greene        Brandon            Greene 1994-03-01
#> 3363                  John Jerry           John             Jerry 1986-06-14
#> 3364                Will Pericak           Will           Pericak 1989-12-30
#> 3365                  Kareem Are         Kareem               Are 1994-03-14
#> 3366                  Will House           Will             House 1995-05-14
#> 3367                  Kyle Bosch           Kyle             Bosch 1994-11-11
#> 3368            Jeremy Vujnovich         Jeremy         Vujnovich 1990-10-12
#> 3369               Hugh Thornton           Hugh          Thornton 1991-06-28
#> 3370                  Jeff Allen           Jeff             Allen 1990-01-08
#> 3371              Nick Callender           Nick         Callender 1994-06-16
#> 3372              Dustin Stanton         Dustin           Stanton 1994-02-20
#> 3373              Chris Gonzalez          Chris          Gonzalez 1995-07-03
#> 3374             Larry Allen Jr.          Larry         Allen Jr. 1996-07-21
#> 3375                 Chris Scott          Chris             Scott 1987-08-04
#> 3376              Josiah Tauaefa         Josiah           Tauaefa 1997-03-05
#> 3377               Scooby Wright         Scooby            Wright 1994-08-28
#> 3378           Andrew Motuapuaka         Andrew        Motuapuaka 1995-06-29
#> 3379                 Bam Bradley            Bam           Bradley 1994-06-26
#> 3380                 Kyle Queiro           Kyle            Queiro 1994-12-18
#> 3381              Jameer Thurman         Jameer           Thurman 1995-01-20
#> 3382             DeMarquis Gates      DeMarquis             Gates 1996-03-07
#> 3383      Jerrol Garcia-Williams         Jerrol   Garcia-Williams 1993-12-24
#> 3384              Naashon Hughes        Naashon            Hughes 1995-07-15
#> 3385                 Alvin Jones          Alvin             Jones 1994-12-02
#> 3386              Zaire Anderson          Zaire          Anderson 1992-08-18
#> 3387                Chris Worley          Chris            Worley 1995-09-15
#> 3388               Marcus Porter         Marcus            Porter 1996-08-30
#> 3389               Tre' Crawford           Tre'          Crawford 1996-09-06
#> 3390                 Otha Peters           Otha            Peters 1994-02-27
#> 3391                Brandon Bell        Brandon              Bell 1995-01-09
#> 3392             Raymond Davison        Raymond           Davison 1995-03-25
#> 3393                  Drew Lewis           Drew             Lewis 1995-09-07
#> 3394                Ahmad Thomas          Ahmad            Thomas 1994-12-15
#> 3395               Carl Bradford           Carl          Bradford 1992-08-15
#> 3396                Gary Johnson           Gary           Johnson 1996-08-02
#> 3397                Adam Bighill           Adam           Bighill 1988-10-16
#> 3398               Junior Joseph         Junior            Joseph 1994-09-07
#> 3399              Darnell Sankey        Darnell            Sankey 1994-10-11
#> 3400                Jeff Allison           Jeff           Allison 1997-03-20
#> 3401              Riley Bullough          Riley          Bullough 1993-11-23
#> 3402                Te'von Coney         Te'von             Coney 1997-06-10
#> 3403                Nyles Morgan          Nyles            Morgan       <NA>
#> 3404                   Tre Lamar            Tre             Lamar 1997-10-08
#> 3405            Kendell Beckwith        Kendell          Beckwith 1994-12-02
#> 3406                Airius Moore         Airius             Moore 1995-11-14
#> 3407             Marquis Flowers        Marquis           Flowers 1992-02-16
#> 3408             Connor Strachan         Connor          Strachan 1995-06-30
#> 3409               Matt Galambos           Matt          Galambos 1995-03-21
#> 3410                Anthony Wint        Anthony              Wint 1995-09-14
#> 3411               Dedrick Young        Dedrick             Young 1996-11-07
#> 3412                Nigel Harris          Nigel            Harris 1994-12-07
#> 3413                    BJ Blunt             BJ             Blunt 1995-04-21
#> 3414                Trevor Bates         Trevor             Bates 1993-08-28
#> 3415           Jonathan Celestin       Jonathan          Celestin 1995-11-21
#> 3416                  Tre Watson            Tre            Watson 1996-07-05
#> 3417              Joe Dineen Jr.            Joe        Dineen Jr. 1996-03-26
#> 3418               Elijah Norris         Elijah            Norris 1994-07-04
#> 3419               Emmanuel Beal       Emmanuel              Beal 1995-06-26
#> 3420            Antonio Morrison        Antonio          Morrison 1994-12-06
#> 3421           Kentrell Brothers       Kentrell          Brothers 1993-02-08
#> 3422            Keishawn Bierria       Keishawn           Bierria 1995-07-26
#> 3423                Keith Kelsey          Keith            Kelsey 1995-03-17
#> 3424        Sebastian Janikowski      Sebastian        Janikowski 1978-03-02
#> 3425                   Nick Rose           Nick              Rose 1994-05-05
#> 3426                 Phil Dawson           Phil            Dawson 1975-01-23
#> 3427                Travis Coons         Travis             Coons 1992-02-06
#> 3428                David Marvin          David            Marvin 1995-04-05
#> 3429                Cole Hedlund           Cole           Hedlund 1995-03-15
#> 3430               Caleb Sturgis          Caleb           Sturgis 1989-08-09
#> 3431              Marshall Koehn       Marshall             Koehn 1992-08-29
#> 3432              Adam Vinatieri           Adam         Vinatieri 1972-12-28
#> 3433          Chandler Catanzaro       Chandler         Catanzaro 1991-02-26
#> 3434                Connor Barth         Connor             Barth 1986-04-11
#> 3435                 Matt Bryant           Matt            Bryant 1975-05-29
#> 3436                  Nick Novak           Nick             Novak 1981-08-21
#> 3437               Mark Herzlich           Mark          Herzlich 1987-09-01
#> 3438             Jeremiah George       Jeremiah            George 1992-01-24
#> 3439               Cameron Lynch        Cameron             Lynch 1993-08-04
#> 3440                 Brock Coyle          Brock             Coyle 1990-10-12
#> 3441                Bruce Carter          Bruce            Carter 1988-02-19
#> 3442                Lamin Barrow          Lamin            Barrow 1990-11-27
#> 3443                Mason Foster          Mason            Foster 1989-03-01
#> 3444                 Frank Zombo          Frank             Zombo 1987-03-05
#> 3445             Wesley Woodyard         Wesley          Woodyard 1986-07-21
#> 3446                  Chris Frey          Chris              Frey 1995-06-23
#> 3447                Ramik Wilson          Ramik            Wilson 1992-08-19
#> 3448              Sam Barrington            Sam        Barrington 1990-10-05
#> 3449               Nathan Stupar         Nathan            Stupar 1988-03-14
#> 3450                Brian Peters          Brian            Peters 1988-10-31
#> 3451                Juwan Foggie          Juwan            Foggie 1995-11-02
#> 3452         Thurston Armbrister       Thurston        Armbrister 1992-12-25
#> 3453                 Josh Martin           Josh            Martin 1991-11-07
#> 3454              Emmanuel Lamur       Emmanuel             Lamur 1989-06-08
#> 3455               Reggie Hunter         Reggie            Hunter 1994-01-02
#> 3456                Ramon Humber          Ramon            Humber 1987-08-10
#> 3457                 Erik Walden           Erik            Walden 1985-08-21
#> 3458                  Zach Brown           Zach             Brown 1989-10-23
#> 3459                Korey Toomer          Korey            Toomer 1988-12-09
#> 3460             Jonathan Freeny       Jonathan            Freeny 1989-06-15
#> 3461               Preston Brown        Preston             Brown 1992-10-27
#> 3462                  David Bass          David              Bass 1990-09-11
#> 3463                  Josh Smith           Josh             Smith 1997-02-25
#> 3464           Lorenzo Alexander        Lorenzo         Alexander 1983-05-31
#> 3465                  Josh Keyes           Josh             Keyes 1993-01-23
#> 3466              Terence Garvin        Terence            Garvin 1991-01-01
#> 3467                Arthur Moats         Arthur             Moats 1988-03-14
#> 3468                Telvin Smith         Telvin             Smith 1991-04-11
#> 3469            Albert McClellan         Albert         McClellan 1986-06-04
#> 3470            Dominique Easley      Dominique            Easley 1992-04-28
#> 3471                Ahmad Brooks          Ahmad            Brooks 1984-03-14
#> 3472                  Ben Jacobs            Ben            Jacobs 1988-04-17
#> 3473                Quart'e Sapp        Quart'e              Sapp 1997-03-08
#> 3474                Eric Pinkins           Eric           Pinkins 1991-08-07
#> 3475                   Mike Hull           Mike              Hull 1991-05-25
#> 3476                   Shane Ray          Shane               Ray 1993-05-18
#> 3477              Derrick Morgan        Derrick            Morgan 1989-01-06
#> 3478            Brandon Marshall        Brandon          Marshall 1989-09-10
#> 3479                 Nate Palmer           Nate            Palmer 1989-09-23
#> 3480               Dekoda Watson         Dekoda            Watson 1988-03-03
#> 3481                 Vincent Rey        Vincent               Rey 1987-09-06
#> 3482                Mike Needham           Mike           Needham       <NA>
#> 3483                James Hearns          James            Hearns 1993-09-20
#> 3484                Corey Nelson          Corey            Nelson 1992-04-22
#> 3485                Andre Branch          Andre            Branch 1989-07-14
#> 3486               Hayes Pullard          Hayes           Pullard 1992-04-18
#> 3487             Lorenzo Mauldin        Lorenzo           Mauldin 1992-10-01
#> 3488             Vontaze Burfict        Vontaze           Burfict 1990-09-24
#> 3489               Connor Barwin         Connor            Barwin 1986-10-15
#> 3490                  Zach Vigil           Zach             Vigil 1991-03-28
#> 3491                   Jake Ryan           Jake              Ryan 1992-02-27
#> 3492             Derrick Johnson        Derrick           Johnson 1982-11-22
#> 3493           Maurice Alexander        Maurice         Alexander 1991-02-16
#> 3494               Terrell Suggs        Terrell             Suggs 1982-10-11
#> 3495            Martrell Spaight       Martrell           Spaight 1993-08-05
#> 3496             Carlos Thompson         Carlos          Thompson 1992-02-16
#> 3497                   John Timu           John              Timu 1992-08-27
#> 3498                  Nick Perry           Nick             Perry 1990-04-12
#> 3499          Ro'derrick Hoskins     Ro'derrick           Hoskins 1994-08-23
#> 3500                Elijah Zeise         Elijah             Zeise 1995-11-28
#> 3501             Kelvin Sheppard         Kelvin          Sheppard 1988-01-02
#> 3502               Clay Matthews           Clay          Matthews 1986-05-14
#> 3503               Mark McLaurin           Mark          McLaurin 1997-04-11
#> 3504               Gerald Hodges         Gerald            Hodges 1991-01-17
#> 3505                  Ben Heeney            Ben            Heeney 1992-05-13
#> 3506              D.J. Alexander           D.J.         Alexander 1991-09-30
#> 3507             Jordan Williams         Jordan          Williams 1993-03-23
#> 3508                Brett Taylor          Brett            Taylor 1994-08-08
#> 3509             Chase Middleton          Chase         Middleton 1997-03-24
#> 3510           Jonathan Anderson       Jonathan          Anderson 1991-10-27
#> 3511                Obum Gwacham           Obum           Gwacham 1991-03-20
#> 3512                Brian Orakpo          Brian            Orakpo 1986-07-31
#> 3513                 Ketner Kupp         Ketner              Kupp 1996-11-15
#> 3514                  Eli Harold            Eli            Harold 1994-01-20
#> 3515                    Sam Acho            Sam              Acho 1988-09-06
#> 3516             Deiontrez Mount      Deiontrez             Mount 1993-02-26
#> 3517               Matt Longacre           Matt          Longacre 1991-09-21
#> 3518                 Akeem Ayers          Akeem             Ayers 1989-07-10
#> 3519                Ryan Shazier           Ryan           Shazier 1992-09-06
#> 3520                   Jon Condo            Jon             Condo 1981-08-26
#> 3521                  Scott Daly          Scott              Daly 1994-02-07
#> 3522                  Kyle Vasey           Kyle             Vasey 1996-04-20
#> 3523                  Mike Windt           Mike             Windt 1986-05-29
#> 3524                 Zak DeOssie            Zak           DeOssie 1984-05-25
#> 3525             Kevin McDermott          Kevin         McDermott 1990-01-12
#> 3526                Tanner Carew         Tanner             Carew 1995-10-04
#> 3527                 Drew Ferris           Drew            Ferris 1992-03-07
#> 3528                  Drew Scott           Drew             Scott 1995-03-12
#> 3529                 John Wirtel           John            Wirtel 1995-08-24
#> 3530              Wes Farnsworth            Wes        Farnsworth 1997-04-10
#> 3531              Jeff Overbaugh           Jeff         Overbaugh 1993-11-24
#> 3532           Vincent Valentine        Vincent         Valentine 1994-02-23
#> 3533            Ira Savage-Lewis            Ira      Savage-Lewis 1996-02-06
#> 3534                  Deon Simon           Deon             Simon 1990-07-06
#> 3535              Joshua Frazier         Joshua           Frazier 1995-11-06
#> 3536                 Phil Taylor           Phil            Taylor 1988-04-07
#> 3537               Gerald Willis         Gerald            Willis 1995-08-23
#> 3538             Mike Hughes Jr.           Mike        Hughes Jr. 1996-04-03
#> 3539                Conor Sheehy          Conor            Sheehy 1996-07-24
#> 3540                Bryant Jones         Bryant             Jones 1997-04-15
#> 3541             Daryle Banfield         Daryle          Banfield 1997-12-10
#> 3542               Johnny Dwight         Johnny            Dwight 1995-03-22
#> 3543                 Chris Okoye          Chris             Okoye 1996-06-22
#> 3544                 Jegs Jegede           Jegs            Jegede 1994-05-24
#> 3545                 Mike Ramsay           Mike            Ramsay 1995-03-16
#> 3546               Dylan Bradley          Dylan           Bradley 1995-02-04
#> 3547         Stevie Tu'ikolovatu         Stevie      Tu'ikolovatu 1991-06-28
#> 3548              Javier Edwards         Javier           Edwards 1996-10-27
#> 3549              Lyndon Johnson         Lyndon           Johnson 1994-05-23
#> 3550         Christian Lacouture      Christian         Lacouture 1994-09-04
#> 3551               Jay-Tee Tiuli        Jay-Tee             Tiuli 1996-01-14
#> 3552              Austin Maloata         Austin           Maloata 1996-02-11
#> 3553             Chunky Clements         Chunky          Clements 1994-12-03
#> 3554              Omarius Bryant        Omarius            Bryant 1994-10-26
#> 3555               Tyrell Chavis         Tyrell            Chavis 1994-06-15
#> 3556              Brandon Mebane        Brandon            Mebane 1985-01-15
#> 3557              Bijhon Jackson         Bijhon           Jackson 1995-11-06
#> 3558                   Kyle Love           Kyle              Love 1986-11-18
#> 3559              Curtis Cothran         Curtis           Cothran 1995-02-24
#> 3560              Trevon Sanders         Trevon           Sanders 1997-04-25
#> 3561                Bennie Logan         Bennie             Logan 1989-12-28
#> 3562             Kendrick Norton       Kendrick            Norton 1997-06-07
#> 3563            Robert Nkemdiche         Robert         Nkemdiche 1994-09-19
#> 3564               Dylan Donahue          Dylan           Donahue 1992-08-20
#> 3565              Cayson Collins         Cayson           Collins 1995-11-10
#> 3566                   Jeff Knox           Jeff              Knox 1992-02-22
#> 3567                Sutton Smith         Sutton             Smith 1996-03-22
#> 3568               Tobenna Okeke        Tobenna             Okeke 1996-07-17
#> 3569                 Steve Longa          Steve             Longa 1994-09-29
#> 3570                 Blair Brown          Blair             Brown 1994-05-27
#> 3571                James Cowser          James            Cowser 1990-09-13
#> 3572              Kahzin Daniels         Kahzin           Daniels 1995-10-26
#> 3573               Christian Sam      Christian               Sam 1996-06-07
#> 3574                Markus Jones         Markus             Jones 1996-01-10
#> 3575                 Chris Peace          Chris             Peace 1996-02-08
#> 3576           Cassanova McKinzy      Cassanova           McKinzy 1992-11-17
#> 3577              Manase Hungalu         Manase           Hungalu 1995-01-04
#> 3578               Ufomba Kamalu         Ufomba            Kamalu 1992-11-02
#> 3579             Gimel President          Gimel         President 1994-06-24
#> 3580               Silas Stewart          Silas           Stewart 1995-09-28
#> 3581                Malik Carney          Malik            Carney 1995-09-21
#> 3582       Xavier Woodson-Luster         Xavier    Woodson-Luster 1995-08-06
#> 3583               Chad Meredith           Chad          Meredith 1994-06-21
#> 3584             Bryson Albright         Bryson          Albright 1994-03-15
#> 3585                 Frank Ginda          Frank             Ginda 1997-05-26
#> 3586             Tre'Von Johnson        Tre'Von           Johnson 1995-02-10
#> 3587                 Marcus Rush         Marcus              Rush 1991-06-19
#> 3588               Josh Carraway           Josh          Carraway 1994-04-13
#> 3589                 Jeremy Cash         Jeremy              Cash 1992-12-09
#> 3590              Keshun Freeman         Keshun           Freeman 1995-11-10
#> 3591                Jeff Holland           Jeff           Holland 1995-09-27
#> 3592                Dante Booker          Dante            Booker 1995-10-02
#> 3593                Curtis Akins         Curtis             Akins 1995-09-28
#> 3594                 Brian Womac          Brian             Womac 1995-01-19
#> 3595                Latroy Lewis         Latroy             Lewis 1993-11-09
#> 3596            Matthew Oplinger        Matthew          Oplinger 1996-02-23
#> 3597                Richie Brown         Richie             Brown 1994-04-15
#> 3598              Matthew Thomas        Matthew            Thomas 1995-07-21
#> 3599              J'terius Jones       J'terius             Jones 1993-11-12
#> 3600                 Ejuan Price          Ejuan             Price 1993-01-30
#> 3601                  Chris Odom          Chris              Odom 1994-09-16
#> 3602                  E.J. Ejiya           E.J.             Ejiya 1995-10-06
#> 3603               Willie Harvey         Willie            Harvey 1996-01-09
#> 3604                   Deon King           Deon              King 1993-07-02
#> 3605            Kennan Gilchrist         Kennan         Gilchrist 1994-09-16
#> 3606          Sterling Sheffield       Sterling         Sheffield 1996-11-30
#> 3607               Colton Jumper         Colton            Jumper 1994-11-26
#> 3608             Jesse Aniebonam          Jesse         Aniebonam 1996-01-05
#> 3609                Jamey Mosley          Jamey            Mosley 1996-03-28
#> 3610                Joey Alfieri           Joey           Alfieri 1996-03-06
#> 3611               Garret Dooley         Garret            Dooley 1994-12-01
#> 3612            Jaboree Williams        Jaboree          Williams 1996-01-29
#> 3613       Bryson Allen-Williams         Bryson    Allen-Williams 1996-10-15
#> 3614                  Koa Farmer            Koa            Farmer 1996-02-21
#> 3615               Brandon Chubb        Brandon             Chubb 1993-10-21
#> 3616               Landis Durham         Landis            Durham 1997-08-31
#> 3617             Danny Ezechukwu          Danny         Ezechukwu 1994-12-07
#> 3618               Josh Corcoran           Josh          Corcoran 1997-04-05
#> 3619              Michael Onuoha        Michael            Onuoha 1993-06-29
#> 3620                 Gabe Martin           Gabe            Martin 1992-06-05
#> 3621               Aaron Wallace          Aaron           Wallace 1993-07-08
#> 3622                Vontae Diggs         Vontae             Diggs 1995-11-07
#> 3623                D'Juan Hines         D'Juan             Hines 1994-09-13
#> 3624              Anthony Stubbs        Anthony            Stubbs 1996-08-09
#> 3625                 Kyle Wilson           Kyle            Wilson 1995-11-02
#> 3626               Hunter Dimick         Hunter            Dimick 1993-10-29
#> 3627               Greer Martini          Greer           Martini 1995-06-06
#> 3628                 Warren Long         Warren              Long 1995-03-11
#> 3629                David Kenney          David            Kenney 1995-02-06
#> 3630                Azeem Victor          Azeem            Victor 1995-09-19
#> 3631               Sione Teuhema          Sione           Teuhema 1995-09-28
#> 3632              Freddie Bishop        Freddie            Bishop 1990-02-25
#> 3633                Dadi Nicolas           Dadi           Nicolas 1992-09-29
#> 3634               Asantay Brown        Asantay             Brown 1995-02-03
#> 3635           Antwione Williams       Antwione          Williams 1993-05-26
#> 3636                  Nick Usher           Nick             Usher 1995-01-22
#> 3637               Terrill Hanks        Terrill             Hanks 1995-12-07
#> 3638         Farrington Huguenin     Farrington          Huguenin 1992-05-08
#> 3639                  Davis Tull          Davis              Tull 1991-11-12
#> 3640              Reshard Cliett        Reshard            Cliett 1992-04-29
#> 3641              Quentin Poling        Quentin            Poling 1994-08-17
#> 3642                 Chase Allen          Chase             Allen 1993-08-29
#> 3643               Deshaun Davis        Deshaun             Davis 1995-12-31
#> 3644                 Marquel Lee        Marquel               Lee 1995-10-21
#> 3645               Vosean Joseph         Vosean            Joseph 1997-12-15
#> 3646              Corey Thompson          Corey          Thompson 1993-12-23
#> 3647             Jerod Fernandez          Jerod         Fernandez 1994-05-26
#> 3648              Pete Robertson           Pete         Robertson 1992-12-12
#> 3649                Eric Nzeocha           Eric           Nzeocha 1993-04-01
#> 3650             Vontarrius Dora     Vontarrius              Dora 1992-09-07
#> 3651               Chris Landrum          Chris           Landrum 1992-09-14
#> 3652                 Keion Adams          Keion             Adams 1995-06-08
#> 3653                 Alex Bazzie           Alex            Bazzie 1990-08-05
#> 3654             Tony Washington           Tony        Washington 1994-04-24
#> 3655            Nicholas Grigsby       Nicholas           Grigsby 1992-07-02
#> 3656                  Jason Hall          Jason              Hall 1996-05-16
#> 3657                  Jacob Pugh          Jacob              Pugh 1995-09-22
#> 3658                Joel Lanning           Joel           Lanning 1994-11-18
#> 3659              Antonio Garcia        Antonio            Garcia 1993-12-10
#> 3660                Kyle Meadows           Kyle           Meadows 1994-11-03
#> 3661                Austin Fleer         Austin             Fleer 1995-06-01
#> 3662             Roubbens Joseph       Roubbens            Joseph 1994-12-21
#> 3663                   Dino Boyd           Dino              Boyd 1996-09-02
#> 3664               Dillon Gordon         Dillon            Gordon 1993-09-02
#> 3665               Brandon Smith        Brandon             Smith 1994-09-12
#> 3666                   Mo Porter             Mo            Porter 1995-03-29
#> 3667              Donnell Greene        Donnell            Greene 1995-11-09
#> 3668                Chris Durant          Chris            Durant 1995-12-19
#> 3669                 Jake Campos           Jake            Campos 1994-10-18
#> 3670             Williams Poehls       Williams            Poehls 1991-11-27
#> 3671                  John Kling           John             Kling 1993-07-09
#> 3672               Justin Senior         Justin            Senior 1994-07-08
#> 3673                 Brant Weiss          Brant             Weiss 1995-06-08
#> 3674             Travis Vornkahl         Travis          Vornkahl 1995-11-05
#> 3675                  Jylan Ware          Jylan              Ware 1993-10-16
#> 3676                 Cole Boozer           Cole            Boozer 1994-03-20
#> 3677             Toby Weathersby           Toby        Weathersby 1996-09-19
#> 3678                  Tyler Marz          Tyler              Marz 1992-09-09
#> 3679             Blaine Clausell         Blaine          Clausell 1992-01-31
#> 3680                   Matt Diaz           Matt              Diaz 1994-09-20
#> 3681          Quinterrius Eatmon    Quinterrius            Eatmon 1991-12-04
#> 3682               Ryker Mathews          Ryker           Mathews 1992-11-28
#> 3683            Randin Crecelius         Randin         Crecelius 1996-08-05
#> 3684                 Zach Sterup           Zach            Sterup 1992-05-14
#> 3685                 Tommy Doles          Tommy             Doles 1995-12-25
#> 3686              Riley Mayfield          Riley          Mayfield 1995-04-01
#> 3687             Vinston Painter        Vinston           Painter 1989-10-11
#> 3688              Andreas Knappe        Andreas            Knappe 1991-06-02
#> 3689             Laurence Gibson       Laurence            Gibson 1991-03-19
#> 3690                   A.T. Hall           A.T.              Hall 1996-01-26
#> 3691                Justin Evans         Justin             Evans 1995-08-19
#> 3692               Brian Wallace          Brian           Wallace 1996-02-03
#> 3693                 Brock Ruble          Brock             Ruble 1996-01-07
#> 3694             Jamar McGloster          Jamar         McGloster 1995-06-04
#> 3695          Brian Fineanganofo          Brian      Fineanganofo 1995-05-03
#> 3696              Adam Bisnowaty           Adam         Bisnowaty 1993-12-14
#> 3697               Damian Prince         Damian            Prince 1996-04-16
#> 3698                Kent Perkins           Kent           Perkins 1994-11-19
#> 3699           Andrew Lauderdale         Andrew        Lauderdale 1993-11-22
#> 3700             Kendall Calhoun        Kendall           Calhoun 1994-12-27
#> 3701       Juwann Bushell-Beatty         Juwann    Bushell-Beatty 1996-06-18
#> 3702                Cole Gardner           Cole           Gardner 1993-11-11
#> 3703               Bentley Spain        Bentley             Spain 1996-05-02
#> 3704              Jared Machorro          Jared          Machorro 1996-02-24
#> 3705                 Brett Boyko          Brett             Boyko 1992-08-04
#> 3706          George Asafo-Adjei         George       Asafo-Adjei 1997-01-12
#> 3707                 Kyle Murphy           Kyle            Murphy 1993-12-11
#> 3708           Christian DiLauro      Christian           DiLauro 1994-11-11
#> 3709               Larson Graham         Larson            Graham 1994-04-09
#> 3710                Derrick Puni        Derrick              Puni 1994-12-13
#> 3711                Blake Camper          Blake            Camper 1996-12-17
#> 3712                 Chidi Okeke          Chidi             Okeke 1996-12-26
#> 3713                Steven Moore         Steven             Moore 1993-09-28
#> 3714             Jaelin Robinson         Jaelin          Robinson 1995-01-08
#> 3715            Zachary Crabtree        Zachary          Crabtree 1994-09-16
#> 3716              Marquez Tucker        Marquez            Tucker 1996-09-19
#> 3717                Tyler Roemer          Tyler            Roemer 1998-03-06
#> 3718              Lukayus McNeil        Lukayus            McNeil 1994-10-13
#> 3719                 Pace Murphy           Pace            Murphy 1994-03-02
#> 3720            Desmond Harrison        Desmond          Harrison 1993-10-08
#> 3721              Dieugot Joseph        Dieugot            Joseph 1994-03-21
#> 3722             Gerhard De Beer        Gerhard           De Beer 1994-07-05
#> 3723               Rees Odhiambo           Rees          Odhiambo 1992-09-23
#> 3724                Norman Price         Norman             Price 1994-08-25
#> 3725           Marcus Applefield         Marcus        Applefield 1995-12-15
#> 3726                Jerry Ugokwe          Jerry            Ugokwe 1994-02-24
#> 3727               Brian Mihalik          Brian           Mihalik 1992-08-21
#> 3728              Brandon Hitner        Brandon            Hitner 1995-05-15
#> 3729                Brock Miller          Brock            Miller       <NA>
#> 3730              Austin Barnard         Austin           Barnard 1995-06-22
#> 3731               Shane Lechler          Shane           Lechler 1976-08-07
#> 3732              Shane Tripucka          Shane          Tripucka 1995-04-10
#> 3733              Sam Irwin-Hill            Sam        Irwin-Hill 1990-10-10
#> 3734              Colton Schmidt         Colton           Schmidt 1990-10-27
#> 3735                Justin Vogel         Justin             Vogel 1993-10-14
#> 3736                Donnie Jones         Donnie             Jones 1980-07-05
#> 3737               Tyler Newsome          Tyler           Newsome 1995-07-14
#> 3738                    Jon Ryan            Jon              Ryan 1981-11-26
#> 3739               Kasey Redfern          Kasey           Redfern 1991-09-26
#> 3740                 Cory Carter           Cory            Carter 1994-03-05
#> 3741              Marquette King      Marquette              King 1988-10-26
#> 3742                Ryan Quigley           Ryan           Quigley 1990-01-26
#> 3743                   Matt Darr           Matt              Darr 1992-07-02
#> 3744                 Matt Bosher           Matt            Bosher 1987-10-18
#> 3745                Colby Wadman          Colby            Wadman 1995-04-19
#> 3746                Ian Berryman            Ian          Berryman 1996-06-01
#> 3747                  Jeff Locke           Jeff             Locke 1989-09-27
#> 3748               Manny Wilkins          Manny           Wilkins 1995-11-05
#> 3749               Cardale Jones        Cardale             Jones 1992-09-29
#> 3750               Connor Jessop         Connor            Jessop 1993-12-27
#> 3751                Austin Davis         Austin             Davis 1989-06-02
#> 3752              Brock Osweiler          Brock          Osweiler 1990-11-22
#> 3753                 Bryce Petty          Bryce             Petty 1991-05-31
#> 3754                Landry Jones         Landry             Jones 1989-04-04
#> 3755             Quinton Flowers        Quinton           Flowers 1994-12-02
#> 3756                  Luis Perez           Luis             Perez 1994-08-26
#> 3757                Nic Shimonek            Nic          Shimonek 1994-08-22
#> 3758                Sam Bradford            Sam          Bradford 1987-11-08
#> 3759                J.T. Barrett           J.T.           Barrett 1995-01-23
#> 3760               Brogan Roback         Brogan            Roback 1994-08-24
#> 3761             Matthew McGloin        Matthew           McGloin 1989-12-02
#> 3762             Nick Fitzgerald           Nick        Fitzgerald 1996-01-14
#> 3763                Paxton Lynch         Paxton             Lynch 1994-02-12
#> 3764                  Tanner Lee         Tanner               Lee 1995-02-14
#> 3765                 Zach Conque           Zach            Conque 1994-04-22
#> 3766                   Tony Romo           Tony              Romo 1980-04-21
#> 3767              Trevone Boykin        Trevone            Boykin 1993-08-22
#> 3768                 Chad Kanoff           Chad            Kanoff 1994-10-06
#> 3769                  Tom Savage            Tom            Savage 1990-04-26
#> 3770              Derek Anderson          Derek          Anderson 1983-06-15
#> 3771                 Eli Manning            Eli           Manning 1981-01-03
#> 3772                Austin Allen         Austin             Allen 1994-08-21
#> 3773        Christian Hackenberg      Christian        Hackenberg 1995-02-14
#> 3774                   Luke Falk           Luke              Falk 1994-12-28
#> 3775          Vincent Testaverde        Vincent        Testaverde 1996-07-20
#> 3776               Jack Heneghan           Jack          Heneghan 1996-02-13
#> 3777                 Connor Cook         Connor              Cook 1993-01-29
#> 3778                Chase Litton          Chase            Litton 1995-10-05
#> 3779                Lamar Jordan          Lamar            Jordan 1994-10-02
#> 3780                Cody Kessler           Cody           Kessler 1993-05-11
#> 3781                Mark Sanchez           Mark           Sanchez 1986-11-11
#> 3782                 E.J. Manuel           E.J.            Manuel 1990-03-19
#> 3783              Brandon Weeden        Brandon            Weeden 1983-10-14
#> 3784                  Matt Simms           Matt             Simms 1988-09-27
#> 3785                Peter Pujals          Peter            Pujals 1995-01-23
#> 3786               Carson Palmer         Carson            Palmer 1979-12-27
#> 3787                Joe Callahan            Joe          Callahan 1993-06-04
#> 3788               Drew Anderson           Drew          Anderson 1995-10-18
#> 3789                 Andrew Luck         Andrew              Luck 1989-09-12
#> 3790                  Brad Kaaya           Brad             Kaaya 1995-09-03
#> 3791                 Matt Cassel           Matt            Cassel 1982-05-17
#> 3792                Josh Woodrum           Josh           Woodrum 1992-11-07
#> 3793              Wilton Speight         Wilton           Speight 1994-12-06
#> 3794             Garrett Grayson        Garrett           Grayson 1991-05-29
#> 3795              Branden Oliver        Branden            Oliver 1991-05-07
#> 3796               Brandon Wilds        Brandon             Wilds 1993-07-22
#> 3797                 Alex Barnes           Alex            Barnes 1996-10-27
#> 3798                Devante Mays        Devante              Mays 1994-05-26
#> 3799                  Mack Brown           Mack             Brown 1991-09-24
#> 3800                Jon Hilliman            Jon          Hilliman 1995-11-14
#> 3801                 Zach Zenner           Zach            Zenner 1991-09-13
#> 3802                 Matt Asiata           Matt            Asiata 1987-07-24
#> 3803                Thomas Rawls         Thomas             Rawls 1993-08-03
#> 3804            Chris Warren III          Chris        Warren III 1996-06-06
#> 3805                James Butler          James            Butler 1995-02-19
#> 3806          Russell Hansbrough        Russell        Hansbrough 1993-11-19
#> 3807             Justin Stockton         Justin          Stockton 1995-07-06
#> 3808            Valentine Holmes      Valentine            Holmes 1995-07-04
#> 3809             Lawrence Thomas       Lawrence            Thomas 1993-04-16
#> 3810              DeMarco Murray        DeMarco            Murray 1988-02-12
#> 3811                  Keith Ford          Keith              Ford 1994-04-18
#> 3812                Charles Sims        Charles              Sims 1990-09-19
#> 3813             Fozzy Whittaker          Fozzy         Whittaker 1989-02-02
#> 3814        Fitzgerald Toussaint     Fitzgerald         Toussaint 1990-05-04
#> 3815             Andre Ellington          Andre         Ellington 1989-02-03
#> 3816                Jordan Ellis         Jordan             Ellis 1996-03-22
#> 3817              Lenard Tillery         Lenard           Tillery 1993-12-19
#> 3818              Jamaal Charles         Jamaal           Charles 1986-12-27
#> 3819                  Ralph Webb          Ralph              Webb 1994-11-21
#> 3820            Devontae Jackson       Devontae           Jackson 1995-04-27
#> 3821                  Rob Kelley            Rob            Kelley 1992-10-03
#> 3822              Travaris Cadet       Travaris             Cadet 1989-02-01
#> 3823              Nick Brossette           Nick         Brossette 1996-03-02
#> 3824               Mark Thompson           Mark          Thompson 1994-12-09
#> 3825               Trey Williams           Trey          Williams 1992-12-11
#> 3826           Charcandrick West   Charcandrick              West 1991-06-02
#> 3827               Josh Ferguson           Josh          Ferguson 1993-05-23
#> 3828                   Jay Ajayi            Jay             Ajayi 1993-06-15
#> 3829             Justin Crawford         Justin          Crawford 1995-02-19
#> 3830                  Tra Carson            Tra            Carson 1992-10-24
#> 3831              Marshawn Lynch       Marshawn             Lynch 1986-04-22
#> 3832              David Williams          David          Williams 1994-06-17
#> 3833            Benny Cunningham          Benny        Cunningham 1990-07-07
#> 3834              Javorius Allen       Javorius             Allen 1991-08-27
#> 3835              Isaiah Crowell         Isaiah           Crowell 1993-01-08
#> 3836               Darius Victor         Darius            Victor 1994-03-18
#> 3837           Dontae Strickland         Dontae        Strickland 1997-03-22
#> 3838          Lorenzo Taliaferro        Lorenzo        Taliaferro 1991-12-23
#> 3839              Devine Redding         Devine           Redding 1996-02-05
#> 3840             Ja'quan Gardner        Ja'quan           Gardner       <NA>
#> 3841              A.J. Ouellette           A.J.         Ouellette 1995-07-20
#> 3842                  Matt Forte           Matt             Forte 1985-12-10
#> 3843                  Roc Thomas            Roc            Thomas 1995-09-02
#> 3844               C.J. Anderson           C.J.          Anderson 1991-02-10
#> 3845                 Chris Ivory          Chris             Ivory 1988-03-22
#> 3846              Kenneth Farrow        Kenneth            Farrow 1993-03-07
#> 3847                Kobe McCrary           Kobe           McCrary 1994-02-19
#> 3848               Robert Turbin         Robert            Turbin 1989-12-02
#> 3849                  Larry Rose          Larry              Rose 1995-09-09
#> 3850                 Taj McGowan            Taj           McGowan 1996-12-30
#> 3851               Josh Caldwell           Josh          Caldwell 1996-05-28
#> 3852                 Jeremy Hill         Jeremy              Hill 1992-10-20
#> 3853                Justin Davis         Justin             Davis 1995-11-11
#> 3854                  Matt Dayes           Matt             Dayes 1994-09-03
#> 3855               Shaun Draughn          Shaun           Draughn 1987-12-07
#> 3856              Malik Williams          Malik          Williams 1996-06-20
#> 3857          Leshun Daniels Jr.         Leshun       Daniels Jr. 1995-06-04
#> 3858                 Aaron Green          Aaron             Green 1992-10-15
#> 3859            Jonathan Stewart       Jonathan           Stewart 1987-03-21
#> 3860              Terrell Watson        Terrell            Watson 1993-08-22
#> 3861             Donnel Pumphrey         Donnel          Pumphrey 1994-12-06
#> 3862               Jalen Simmons          Jalen           Simmons 1992-04-01
#> 3863               Chris Johnson          Chris           Johnson 1985-09-23
#> 3864            Kerwynn Williams        Kerwynn          Williams 1991-06-09
#> 3865         Cameron Artis-Payne        Cameron       Artis-Payne 1990-06-23
#> 3866               Sherman Badie        Sherman             Badie 1995-01-03
#> 3867                  David Cobb          David              Cobb 1993-06-03
#> 3868             George Atkinson         George          Atkinson 1992-11-29
#> 3869              Terrence Magee       Terrence             Magee 1993-03-16
#> 3870               Lavon Coleman          Lavon           Coleman 1994-12-10
#> 3871            William Stanback        William          Stanback 1994-07-06
#> 3872              Darren Sproles         Darren           Sproles 1983-06-20
#> 3873            Jhurell Pressley        Jhurell          Pressley 1992-05-20
#> 3874               Terry Swanson          Terry           Swanson 1996-08-06
#> 3875                 Kapri Bibbs          Kapri             Bibbs 1993-01-10
#> 3876               Tim Hightower            Tim         Hightower 1986-05-23
#> 3877                Bilal Powell          Bilal            Powell 1988-10-27
#> 3878             Jeremy Langford         Jeremy          Langford 1991-12-06
#> 3879               Terrance West       Terrance              West 1991-01-28
#> 3880                 Corey Grant          Corey             Grant 1991-12-19
#> 3881             De'Lance Turner       De'Lance            Turner 1995-08-23
#> 3882                Trayone Gray        Trayone              Gray 1995-12-14
#> 3883               Martez Carter         Martez            Carter 1993-03-08
#> 3884                Shane Vereen          Shane            Vereen 1989-03-02
#> 3885                 Alfred Blue         Alfred              Blue 1991-04-27
#> 3886              David Fluellen          David          Fluellen 1992-01-28
#> 3887                  Matt Jones           Matt             Jones 1993-03-07
#> 3888                Akrum Wadley          Akrum            Wadley 1995-03-13
#> 3889               James Summers          James           Summers 1994-06-12
#> 3890               Robert Martin         Robert            Martin 1995-09-04
#> 3891              Mike Gillislee           Mike         Gillislee 1990-11-01
#> 3892            Karan Higdon Jr.          Karan        Higdon Jr. 1996-09-08
#> 3893               Derrius Guice        Derrius             Guice 1997-06-21
#> 3894                 Joe Banyard            Joe           Banyard 1988-11-12
#> 3895              Byron Marshall          Byron          Marshall 1994-02-13
#> 3896              Detrez Newsome         Detrez           Newsome 1994-03-06
#> 3897             Marcus Marshall         Marcus          Marshall 1997-02-23
#> 3898              Ronnie Hillman         Ronnie           Hillman 1991-09-14
#> 3899               De'Veon Smith        De'Veon             Smith 1994-11-08
#> 3900                  Tre Madden            Tre            Madden 1993-08-16
#> 3901                Daniel Lasco         Daniel             Lasco 1992-10-09
#> 3902                 Adam Choice           Adam            Choice 1995-11-30
#> 3903                Ryan Mathews           Ryan           Mathews 1987-10-10
#> 3904           LeGarrette Blount     LeGarrette            Blount 1986-12-05
#> 3905                 Darrin Hall         Darrin              Hall 1996-09-06
#> 3906                Bronson Hill        Bronson              Hill 1993-01-02
#> 3907                  Akeem Hunt          Akeem              Hunt 1993-02-22
#> 3908            Jacquizz Rodgers       Jacquizz           Rodgers 1990-02-06
#> 3909               Joel Bouagnon           Joel          Bouagnon 1995-03-28
#> 3910                Joe Williams            Joe          Williams 1993-09-04
#> 3911         De'Angelo Henderson      De'Angelo         Henderson 1992-11-24
#> 3912             Rodney Anderson         Rodney          Anderson 1996-09-12
#> 3913          Matthew Colburn II        Matthew        Colburn II 1997-07-27
#> 3914           Christine Michael      Christine           Michael 1990-11-09
#> 3915                 Elijah Hood         Elijah              Hood 1996-04-22
#> 3916               Gerald Holmes         Gerald            Holmes 1994-11-15
#> 3917            Brandon Radcliff        Brandon          Radcliff 1993-03-18
#> 3918               Stevan Ridley         Stevan            Ridley 1989-01-27
#> 3919              Ervin Phillips          Ervin          Phillips 1995-01-18
#> 3920                    Tim Cook            Tim              Cook 1994-04-19
#> 3921            Travon McMillian         Travon         McMillian 1996-02-05
#> 3922               Xavier Turner         Xavier            Turner 1994-12-24
#> 3923                 Knile Davis          Knile             Davis 1991-10-05
#> 3924                Chris Ezeala          Chris            Ezeala 1995-09-19
#> 3925                   Wes Hills            Wes             Hills 1995-06-05
#> 3926               Marcus Murphy         Marcus            Murphy 1991-10-03
#> 3927                   Ray Lawry            Ray             Lawry 1996-09-10
#> 3928            Jarveon Williams        Jarveon          Williams 1995-01-03
#> 3929                Shaun Wilson          Shaun            Wilson 1995-12-02
#> 3930                C.J. Spiller           C.J.           Spiller 1987-08-05
#> 3931              Danny Woodhead          Danny          Woodhead 1985-01-25
#> 3932             Darren McFadden         Darren          McFadden 1987-08-27
#> 3933            Jarvion Franklin        Jarvion          Franklin 1995-12-09
#> 3934                 Mark Walton           Mark            Walton 1997-03-29
#> 3935                  Eddie Lacy          Eddie              Lacy 1990-06-02
#> 3936               Marcus Martin         Marcus            Martin       <NA>
#> 3937               Kenneth Dixon        Kenneth             Dixon 1994-01-21
#> 3938                  J.D. Moore           J.D.             Moore 1995-05-30
#> 3939                 Doug Martin           Doug            Martin 1989-01-13
#> 3940             Secdrick Cooper       Secdrick            Cooper 1995-07-17
#> 3941             Corrion Ballard        Corrion           Ballard 1997-12-15
#> 3942               Chris Johnson          Chris           Johnson 1995-11-12
#> 3943              Joshua Liddell         Joshua           Liddell 1996-02-15
#> 3944              Ramon Richards          Ramon          Richards 1995-11-29
#> 3945                 Antone Exum         Antone              Exum 1991-02-27
#> 3946              Isaiah Wharton         Isaiah           Wharton 1995-11-01
#> 3947                Derron Smith         Derron             Smith 1992-02-04
#> 3948                 Trae Elston           Trae            Elston 1994-02-16
#> 3949              Tony Jefferson           Tony         Jefferson 1992-01-27
#> 3950           Ha Ha Clinton-Dix          Ha Ha       Clinton-Dix 1992-12-21
#> 3951                Damian Parms         Damian             Parms 1992-10-28
#> 3952                Malik Golden          Malik            Golden 1993-04-27
#> 3953                Tigie Sankoh          Tigie            Sankoh 1997-11-04
#> 3954               Jeron Johnson          Jeron           Johnson 1988-06-12
#> 3955             Jacob Thieneman          Jacob         Thieneman 1996-02-29
#> 3956             Jameill Showers        Jameill           Showers 1991-09-06
#> 3957           Robenson Therezie       Robenson          Therezie 1991-08-05
#> 3958               Kelcie McCray         Kelcie            McCray 1988-09-20
#> 3959                Su'a Cravens           Su'a           Cravens 1995-07-07
#> 3960                  Damon Webb          Damon              Webb 1995-11-12
#> 3961             Adarius Pickett        Adarius           Pickett 1996-09-05
#> 3962                Shalom Luani         Shalom             Luani 1994-08-05
#> 3963                Barry Church          Barry            Church 1988-02-11
#> 3964                 A.J. Howard           A.J.            Howard 1995-12-23
#> 3965               Kemal Ishmael          Kemal           Ishmael 1991-05-06
#> 3966                Tyvis Powell          Tyvis            Powell 1994-02-16
#> 3967               Chris Maragos          Chris           Maragos 1987-01-06
#> 3968              Parker Baldwin         Parker           Baldwin 1997-05-06
#> 3969               Jojo McIntosh           Jojo          McIntosh 1996-03-17
#> 3970                    AJ Hendy             AJ             Hendy 1993-04-08
#> 3971        Harold Jones-Quartey         Harold     Jones-Quartey 1993-08-06
#> 3972             Ironhead Gallon       Ironhead            Gallon 1994-01-18
#> 3973              Deiondre' Hall      Deiondre'              Hall 1994-05-31
#> 3974                 Rafael Bush         Rafael              Bush 1987-05-12
#> 3975                 Walt Aikens           Walt            Aikens 1991-06-19
#> 3976               Dexter McCoil         Dexter            McCoil 1991-09-05
#> 3977              Brandon Bryant        Brandon            Bryant 1995-12-21
#> 3978            Montae Nicholson         Montae         Nicholson 1995-12-04
#> 3979               TJ Mutcherson             TJ        Mutcherson 1992-07-27
#> 3980                  Malik Gant          Malik              Gant 1997-05-29
#> 3981                    Nick Orr           Nick               Orr 1995-10-06
#> 3982                   Eric Reid           Eric              Reid 1991-12-10
#> 3983              Ladarius Wiley       Ladarius             Wiley 1996-06-03
#> 3984             Kurtis Drummond         Kurtis          Drummond 1992-01-29
#> 3985          Dravon Askew-Henry         Dravon       Askew-Henry 1995-10-24
#> 3986             Shamarko Thomas       Shamarko            Thomas 1991-02-23
#> 3987              Morgan Burnett         Morgan           Burnett 1989-01-13
#> 3988               Ronald Martin         Ronald            Martin 1993-02-26
#> 3989                Tre Sullivan            Tre          Sullivan 1993-11-01
#> 3990              Demetrious Cox     Demetrious               Cox 1994-04-20
#> 3991              Tyree Robinson          Tyree          Robinson 1994-04-14
#> 3992               Quincy Mauger         Quincy            Mauger 1995-03-04
#> 3993               Justin Currie         Justin            Currie 1993-09-19
#> 3994             Kacy Rodgers II           Kacy        Rodgers II 1992-04-02
#> 3995                  Mike Tyson           Mike             Tyson 1993-07-19
#> 3996                Tyree Kinnel          Tyree            Kinnel 1997-01-31
#> 3997              Eddie Pleasant          Eddie          Pleasant 1988-12-17
#> 3998                  Cody Brown           Cody             Brown 1994-03-04
#> 3999              Kam Chancellor            Kam        Chancellor 1988-04-03
#>      height weight                   college
#> 1       6-5    292                  Michigan
#> 2       6-3    305                   Georgia
#> 3      5-11    190                Washington
#> 4       6-0    204                  Nebraska
#> 5      5-11    185                   Arizona
#> 6      5-11    185            Oklahoma State
#> 7      5-11    185            South Carolina
#> 8      5-10    186    Southeastern Louisiana
#> 9       6-1    203           Louisiana State
#> 10      6-2    190                   Alabama
#> 11      6-0    191                    Baylor
#> 12     5-10    195      Southern Mississippi
#> 13     5-11    190          Washington State
#> 14     5-10    192              Fresno State
#> 15     5-10    207        Southern Methodist
#> 16      6-4    256                Penn State
#> 17      6-3    284                    Temple
#> 18      6-3    341                  Oklahoma
#> 19      6-6    290                  Stanford
#> 20      6-2    317                  Stanford
#> 21      6-4    318                    Auburn
#> 22      6-5    335                      Utah
#> 23      6-4    281            Boston College
#> 24      6-6    341                  Oklahoma
#> 25      6-3    320                   Arizona
#> 26     5-11    200            Louisiana Tech
#> 27      6-5    310      North Carolina State
#> 28      6-3    310         Mississippi State
#> 29      6-4    284              Oregon State
#> 30      6-5    311                  Syracuse
#> 31      6-6    304                  Syracuse
#> 32      6-4    309                   Florida
#> 33     5-10    190                Ohio State
#> 34      6-0    202             Arizona State
#> 35      6-1    185                  Nebraska
#> 36      6-0    232               Sioux Falls
#> 37      6-3    256       Southern California
#> 38      6-3    245                   Clemson
#> 39      6-2    214                Washington
#> 40      6-3    260                      Utah
#> 41      6-1    236                     Texas
#> 42      6-1    235                    Temple
#> 43      6-1    228               Boise State
#> 44      6-3    260                  Missouri
#> 45      6-1    215                     Miami
#> 46      6-4    232                 Minnesota
#> 47      6-5    265                  Syracuse
#> 48      6-2    250              Kansas State
#> 49      6-3    254            San Jose State
#> 50      6-2    235             Florida State
#> 51      6-3    245                California
#> 52      6-3    225                   Clemson
#> 53      6-5    232           San Diego State
#> 54      6-3    335                  Kentucky
#> 55      6-2    308           Louisiana State
#> 56      6-3    325            Michigan State
#> 57      6-1    185                Pittsburgh
#> 58     5-10    207                  Oklahoma
#> 59      6-3    215              South Dakota
#> 60      6-3    226                      UCLA
#> 61      6-1    211                   Alabama
#> 62      5-9    210                   Fordham
#> 63      5-7    174                California
#> 64     5-10    210             Arizona State
#> 65      6-0    205             Arizona State
#> 66      6-0    202          Central Michigan
#> 67      6-1    200       Southern California
#> 68      6-1    196                   Alabama
#> 69     5-10    195                Washington
#> 70      6-7    310                   Houston
#> 71      6-3    308        Southern Methodist
#> 72      6-5    314              Morgan State
#> 73      6-5    315                Cincinnati
#> 74      6-6    330                   Florida
#> 75      6-5    307                   Florida
#> 76      6-3    256                Washington
#> 77      6-6    248                California
#> 78      6-3    245                 Princeton
#> 79      6-3    245         Mississippi State
#> 80      6-4    252                 Minnesota
#> 81      6-6    220     Wisconsin-Platteville
#> 82      6-3    217              Marian, Ind.
#> 83      6-1    199              Fresno State
#> 84      6-2    204       Southern California
#> 85      6-3    205                   Clemson
#> 86      5-9    190             Massachusetts
#> 87      6-1    212                   Clemson
#> 88      6-0    212               Boise State
#> 89      5-9    175                    Hawaii
#> 90     5-10    185                   Wyoming
#> 91      6-3    218                Pittsburgh
#> 92     5-11    200             Texas A&amp;M
#> 93      6-1    219                Vanderbilt
#> 94      6-4    311                California
#> 95      6-3    300                     Tulsa
#> 96      6-3    317           Central Florida
#> 97      6-3    185                  Colorado
#> 98     5-11    205            Michigan State
#> 99      6-0    198          Florida Atlantic
#> 100     6-2    190                   Clemson
#> 101     6-0    210                  Colorado
#> 102    5-10    190                   Wyoming
#> 103    5-10    212                Ohio State
#> 104     5-9    186                    Purdue
#> 105     6-1    190               Connecticut
#> 106     6-0    205                 Minnesota
#> 107     6-2    210                California
#> 108     6-1    216                   Florida
#> 109     6-3    263                   Buffalo
#> 110     6-3    255                   Florida
#> 111     6-2    285                      UCLA
#> 112     6-3    288                     Miami
#> 113     6-1    305             South Florida
#> 114     6-4    309                  Syracuse
#> 115     6-0    305                   Clemson
#> 116     6-5    285        Charleston, W. Va.
#> 117     6-2    309              Fresno State
#> 118     6-3    279                    Auburn
#> 119     6-0    240            San Jose State
#> 120     6-5    321                   Alabama
#> 121     6-5    322          Western Michigan
#> 122     6-4    290                    Temple
#> 123     6-4    307            Boston College
#> 124    5-10    195          Georgia Southern
#> 125     6-0    170            South Carolina
#> 126     6-1    240                  Virginia
#> 127     6-3    219              Fresno State
#> 128     6-1    227           Louisiana State
#> 129     6-1    243                      Utah
#> 130     6-3    250                  Missouri
#> 131     6-3    225                  LIU Post
#> 132     6-3    245                  Newberry
#> 133     6-2    215                      Yale
#> 134     6-1    224                    Auburn
#> 135     5-9    199                  Syracuse
#> 136     6-4    217            Boston College
#> 137     6-4    215                  Virginia
#> 138     6-6    245                  Virginia
#> 139     5-9    179                    Oregon
#> 140     6-1    224                   Georgia
#> 141     5-9    195      Southern Mississippi
#> 142     6-1    219                   Wyoming
#> 143     6-1    232                Pittsburgh
#> 144    5-11    190           San Diego State
#> 145     6-3    215                   Clemson
#> 146     6-0    212          Georgia Southern
#> 147     6-4    305                    Wesley
#> 148     6-5    309             Texas A&amp;M
#> 149     6-7    328            Boston College
#> 150     6-6    306                Washington
#> 151     6-5    253                 Tennessee
#> 152     6-4    245            South Carolina
#> 153     6-4    250                      Yale
#> 154     6-1    190                   Alabama
#> 155     5-8    193                  Virginia
#> 156     5-7    173               Wake Forest
#> 157     6-0    187              Albany, N.Y.
#> 158     6-3    220                   Alabama
#> 159     5-8    180           Tennessee State
#> 160     6-1    181         Northern Illinois
#> 161     6-0    184           Louisiana State
#> 162     6-2    215               Mississippi
#> 163     5-8    189                   Florida
#> 164     6-0    192                Cincinnati
#> 165     6-4    310                    Toledo
#> 166     6-4    308                California
#> 167     6-3    313                      Duke
#> 168     6-4    315                  Missouri
#> 169     6-0    197                Washington
#> 170     6-1    192                Lindenwood
#> 171     5-9    185                    Temple
#> 172     6-2    210                  Colorado
#> 173     5-9    170          Northern Arizona
#> 174     6-1    210       Southern California
#> 175     6-0    197                   Alabama
#> 176    5-11    178                   Alabama
#> 177    5-11    200            Illinois State
#> 178     6-4    197                  Kentucky
#> 179    5-11    187                 Tennessee
#> 180     6-0    192               North Texas
#> 181     6-4    215                   Clemson
#> 182     6-1    210                     Texas
#> 183     6-5    287                  Illinois
#> 184     6-3    275         Mississippi State
#> 185     6-2    246                  Maryland
#> 186     6-5    285                Cincinnati
#> 187     6-3    300             Texas A&amp;M
#> 188     6-2    290            North Carolina
#> 189     6-2    302         Mississippi State
#> 190     6-3    305                Texas Tech
#> 191     6-8    300                     Miami
#> 192     6-2    322                Kent State
#> 193     6-1    246               Wake Forest
#> 194     6-3    311                     Maine
#> 195    5-10    200                   Clemson
#> 196     6-4    310                  Oklahoma
#> 197     6-2    293                      Elon
#> 198     6-4    325                  Michigan
#> 199     6-6    310                Cincinnati
#> 200     6-5    342                   Alabama
#> 201     6-5    345         Mississippi State
#> 202     6-5    317                   Alabama
#> 203     6-1    183                     Texas
#> 204     6-3    240             Texas A&amp;M
#> 205     6-3    239                      Iowa
#> 206     6-3    265         Mississippi State
#> 207     6-1    227           Louisiana State
#> 208     6-6    250        Southeast Missouri
#> 209     6-5    275            Louisiana Tech
#> 210     6-3    240                   Houston
#> 211     6-3    245                Ohio State
#> 212     6-2    239                  Illinois
#> 213     6-0    232             Northern Iowa
#> 214     6-3    261        Grand Valley State
#> 215     6-2    230        North Dakota State
#> 216     6-3    250                   Georgia
#> 217     6-4    233                 Tennessee
#> 218     6-1    336         Missouri Southern
#> 219     6-2    350            Louisiana Tech
#> 220     6-1    205                   Florida
#> 221     6-1    222                  Nebraska
#> 222     6-1    205                      Utah
#> 223     6-2    212                Louisville
#> 224     6-2    213                    Baylor
#> 225     6-0    202                Penn State
#> 226     5-9    215                   Alabama
#> 227     6-0    220             Brigham Young
#> 228     6-1    238                   Rutgers
#> 229    5-10    214                Ohio State
#> 230    5-10    200            Oklahoma State
#> 231    5-11    215                  Stanford
#> 232    5-11    207           Tennessee State
#> 233     6-0    205             Virginia Tech
#> 234     6-6    311            North Carolina
#> 235     6-5    316            Louisiana Tech
#> 236     6-4    330                   Alabama
#> 237     6-6    315                Notre Dame
#> 238     6-8    345                  Oklahoma
#> 239     6-6    320        Eastern Washington
#> 240     6-5    250                    Oregon
#> 241     6-5    255                  Oklahoma
#> 242     6-4    236                   Georgia
#> 243     6-6    263             Texas-El Paso
#> 244     6-4    270                  Delaware
#> 245     6-4    261       Southern California
#> 246     6-4    220                Notre Dame
#> 247     6-4    206                Texas Tech
#> 248     6-2    220            Oklahoma State
#> 249     6-1    200                Cincinnati
#> 250     6-0    193        Southern Methodist
#> 251     6-0    195                   Alabama
#> 252     5-9    170                  Oklahoma
#> 253     6-2    202                   Clemson
#> 254     6-2    190          Tennessee-Martin
#> 255     5-8    176                    Oregon
#> 256     6-4    199                Ohio State
#> 257    5-11    210                     Texas
#> 258    5-11    205                Ball State
#> 259     6-6    305                  Missouri
#> 260     6-4    300                Penn State
#> 261     6-6    320                   Memphis
#> 262    5-11    192           Louisiana State
#> 263     6-0    200          Coastal Carolina
#> 264    5-11    184                     Texas
#> 265    5-11    194                Pittsburgh
#> 266    5-11    185                Pittsburgh
#> 267     5-9    185                   Buffalo
#> 268    5-10    185                  Missouri
#> 269     6-0    179                   Alabama
#> 270     6-0    205        Jacksonville State
#> 271    5-11    192               Weber State
#> 272    5-10    190                     Miami
#> 273     6-0    197                      Iowa
#> 274     6-6    253    North Carolina A&amp;T
#> 275     6-2    254           Texas Christian
#> 276     6-6    259                  Stanford
#> 277     6-5    280                      Iowa
#> 278     6-3    255             South Florida
#> 279     6-3    260                      Troy
#> 280     6-3    270                   Florida
#> 281     6-2    318                      Utah
#> 282     6-4    291                  Maryland
#> 283     6-3    307                  Stanford
#> 284     6-3    294          Florida Atlantic
#> 285     6-4    291        Alabama-Birmingham
#> 286     6-4    330            Louisiana Tech
#> 287     6-3    292              Ferris State
#> 288     6-1    287                   Houston
#> 289     6-4    323                     Miami
#> 290     6-4    320                Kent State
#> 291     6-6    318                      Iowa
#> 292    5-10    185          Georgia Southern
#> 293     6-2    205                Washington
#> 294     6-5    250             Virginia Tech
#> 295     6-0    240            North Carolina
#> 296     6-2    230                  Illinois
#> 297     6-1    232                Ohio State
#> 298     6-2    245                   Samford
#> 299     6-0    237             Texas A&amp;M
#> 300     6-1    240                Iowa State
#> 301     6-1    235                    Temple
#> 302     6-3    235              West Alabama
#> 303     6-0    223            Boston College
#> 304     6-2    235           Louisiana State
#> 305     6-0    208                New Mexico
#> 306     6-2    234       Southern California
#> 307     6-2    222                   Georgia
#> 308     6-5    225                California
#> 309     6-5    237                   Wyoming
#> 310    5-10    215                      Utah
#> 311     6-1    223                   Alabama
#> 312     5-8    206             Florida State
#> 313     6-0    195        Eastern Washington
#> 314     5-9    196                No College
#> 315    5-11    210            North Carolina
#> 316     5-7    203          Florida Atlantic
#> 317     6-0    191              Oregon State
#> 318     6-1    208             James Madison
#> 319     6-0    205         Appalachian State
#> 320     6-8    327                Washington
#> 321     6-3    329                  Oklahoma
#> 322     6-5    320                    Temple
#> 323     6-6    330                  Oklahoma
#> 324     6-5    316            Oklahoma State
#> 325     6-8    330               Texas State
#> 326     6-4    254               Mississippi
#> 327     6-6    250                   Rutgers
#> 328     6-5    264                 Miami, O.
#> 329     6-1    255                    Toledo
#> 330     6-6    265                  Marshall
#> 331     6-5    251            Boston College
#> 332     6-3    225                    Auburn
#> 333     5-8    173                   Georgia
#> 334     6-4    209      Wisconsin-Whitewater
#> 335     6-0    191                  Maryland
#> 336    5-11    179           Pittsburg State
#> 337     6-1    193                   Wyoming
#> 338     6-1    202                  Oklahoma
#> 339     5-8    174        Southern Methodist
#> 340    5-11    195                   Citadel
#> 341     6-3    213           Central Florida
#> 342     6-4    209              Oregon State
#> 343     6-3    300               Boise State
#> 344     6-4    325                Utah State
#> 345     6-4    310                    Baylor
#> 346    5-10    180           Louisiana State
#> 347     6-2    209             West Virginia
#> 348     6-2    213                   Montana
#> 349    5-11    194                Notre Dame
#> 350    5-10    185                     Miami
#> 351     6-2    184     Florida International
#> 352    5-11    201                 Wisconsin
#> 353     6-1    203                Ohio State
#> 354     6-2    202             West Virginia
#> 355    5-11    211               Mississippi
#> 356    5-10    205                    Temple
#> 357     6-1    205            North Carolina
#> 358     6-3    190                    Baylor
#> 359     6-3    212         Southern Illinois
#> 360     6-5    258                    Baylor
#> 361     6-2    235               Mississippi
#> 362     6-3    265                    Purdue
#> 363     6-3    244                   Alabama
#> 364     6-5    265                Vanderbilt
#> 365     6-5    264                Penn State
#> 366     6-5    250             Florida State
#> 367     6-4    260                Vanderbilt
#> 368     6-6    265                No College
#> 369     6-3    315               Mississippi
#> 370     6-2    334                  Delaware
#> 371     6-5    318                    Auburn
#> 372     6-4    300            Michigan State
#> 373     6-2    296             South Florida
#> 374     6-3    315                    Purdue
#> 375     6-1    333                    Baylor
#> 376     6-2    255              West Georgia
#> 377     6-6    315            Boston College
#> 378     6-3    315                Louisville
#> 379     6-4    325                    Auburn
#> 380     6-6    324            South Carolina
#> 381     6-4    320       Minn. State-Mankato
#> 382     6-6    301                  Michigan
#> 383    5-11    213             Virginia Tech
#> 384     6-2    230                  Virginia
#> 385     6-3    238            Boston College
#> 386     6-2    241                    Temple
#> 387     6-1    230                    Wagner
#> 388     6-0    230                Washington
#> 389     6-0    230          Florida Atlantic
#> 390     6-0    225                  Maryland
#> 391     6-1    232                    Baylor
#> 392     6-0    224                 Wisconsin
#> 393     6-3    252                 Tennessee
#> 394     6-2    235                Notre Dame
#> 395    5-11    200                 Tennessee
#> 396     6-5    190            South Carolina
#> 397     6-2    215                Louisville
#> 398    5-11    212                    Temple
#> 399     6-1    220             West Virginia
#> 400     6-5    235         Mississippi State
#> 401     6-0    215                Louisville
#> 402    5-11    185            Virginia State
#> 403    5-11    210                 Minnesota
#> 404    5-11    205                  Stanford
#> 405     5-9    221            South Carolina
#> 406     6-3    210                    Temple
#> 407     6-0    212      North Carolina State
#> 408     6-5    320                 Grambling
#> 409     6-5    310               Mississippi
#> 410     6-5    325          Western Michigan
#> 411     6-5    310            Oklahoma State
#> 412     6-7    325                 Dartmouth
#> 413     6-3    260                   Indiana
#> 414     6-4    255                    Temple
#> 415     6-5    242           Louisiana State
#> 416     6-3    240          Western Michigan
#> 417     6-6    255                  Canisius
#> 418     6-2    219                  Michigan
#> 419    5-11    191             West Virginia
#> 420     6-3    207            Arkansas State
#> 421     6-2    215           Concordia, Minn
#> 422    5-11    207            South Carolina
#> 423     6-0    196             James Madison
#> 424     6-3    190                    Temple
#> 425    5-11    195                Ohio State
#> 426     6-3    205                    Temple
#> 427    5-11    215                  Maryland
#> 428     6-3    210                    Temple
#> 429    5-11    190             Massachusetts
#> 430     6-3    309              Kansas State
#> 431     6-2    311                Notre Dame
#> 432     5-9    185               Chattanooga
#> 433     5-8    183              Kansas State
#> 434     6-0    205            Illinois State
#> 435    5-11    185          Central Michigan
#> 436    5-11    194             Virginia Tech
#> 437     6-0    195                      Utah
#> 438     6-0    197                     Miami
#> 439     5-9    168                 Wisconsin
#> 440     6-0    194                   Dubuque
#> 441    5-11    190          Georgia Southern
#> 442     6-0    191                   Florida
#> 443     6-1    212                   Wyoming
#> 444     6-0    200                     Miami
#> 445    5-11    207          Midwestern State
#> 446     6-0    202        William &amp; Mary
#> 447     6-1    240                   Buffalo
#> 448     6-4    257            North Carolina
#> 449     6-3    279                  Michigan
#> 450     6-3    280             Florida State
#> 451     6-5    294             Texas-El Paso
#> 452     6-4    295                  Missouri
#> 453     6-7    300                  Virginia
#> 454     6-4    352              Regina, Can.
#> 455     6-5    280          Western Illinois
#> 456     6-3    305                      Iowa
#> 457     6-4    300                      Yale
#> 458     6-5    325             Texas A&amp;M
#> 459     6-5    315           Tennessee State
#> 460     6-5    314                Notre Dame
#> 461     6-4    317           California, Pa.
#> 462     6-5    300                  Colorado
#> 463     5-8    160                    Tulane
#> 464    5-11    178                   Florida
#> 465     6-0    230                   Georgia
#> 466     6-4    268                     Tulsa
#> 467     6-1    226          Western Kentucky
#> 468     6-5    235           Louisiana State
#> 469     6-1    254                  Stanford
#> 470     6-0    239                  Kentucky
#> 471     6-1    236                  Maryland
#> 472     6-3    269                   Buffalo
#> 473     6-1    236                  Oklahoma
#> 474     6-1    241                Notre Dame
#> 475     6-3    228                Utah State
#> 476     6-3    327                   Georgia
#> 477     6-3    313                  Delaware
#> 478     6-3    320             Florida State
#> 479     6-7    352                 Tennessee
#> 480     6-4    212                     Miami
#> 481     6-2    215            North Carolina
#> 482     6-6    243                   Arizona
#> 483     6-6    223                 Tennessee
#> 484     6-2    237              Oregon State
#> 485    5-11    208              Oregon State
#> 486     5-6    191    North Carolina A&amp;T
#> 487    5-10    222                Iowa State
#> 488    5-10    224           Louisiana State
#> 489     6-0    202                   Alabama
#> 490    5-11    203              Northwestern
#> 491     6-1    190                Penn State
#> 492     6-5    326              Old Dominion
#> 493     6-6    301                   Indiana
#> 494     6-3    305               Boise State
#> 495     6-6    325               Mississippi
#> 496     6-7    320           Louisiana State
#> 497     6-7    235              Grand Canyon
#> 498     6-3    240                Pittsburgh
#> 499     6-6    258                Notre Dame
#> 500     6-3    237                 Princeton
#> 501     6-7    265                     Miami
#> 502     6-7    230       Wisconsin-Milwaukee
#> 503    5-11    180                Ohio State
#> 504     5-8    190          Sacramento State
#> 505     6-3    210                Pittsburgh
#> 506     6-1    200                   Georgia
#> 507     6-2    221                   Georgia
#> 508    5-11    185                   Georgia
#> 509     6-1    189             South Florida
#> 510    5-11    172                    Tulane
#> 511    5-10    215             East Carolina
#> 512     6-4    218                   Colgate
#> 513    5-11    199                   Memphis
#> 514     6-2    220                Penn State
#> 515     6-2    238                 Tennessee
#> 516     6-3    316                     Texas
#> 517     6-4    318              Kansas State
#> 518     6-4    312                Ohio State
#> 519     6-0    190            Michigan State
#> 520     6-0    195                    Tulane
#> 521     6-0    180          New Mexico State
#> 522    5-10    192                   Clemson
#> 523     6-0    198                   Alabama
#> 524    5-10    190          Western Michigan
#> 525     6-0    196                   Houston
#> 526    5-10    185                Utah State
#> 527     6-0    203             Southern Utah
#> 528     5-9    186                     Miami
#> 529    5-10    200                   Houston
#> 530     6-1    200               Wake Forest
#> 531     6-2    265                    Auburn
#> 532     6-3    284                  Nebraska
#> 533     6-5    265                Ohio State
#> 534     6-4    265                Notre Dame
#> 535     6-4    280                  Oklahoma
#> 536     6-2    309             Northern Iowa
#> 537     6-0    310                      Iowa
#> 538     6-1    300                   Georgia
#> 539     6-8    295        Southern Methodist
#> 540     6-3    320                 Tennessee
#> 541     6-4    330             West Virginia
#> 542     6-5    300                    Kansas
#> 543     6-5    320                      UCLA
#> 544     6-3    320                      None
#> 545     6-5    315             Texas A&amp;M
#> 546     6-6    315                Ohio State
#> 547     6-4    310                      UCLA
#> 548     5-9    214                  Oklahoma
#> 549     5-9    210             Texas A&amp;M
#> 550     6-2    215         Appalachian State
#> 551     6-2    245      North Carolina State
#> 552     6-1    235                    Auburn
#> 553     6-1    240                    Purdue
#> 554     6-2    248        Southeast Missouri
#> 555     6-3    220                  Maryland
#> 556     6-3    242                  Oklahoma
#> 557     6-2    250                   Wyoming
#> 558     6-5    250                   Rutgers
#> 559     6-3    240                   Indiana
#> 560     6-3    345                  Colorado
#> 561     6-3    347                   Clemson
#> 562     6-5    315             Arizona State
#> 563     6-2    305                      Rice
#> 564     6-1    211                Cincinnati
#> 565     6-4    225                Vanderbilt
#> 566     6-4    216           Louisiana State
#> 567     6-4    207      North Carolina State
#> 568     6-3    218                  Stanford
#> 569     6-2    209                  Arkansas
#> 570     5-8    206             Texas A&amp;M
#> 571     6-3    234             Florida State
#> 572    5-11    240                  Oklahoma
#> 573     6-1    220                  Oklahoma
#> 574     5-9    205            North Carolina
#> 575     6-0    210                   Georgia
#> 576    5-11    205                Ohio State
#> 577     6-0    205                    Hawaii
#> 578     6-7    305                Ohio State
#> 579     6-4    305                   Alabama
#> 580     6-5    310             Florida State
#> 581     6-7    326                   Florida
#> 582     6-6    335            Louisiana Tech
#> 583     6-3    248                  Nebraska
#> 584     6-5    252                   Buffalo
#> 585     6-6    260                    Auburn
#> 586     6-4    259                Washington
#> 587     6-4    245             South Florida
#> 588     6-4    210                   Georgia
#> 589     6-0    205                  Nebraska
#> 590     6-5    228             Florida State
#> 591     6-5    225               Wake Forest
#> 592     6-4    210                   Clemson
#> 593     6-0    195                 Wisconsin
#> 594     6-2    203                Pittsburgh
#> 595     6-1    189      Southern Mississippi
#> 596     6-2    207                  Stanford
#> 597    5-11    194                Washington
#> 598     6-4    307                   Cornell
#> 599     6-3    307               Mississippi
#> 600     6-1    302                Washington
#> 601     6-4    303                   Harvard
#> 602     6-2    205          Nevada-Las Vegas
#> 603     6-2    184           Louisiana State
#> 604    5-11    190                    Oregon
#> 605     6-3    215                      Utah
#> 606    5-11    191                Ohio State
#> 607     6-1    185            Oklahoma State
#> 608     6-2    205            Portland State
#> 609    5-11    205            North Carolina
#> 610     6-0    185               Wake Forest
#> 611    5-10    205              Ferris State
#> 612     6-3    203           Louisiana State
#> 613     6-0    204                  Colorado
#> 614     6-1    210                      Rice
#> 615     6-0    196                     Miami
#> 616     6-5    265                   Houston
#> 617     6-5    260       Southern California
#> 618     6-4    275                     Miami
#> 619     6-3    265               Boise State
#> 620     6-4    240                     Akron
#> 621     6-4    272             Texas A&amp;M
#> 622     6-3    240          Sacramento State
#> 623     6-2    262                     Miami
#> 624     6-3    280                      Iowa
#> 625     6-4    315                  Missouri
#> 626     6-3    294                  Missouri
#> 627     6-3    311            Oklahoma State
#> 628     6-3    301                   Florida
#> 629     6-1    294                Notre Dame
#> 630     6-3    305  North Carolina-Charlotte
#> 631     6-2    245          Nevada-Las Vegas
#> 632     6-1    238                  Nebraska
#> 633     6-4    320                    Nevada
#> 634     6-7    310                Ohio State
#> 635     6-4    315             Virginia Tech
#> 636     6-5    331         Appalachian State
#> 637     6-3    311           Texas Christian
#> 638    5-10    165              Kansas State
#> 639     6-0    190                    Auburn
#> 640     6-1    240                   Alabama
#> 641     6-0    225       Southern California
#> 642     6-2    229              Kansas State
#> 643     6-4    233           Louisiana State
#> 644     6-4    259                Louisville
#> 645     6-1    238             Brigham Young
#> 646     6-1    242                   Clemson
#> 647     6-1    224               Chattanooga
#> 648     6-4    248           Central Florida
#> 649     6-1    328                    Baylor
#> 650     6-1    207       Arkansas-Pine Bluff
#> 651     6-2    222                  Richmond
#> 652     6-1    215                   Houston
#> 653     6-1    215                  Oklahoma
#> 654    5-10    205                 Tennessee
#> 655     6-0    225            Michigan State
#> 656    5-11    225                   Georgia
#> 657    5-10    208             South Florida
#> 658    5-11    216                    Toledo
#> 659     6-0    210          Middle Tennessee
#> 660     6-2    215                 Grambling
#> 661     6-1    205                   Liberty
#> 662     6-3    214                   Alabama
#> 663    5-10    200             West Virginia
#> 664     6-5    320                   Alabama
#> 665     6-4    295        Alabama-Birmingham
#> 666     6-5    310              Northwestern
#> 667     6-6    320      Southern Mississippi
#> 668     6-5    310         Appalachian State
#> 669     6-5    307                  Maryland
#> 670     6-9    294      South Carolina State
#> 671     6-5    305        Southeast Missouri
#> 672     6-6    308            Michigan State
#> 673     6-5    240          Florida Atlantic
#> 674     6-4    254                  Stanford
#> 675     6-4    240                 Princeton
#> 676     6-4    246                     Miami
#> 677     6-4    239           Central Florida
#> 678     6-4    250            South Carolina
#> 679     5-7    153                     Akron
#> 680    5-11    203          Western Kentucky
#> 681     6-4    207                Texas Tech
#> 682     5-8    185            North Carolina
#> 683    5-11    198           Louisiana State
#> 684     6-2    205              Prairie View
#> 685    5-11    196           Louisiana State
#> 686    5-10    190                Washington
#> 687     6-2    208                  Michigan
#> 688     6-1    198            Colorado State
#> 689     6-1    166          Eastern Illinois
#> 690     6-1    195       Louisiana-Lafayette
#> 691     6-2    303               Boise State
#> 692     6-3    320                 Wisconsin
#> 693     6-4    320                 Wisconsin
#> 694     6-6    300                   Harvard
#> 695     6-3    315               Wake Forest
#> 696     6-1    193                  Virginia
#> 697    5-11    190               North Texas
#> 698     6-2    207                   Alabama
#> 699    5-11    196                    Purdue
#> 700     6-0    210        Grand Valley State
#> 701     6-2    205              Kansas State
#> 702     6-0    202                  Colorado
#> 703     6-3    190           California, Pa.
#> 704    5-10    195                  Michigan
#> 705     6-1    177           Louisiana State
#> 706     6-1    200                   Alabama
#> 707    5-11    202            Louisiana Tech
#> 708     6-1    210                  Oklahoma
#> 709     6-2    213               Boise State
#> 710     6-1    197                     Tulsa
#> 711     6-4    265                  Missouri
#> 712     6-3    269             James Madison
#> 713     6-3    265               Boise State
#> 714     6-3    265                      Utah
#> 715     6-5    255                  Nebraska
#> 716     6-4    255                    Kansas
#> 717     6-4    290               Boise State
#> 718     6-3    346                   Memphis
#> 719     6-3    325                      UCLA
#> 720     6-3    308           Central Florida
#> 721     6-1    318       Southern California
#> 722     6-2    315       Louisiana-Lafayette
#> 723     6-4    320                  Missouri
#> 724     6-2    302                  Oklahoma
#> 725     6-1    240               North Texas
#> 726     6-4    315                Notre Dame
#> 727     6-5    308                Penn State
#> 728     6-5    298                     Texas
#> 729     6-0    191          Missouri Western
#> 730     6-0    222                     Akron
#> 731     6-4    256               Boise State
#> 732     6-2    245                Notre Dame
#> 733     6-3    245                  Nebraska
#> 734     6-1    232      South Carolina State
#> 735     6-1    235                      Utah
#> 736     6-4    235                    Kansas
#> 737     6-2    245                Penn State
#> 738     6-3    260               North Texas
#> 739     6-5    256                California
#> 740     6-5    243              Northwestern
#> 741     6-0    205             Carson-Newman
#> 742     6-3    225          Central Michigan
#> 743     6-2    220           Texas Christian
#> 744     6-3    210             James Madison
#> 745     6-2    238         Mississippi State
#> 746     6-4    230        Southern Methodist
#> 747     6-0    209                   Memphis
#> 748     6-0    215            South Carolina
#> 749     6-3    240           Texas Christian
#> 750     6-0    228                Ohio State
#> 751     6-0    204             Texas A&amp;M
#> 752     6-5    314                   Indiana
#> 753     6-4    308                  Virginia
#> 754     6-6    305                    Wagner
#> 755     6-6    313            North Carolina
#> 756     6-7    301                No College
#> 757     6-5    305                   Clemson
#> 758     6-5    313             Florida State
#> 759     6-5    320       Southern California
#> 760     6-5    310                  Richmond
#> 761     6-4    320           Louisiana State
#> 762     6-6    310                Texas Tech
#> 763     6-5    260            Oklahoma State
#> 764     6-5    242                  Stanford
#> 765     6-6    252                  Oklahoma
#> 766     6-5    246                  Michigan
#> 767     6-4    240                Louisville
#> 768     6-2    200                  Illinois
#> 769     6-3    205            Oklahoma State
#> 770     6-5    188               Boise State
#> 771     6-2    225                Ohio State
#> 772     6-1    211                   Alabama
#> 773     6-1    200            Colorado State
#> 774     6-2    189                  Oklahoma
#> 775     6-4    200         Mississippi State
#> 776     6-0    192                    Toledo
#> 777     6-3    191              Rhode Island
#> 778     6-4    315           Louisiana State
#> 779     6-3    300           Texas Christian
#> 780     6-3    315                   Florida
#> 781     5-9    188                      Rice
#> 782     6-0    175                  Oklahoma
#> 783     6-2    190           Pittsburg State
#> 784    5-10    190               Wake Forest
#> 785     6-1    200                      Iowa
#> 786     6-0    185                    Temple
#> 787    5-10    185                   Alabama
#> 788     6-2    199           Louisiana State
#> 789     6-0    191           Central Florida
#> 790    5-10    198                   Florida
#> 791     6-1    194                   Arizona
#> 792    5-10    202                     Texas
#> 793     6-2    188                  Stanford
#> 794     6-2    202            Boston College
#> 795     6-2    290            Illinois State
#> 796     6-4    280             Florida State
#> 797     6-5    295                Lindenwood
#> 798     6-4    275      North Carolina State
#> 799     6-4    280     Colorado State-Pueblo
#> 800     6-3    281                Ohio State
#> 801     6-1    292                   Clemson
#> 802     6-2    328            North Carolina
#> 803     6-2    295             Florida State
#> 804     6-1    299               Chattanooga
#> 805     6-1    305              Oregon State
#> 806     6-3    312                  Maryland
#> 807     6-3    300                  Arkansas
#> 808     6-1    305       Southern California
#> 809     6-3    307              Fresno State
#> 810     6-6    300           Texas Christian
#> 811     6-5    312              Kansas State
#> 812     6-6    310                  Michigan
#> 813     6-3    201                    Temple
#> 814    5-11    160                  Millsaps
#> 815     6-2    230                   Alabama
#> 816     6-3    255                     Miami
#> 817     6-2    235                    Nevada
#> 818     6-3    250             Texas A&amp;M
#> 819     6-3    235               Wake Forest
#> 820     6-3    242                   Georgia
#> 821     6-3    252              Georgia Tech
#> 822     6-2    241             Florida State
#> 823     6-1    236                      Iowa
#> 824     6-0    231              Northwestern
#> 825     6-2    240            Colorado State
#> 826     6-5    246        North Dakota State
#> 827     6-2    255                 Tennessee
#> 828     6-0    240                 Villanova
#> 829     6-2    235         Northern Colorado
#> 830     6-3    328                   Wyoming
#> 831     6-1    211         Appalachian State
#> 832     6-4    228                  Missouri
#> 833     6-4    235            Louisiana Tech
#> 834     6-2    200               Boise State
#> 835    5-11    225                  Missouri
#> 836     5-9    188          Western Michigan
#> 837     5-8    190                  Colorado
#> 838     6-0    235              Old Dominion
#> 839     6-1    215                 Wisconsin
#> 840     6-0    238                    Oregon
#> 841    5-10    200               Stony Brook
#> 842     6-0    207             Florida State
#> 843     6-6    323             Arizona State
#> 844     6-6    329             Massachusetts
#> 845     6-9    315      Southern Mississippi
#> 846     6-5    300                     Texas
#> 847     6-5    300                      Utah
#> 848     6-6    312                 Tennessee
#> 849     6-5    315                      Utah
#> 850     6-6    248                 Wisconsin
#> 851     6-4    249                      Iowa
#> 852     6-6    250                  Michigan
#> 853     6-5    255                  Missouri
#> 854     6-6    261                Ohio State
#> 855     6-4    244                   Wyoming
#> 856     6-3    255                     Texas
#> 857     6-5    258                   Clemson
#> 858     6-4    216        Southern Methodist
#> 859     6-1    196         Mississippi State
#> 860     6-1    192                   Alabama
#> 861     6-1    206                Penn State
#> 862     6-4    212                      Utah
#> 863     6-0    195               Wake Forest
#> 864     6-0    180              East Central
#> 865     6-2    205                   Florida
#> 866     5-9    176                Penn State
#> 867     5-8    170             McNeese State
#> 868     6-5    310                  Kentucky
#> 869     6-5    311                  Arkansas
#> 870     6-3    308            North Carolina
#> 871     6-2    203                Penn State
#> 872     6-1    200                Ohio State
#> 873    5-11    182                  Marshall
#> 874    5-10    189             East Carolina
#> 875     6-0    188                  Belhaven
#> 876     6-0    190                Washington
#> 877    5-10    185    North Carolina A&amp;T
#> 878     6-0    196        Southeast Missouri
#> 879    5-11    190                 Tennessee
#> 880     6-4    205             Norfolk State
#> 881     6-2    222             Southern Utah
#> 882    5-11    192                   Houston
#> 883     6-0    210                Notre Dame
#> 884     6-1    210       Louisiana-Lafayette
#> 885    5-11    195               Mississippi
#> 886     6-5    241                Notre Dame
#> 887     6-6    300            Michigan State
#> 888     6-3    285                Ohio State
#> 889     6-6    261                   Clemson
#> 890     6-4    263                Notre Dame
#> 891     6-3    297                   Alabama
#> 892     6-4    305           Louisiana State
#> 893     6-2    265                  Arkansas
#> 894     6-2    280                   Indiana
#> 895     6-3    273       Southern California
#> 896     6-3    320                   Georgia
#> 897     6-3    305                   Clemson
#> 898     6-2    333                      Utah
#> 899     6-2    345                Washington
#> 900     6-4    285         Texas-San Antonio
#> 901     6-4    309                   Samford
#> 902     6-2    302        Southern Methodist
#> 903     6-4    305                Ohio State
#> 904     6-5    315                  Virginia
#> 905     6-4    310          Washington State
#> 906     6-6    320                  Kentucky
#> 907    5-10    201           Central Florida
#> 908     6-0    179           Central Florida
#> 909     6-3    240        Wayne State, Mich.
#> 910     6-0    233                 Tennessee
#> 911     6-1    235                Penn State
#> 912     6-2    250                    Hawaii
#> 913     6-0    235                   Alabama
#> 914     6-3    255      Southern Mississippi
#> 915     6-1    245                   Florida
#> 916     6-2    252                   Alabama
#> 917     6-6    272            North Carolina
#> 918     6-3    250             Florida State
#> 919     6-4    258             Texas A&amp;M
#> 920     6-2    224                      Rice
#> 921     6-3    220                   Georgia
#> 922     6-0    229                  Missouri
#> 923     6-0    200                    Purdue
#> 924    5-11    212                    Auburn
#> 925    5-10    211                   Georgia
#> 926    5-10    204          Florida Atlantic
#> 927     6-1    220                  Oklahoma
#> 928     5-7    185            Colorado State
#> 929     6-2    245           San Diego State
#> 930     6-1    205                   Rutgers
#> 931     6-1    207            Boston College
#> 932     6-0    212              Northwestern
#> 933     6-9    325                  Arkansas
#> 934     6-6    320           Texas Christian
#> 935     6-7    299                      Iowa
#> 936     6-7    318                Ohio State
#> 937     6-4    310                    Oregon
#> 938     6-4    253               Bowie State
#> 939     6-5    254            South Carolina
#> 940     6-7    250                Penn State
#> 941     6-5    247                Notre Dame
#> 942     6-2    239                Washington
#> 943     6-5    248                      Iowa
#> 944    5-10    190                 San Diego
#> 945    5-10    194                    Bryant
#> 946     6-2    215                   Rutgers
#> 947     6-2    198                California
#> 948    5-11    185                Texas Tech
#> 949     6-1    205                 Wisconsin
#> 950     5-8    178              Oregon State
#> 951     6-3    202                  Illinois
#> 952     6-4    213         Northern Illinois
#> 953     6-3    301                Ohio State
#> 954     6-5    297                    Oregon
#> 955    5-10    180                    Tulane
#> 956    5-11    189             Georgia State
#> 957     6-3    200                Washington
#> 958    5-11    196                Notre Dame
#> 959    5-11    192            Louisiana Tech
#> 960    5-10    196                Louisville
#> 961     6-0    196                    Toledo
#> 962     6-0    196                      Iowa
#> 963     6-1    187                  Colorado
#> 964     6-0    214                Penn State
#> 965    5-11    204                    Baylor
#> 966     6-2    206           Texas Christian
#> 967    5-11    197             James Madison
#> 968     6-2    185             Florida State
#> 969     6-6    296              Northwestern
#> 970     6-4    300               Boise State
#> 971     6-5    250        Southern Methodist
#> 972     6-4    304                    Auburn
#> 973     6-5    235                Utah State
#> 974     6-3    288             Texas A&amp;M
#> 975     6-5    350        Alabama-Birmingham
#> 976     6-5    295                   Rutgers
#> 977     6-3    350              William Penn
#> 978     6-3    322         Texas-San Antonio
#> 979     6-3    324            Oklahoma State
#> 980     6-6    329                  Michigan
#> 981     6-6    315                 Wisconsin
#> 982     6-6    315        North Dakota State
#> 983     6-5    310         Mississippi State
#> 984     6-3    313                      Duke
#> 985     6-5    321                  Michigan
#> 986     6-4    311                   Indiana
#> 987     6-1    207                  Colorado
#> 988     6-0    244                  Arkansas
#> 989     6-5    265         Mississippi State
#> 990     6-5    277                  Michigan
#> 991     6-4    250                     Miami
#> 992     6-3    233                Vanderbilt
#> 993     6-1    240           Texas Christian
#> 994     6-4    272                  Kentucky
#> 995     6-1    235                      UCLA
#> 996     6-3    245                 Minnesota
#> 997     6-3    236                  Arkansas
#> 998     6-0    230                Louisville
#> 999     6-2    235                      Iowa
#> 1000    6-3    240         Mississippi State
#> 1001    6-3    314                      UCLA
#> 1002    6-3    315              Northwestern
#> 1003    6-5    217                Pittsburgh
#> 1004    6-6    208                   Alabama
#> 1005    6-2    225                California
#> 1006    6-4    233          Eastern Kentucky
#> 1007    6-4    220                Utah State
#> 1008    6-3    225                 Princeton
#> 1009   5-11    212                Notre Dame
#> 1010   5-10    212                Ohio State
#> 1011    6-3    223                   Memphis
#> 1012    5-9    208             Texas-El Paso
#> 1013   5-10    185            San Jose State
#> 1014    6-1    250            Boston College
#> 1015    6-0    213             Brigham Young
#> 1016   5-11    200                  Maryland
#> 1017   5-11    186         Mississippi State
#> 1018    6-7    315           San Diego State
#> 1019    6-5    310        North Dakota State
#> 1020    6-7    314             Virginia Tech
#> 1021    6-4    310                  Colorado
#> 1022    6-8    321                 Hillsdale
#> 1023    6-6    267                      UCLA
#> 1024    6-4    250             Texas A&amp;M
#> 1025    6-3    235             Indiana State
#> 1026    6-3    240                Cincinnati
#> 1027    6-3    246                   Georgia
#> 1028    6-6    275             Brigham Young
#> 1029    6-5    237             Indiana State
#> 1030    6-4    240                      Duke
#> 1031    6-1    215              Fresno State
#> 1032    6-2    216              Ferris State
#> 1033    6-2    200                     Lamar
#> 1034    6-5    214                Notre Dame
#> 1035    6-2    202                Vanderbilt
#> 1036    6-2    195              West Alabama
#> 1037   5-11    188        North Dakota State
#> 1038    6-5    227                Iowa State
#> 1039    5-8    179             West Virginia
#> 1040    6-4    207             South Florida
#> 1041    6-3    215                  Colorado
#> 1042    6-4    225                  Michigan
#> 1043    6-4    300                Notre Dame
#> 1044    6-5    295             Arizona State
#> 1045    6-6    300                 Wisconsin
#> 1046   5-11    210          Missouri Western
#> 1047   5-10    204                   Florida
#> 1048   5-10    181                Penn State
#> 1049    6-2    213                  Kentucky
#> 1050   5-10    192                   Clemson
#> 1051   5-11    194                Ohio State
#> 1052    6-0    185      Southern Mississippi
#> 1053    6-0    193                      Rice
#> 1054    6-0    200             Texas A&amp;M
#> 1055   5-10    185          Western Carolina
#> 1056    6-0    190                Ohio State
#> 1057   5-11    199                 Minnesota
#> 1058   5-11    202               Mississippi
#> 1059   5-11    210                      Iowa
#> 1060    6-2    242                    Temple
#> 1061    6-5    280                     Texas
#> 1062    6-3    297                   Clemson
#> 1063    6-5    288                 Wisconsin
#> 1064    6-4    305           Texas Christian
#> 1065    6-0    305         Sam Houston State
#> 1066    6-2    300                  Illinois
#> 1067    6-3    291                  Michigan
#> 1068    6-3    315                      UCLA
#> 1069    6-4    320              West Georgia
#> 1070    6-5    310                  Arkansas
#> 1071    6-3    300                Washington
#> 1072    6-5    321                 Tennessee
#> 1073    6-0    183                      UCLA
#> 1074    6-0    237            Missouri State
#> 1075    6-0    228                  Oklahoma
#> 1076    6-4    257         Mississippi State
#> 1077    6-2    224              Northwestern
#> 1078    6-3    254                  Stanford
#> 1079    6-3    238                Vanderbilt
#> 1080    6-4    258                  Illinois
#> 1081    6-2    228              West Georgia
#> 1082    6-3    259                   Florida
#> 1083    6-4    255               Wake Forest
#> 1084    6-1    235                      Rice
#> 1085    6-4    263                  Stanford
#> 1086    6-3    250        North Dakota State
#> 1087    6-3    220                 Lake Erie
#> 1088   5-10    242                    Baylor
#> 1089    6-2    310                Louisville
#> 1090    6-3    290                  Virginia
#> 1091    6-3    205                California
#> 1092    6-2    221                   Clemson
#> 1093    6-3    220                   Alabama
#> 1094    6-4    218         Sam Houston State
#> 1095   5-11    202                    Tulane
#> 1096    6-1    218          Florida Atlantic
#> 1097    6-1    224             Northern Iowa
#> 1098    5-8    211               Mississippi
#> 1099    5-9    210                     Miami
#> 1100    6-2    235             Texas A&amp;M
#> 1101   5-11    195                  Stanford
#> 1102    6-1    204                  Stanford
#> 1103    6-7    315                  Nebraska
#> 1104    6-5    322             Alabama State
#> 1105    6-6    306             Florida State
#> 1106    6-6    325         Northern Illinois
#> 1107    6-5    313               Mississippi
#> 1108    6-8    315            North Carolina
#> 1109    6-5    305         Northern Illinois
#> 1110    6-4    243           Central Florida
#> 1111    6-6    258                    Oregon
#> 1112    6-7    270         California-Irvine
#> 1113    6-5    250           San Diego State
#> 1114   5-10    192                  Kentucky
#> 1115   5-10    186       Southern California
#> 1116    6-2    202                California
#> 1117   5-11    180                Texas Tech
#> 1118    6-2    200             Texas A&amp;M
#> 1119    6-3    190              Rhode Island
#> 1120    6-3    205                  Missouri
#> 1121    6-0    184                Notre Dame
#> 1122   5-11    195                   Clemson
#> 1123   5-10    183              Oregon State
#> 1124    6-4    309                   Alabama
#> 1125    6-2    299           Texas Christian
#> 1126    6-5    290             Arizona State
#> 1127    6-0    204                      Ohio
#> 1128    6-0    205                    Tulane
#> 1129    6-0    190          Central Arkansas
#> 1130    6-0    190                    Temple
#> 1131   5-11    205                 Wisconsin
#> 1132    6-1    218             Florida State
#> 1133    6-0    190          Coastal Carolina
#> 1134   5-10    170             Massachusetts
#> 1135    5-9    190            Valdosta State
#> 1136    6-2    198       Southern California
#> 1137    6-0    195            San Jose State
#> 1138   5-11    208              Northwestern
#> 1139    6-4    196                      Troy
#> 1140    6-1    204                      Utah
#> 1141    6-1    202          Central Arkansas
#> 1142    6-1    212                Ohio State
#> 1143    6-3    277                Ohio State
#> 1144    6-5    285         Mississippi State
#> 1145    6-5    248                   Rutgers
#> 1146    6-3    270                   Georgia
#> 1147    6-4    250                     Miami
#> 1148    6-3    252           Texas Christian
#> 1149    6-2    305                    Wagner
#> 1150    6-4    270              South Dakota
#> 1151    6-2    305            South Carolina
#> 1152    6-5    290                Penn State
#> 1153    6-7    300                    Oregon
#> 1154    6-4    310             West Virginia
#> 1155    6-5    330                Notre Dame
#> 1156    6-4    300                Ball State
#> 1157    6-5    300                Washington
#> 1158    6-1    191                   Georgia
#> 1159    6-2    230      South Carolina State
#> 1160    6-0    229                   Houston
#> 1161    6-1    230              Northwestern
#> 1162    6-0    244             West Virginia
#> 1163    6-2    225            South Carolina
#> 1164    6-1    234                  Stanford
#> 1165    6-1    226                  Michigan
#> 1166    6-2    245                   Indiana
#> 1167    6-4    230            Tarleton State
#> 1168    6-0    236                  Syracuse
#> 1169    6-2    238        William &amp; Mary
#> 1170    6-4    315         Albany State, Ga.
#> 1171    6-3    213                     Idaho
#> 1172    6-0    195                    Hawaii
#> 1173    6-2    220            Louisiana Tech
#> 1174    6-4    235      North Carolina State
#> 1175    6-2    216               Mississippi
#> 1176    6-6    227                Washington
#> 1177    6-5    228      North Carolina State
#> 1178    5-9    198      North Carolina State
#> 1179    6-1    217               Mississippi
#> 1180   5-11    212           Texas Christian
#> 1181   5-11    221                 Wisconsin
#> 1182    6-0    210             South Florida
#> 1183   5-11    213                      UCLA
#> 1184    6-0    220          Eastern Michigan
#> 1185   5-11    215            Michigan State
#> 1186    6-0    208                  Illinois
#> 1187   5-10    200                    Toledo
#> 1188    6-5    311                Texas Tech
#> 1189    6-6    315             Alberta, Can.
#> 1190    6-7    307            Boston College
#> 1191    6-6    315             Arizona State
#> 1192    6-7    312                Vanderbilt
#> 1193    6-5    318                   Florida
#> 1194    6-6    315                    Auburn
#> 1195    6-5    316                    Toledo
#> 1196    6-7    320        West Texas A&amp;M
#> 1197    6-5    277         Mississippi State
#> 1198    6-5    245               Weber State
#> 1199    6-6    262          Western Kentucky
#> 1200    6-5    267     Virginia Commonwealth
#> 1201    6-4    246              Oregon State
#> 1202    6-2    238                   Florida
#> 1203    6-4    240         Mississippi State
#> 1204    6-4    220          Washington State
#> 1205    6-0    205                Ohio State
#> 1206    5-9    175      Southern Mississippi
#> 1207   5-10    160        Alabama-Birmingham
#> 1208    6-2    210             Northern Iowa
#> 1209    6-1    215                    Malone
#> 1210    6-1    215             West Virginia
#> 1211    6-2    214              Old Dominion
#> 1212   5-10    183     Florida International
#> 1213    6-4    220       Southern California
#> 1214    6-3    321                  Missouri
#> 1215   5-11    190                   Houston
#> 1216    6-2    200                      Iowa
#> 1217    6-2    196         Northern Illinois
#> 1218   5-11    194                      UCLA
#> 1219   5-11    198                  Michigan
#> 1220   5-10    175            Michigan State
#> 1221    6-0    181                Washington
#> 1222    6-1    175           San Diego State
#> 1223    6-1    209                  Stanford
#> 1224    6-1    191                   Florida
#> 1225    6-0    176                   Memphis
#> 1226   5-11    185                Vanderbilt
#> 1227    6-0    209                   Wyoming
#> 1228    6-0    210         Appalachian State
#> 1229    6-3    200                      Utah
#> 1230    6-4    287              Georgia Tech
#> 1231    6-3    261                   Arizona
#> 1232    6-5    262                  Kentucky
#> 1233    6-4    250           Louisiana State
#> 1234    6-3    264                  Illinois
#> 1235    6-5    305            Delaware State
#> 1236    6-3    249                   Florida
#> 1237    6-4    330           Louisiana State
#> 1238    6-3    300          Washington State
#> 1239    6-4    291                   Florida
#> 1240    6-4    318                   Georgia
#> 1241    6-2    295                 Miami, O.
#> 1242    6-2    292                 Princeton
#> 1243    6-3    305       N.E. Mississippi CC
#> 1244    6-3    295                    Auburn
#> 1245    6-2    248           Central Florida
#> 1246    6-3    310                   Clemson
#> 1247    6-3    325            South Carolina
#> 1248    6-6    325                Ohio State
#> 1249    6-6    315                     Miami
#> 1250    6-4    336                  Missouri
#> 1251    6-4    210      North Carolina State
#> 1252   5-10    202                Louisville
#> 1253    6-0    215             Texas A&amp;M
#> 1254    6-3    221           Southern Oregon
#> 1255    6-1    230                    Temple
#> 1256    6-1    235                     Miami
#> 1257    6-1    245                 Wisconsin
#> 1258   5-11    226              Murray State
#> 1259    6-2    234                      Duke
#> 1260    6-1    232                Texas Tech
#> 1261    6-3    241               Boise State
#> 1262    6-2    245                 Wisconsin
#> 1263    6-1    244                      UCLA
#> 1264    6-1    241           Central Florida
#> 1265    6-5    285             South Florida
#> 1266    6-0    235                    Baylor
#> 1267    6-4    310                Ohio State
#> 1268    6-3    320                    Auburn
#> 1269    6-2    200                   Georgia
#> 1270    6-5    200         Mississippi State
#> 1271    6-6    236              Oregon State
#> 1272    6-7    225      North Carolina State
#> 1273    6-1    225          Washington State
#> 1274    6-0    225                  Nebraska
#> 1275   5-11    220                    Temple
#> 1276    5-8    195             Florida State
#> 1277   5-11    193              Georgia Tech
#> 1278   5-10    220            Illinois State
#> 1279   5-11    215                  Kutztown
#> 1280   5-10    205                 Wisconsin
#> 1281    6-2    210                  Michigan
#> 1282   5-11    209                    Auburn
#> 1283    6-2    220      North Carolina State
#> 1284    6-6    302             East Carolina
#> 1285    6-6    305         St. John's, Minn.
#> 1286    6-5    311                     Miami
#> 1287    6-6    303      North Carolina State
#> 1288    6-4    320                  Maryland
#> 1289    6-6    320                   Alabama
#> 1290    6-7    312                      Ohio
#> 1291    6-5    312                   Florida
#> 1292    6-5    253                     Drake
#> 1293    6-4    245            Illinois State
#> 1294    6-6    260                Pittsburgh
#> 1295    6-6    255                Notre Dame
#> 1296    6-3    250        North Dakota State
#> 1297    6-4    250              Georgia Tech
#> 1298    6-5    250            San Jose State
#> 1299   5-11    185                   Georgia
#> 1300    6-1    194         Kentucky Wesleyan
#> 1301   5-11    195            Boston College
#> 1302    6-3    204                      Troy
#> 1303    6-0    194                   Florida
#> 1304    6-0    176                  Oklahoma
#> 1305    6-2    220                  Colorado
#> 1306    6-4    198           Louisiana State
#> 1307    6-3    205                   Georgia
#> 1308    6-5    210            North Carolina
#> 1309    6-6    215                     Texas
#> 1310    6-3    291         Appalachian State
#> 1311    6-2    305         Mississippi State
#> 1312    6-3    300             South Florida
#> 1313    6-0    190      South Carolina State
#> 1314   5-11    170      South Carolina State
#> 1315   5-11    195                   Clemson
#> 1316    6-1    200                    Tulane
#> 1317    6-1    193            Louisiana Tech
#> 1318   5-11    188            South Carolina
#> 1319   5-10    190            South Carolina
#> 1320    6-1    195          Middle Tennessee
#> 1321   5-11    180                   Georgia
#> 1322    6-0    205                  Virginia
#> 1323    6-2    208             Brigham Young
#> 1324    6-0    205        Southern Methodist
#> 1325    6-4    260                     Texas
#> 1326    6-6    255              Old Dominion
#> 1327    6-6    270                  Michigan
#> 1328    6-3    260                  Michigan
#> 1329    6-4    272                   Buffalo
#> 1330    6-7    289                 Villanova
#> 1331    6-2    255                  Michigan
#> 1332    6-5    280              Ferris State
#> 1333    6-0    324          Western Illinois
#> 1334    6-4    300                   Georgia
#> 1335    6-4    255          Missouri S&amp;T
#> 1336    6-6    308         Mississippi State
#> 1337    6-7    320        South Dakota State
#> 1338    6-5    330                Iowa State
#> 1339    6-3    305                Penn State
#> 1340    6-5    321                    McGill
#> 1341    6-4    327                  Michigan
#> 1342    6-4    320                  Illinois
#> 1343    6-4    205              Georgia Tech
#> 1344    6-1    220                   Clemson
#> 1345    6-2    235         Mississippi State
#> 1346    6-0    243                 Minnesota
#> 1347    6-0    235                      Iowa
#> 1348    6-2    233                      Iowa
#> 1349    6-2    240                Vanderbilt
#> 1350    6-2    238          Middle Tennessee
#> 1351    6-4    223                  Marshall
#> 1352    6-3    240                  Oklahoma
#> 1353    6-4    332     Colorado State-Pueblo
#> 1354    6-1    310             Florida State
#> 1355    6-3    210                 Tennessee
#> 1356    6-2    176                   Florida
#> 1357    6-3    230                Texas Tech
#> 1358    6-3    219              Oregon State
#> 1359    6-3    222                  Michigan
#> 1360    6-3    221               Mississippi
#> 1361   5-11    224                  Oklahoma
#> 1362   5-10    242               Connecticut
#> 1363    5-8    200                Utah State
#> 1364   5-10    214       Louisiana-Lafayette
#> 1365   5-11    224           Louisiana State
#> 1366    6-1    225            Michigan State
#> 1367    5-8    209           Louisiana State
#> 1368   5-11    205             Texas A&amp;M
#> 1369    5-9    190           Louisiana State
#> 1370    6-5    310              Oregon State
#> 1371    6-6    309          Eastern Michigan
#> 1372    6-7    315          Central Michigan
#> 1373    6-7    328           Texas Christian
#> 1374    6-7    330                  Missouri
#> 1375    6-5    311         Mississippi State
#> 1376    6-5    320                California
#> 1377    6-7    310                    Auburn
#> 1378    6-4    255          Western Kentucky
#> 1379    6-5    243             Texas A&amp;M
#> 1380    6-5    260                Cincinnati
#> 1381    6-5    255                  Missouri
#> 1382    6-5    250                    Oregon
#> 1383    6-4    251        Grand Valley State
#> 1384    6-1    203                   Florida
#> 1385   5-11    200                Pittsburgh
#> 1386    6-2    194             Massachusetts
#> 1387    6-1    211                   Clemson
#> 1388    6-1    204                 Grambling
#> 1389    6-6    230            Valdosta State
#> 1390   5-11    200                   Florida
#> 1391   5-10    187                   Georgia
#> 1392    6-3    207                   Alabama
#> 1393    6-1    205              Kansas State
#> 1394   5-10    185              West Alabama
#> 1395    6-4    210                    Hawaii
#> 1396    6-3    300                      Iowa
#> 1397    6-2    302            Michigan State
#> 1398   5-11    184                    Oregon
#> 1399   5-11    196                  Michigan
#> 1400    5-9    158               Boise State
#> 1401    6-1    208             Florida State
#> 1402    5-9    187        Alabama-Birmingham
#> 1403   5-11    188              Fresno State
#> 1404    6-0    209            Boston College
#> 1405   5-11    200                Penn State
#> 1406    6-2    205                Ohio State
#> 1407    6-1    195                   Georgia
#> 1408   5-10    187                   Georgia
#> 1409    6-5    250          Youngstown State
#> 1410    6-3    275     Colorado State-Pueblo
#> 1411    6-5    275               Weber State
#> 1412    6-5    305           Louisiana State
#> 1413    6-4    270         Texas-San Antonio
#> 1414    6-1    280                Pittsburgh
#> 1415    6-4    330                   Alabama
#> 1416    6-4    310                     Brown
#> 1417    6-2    285                Cincinnati
#> 1418    6-5    321                     Maine
#> 1419    6-3    316            San Jose State
#> 1420    6-5    321           Texas Christian
#> 1421    6-6    308                 Wisconsin
#> 1422    6-4    305                    Nevada
#> 1423    6-5    285                Washington
#> 1424   5-11    197                      UCLA
#> 1425   5-10    185                  Kentucky
#> 1426    6-0    232                      Utah
#> 1427    6-1    235                      UCLA
#> 1428    6-2    220            Oklahoma State
#> 1429    6-3    245                  Delaware
#> 1430    6-1    253                  Oklahoma
#> 1431    6-5    240                   Georgia
#> 1432    6-0    244                  Virginia
#> 1433    6-4    265        Southern Methodist
#> 1434    6-5    248                    Oregon
#> 1435    6-3    245        Eastern Washington
#> 1436    6-2    230        South Dakota State
#> 1437    6-5    252                   Alabama
#> 1438    6-3    258                   Florida
#> 1439    6-1    219           Texas Christian
#> 1440    6-4    235                Iowa State
#> 1441    6-4    248                Louisville
#> 1442    6-2    235                Ohio State
#> 1443    6-1    312                Washington
#> 1444    6-4    310                   Rutgers
#> 1445   5-10    182             Georgia State
#> 1446    6-5    241              Oregon State
#> 1447    6-1    200               Wake Forest
#> 1448    6-1    210                   Samford
#> 1449    6-5    236           Central Florida
#> 1450    6-3    215                  Virginia
#> 1451    6-4    223                California
#> 1452   5-11    212             Florida State
#> 1453    5-9    185       Louisiana-Lafayette
#> 1454   5-11    208        Southern Methodist
#> 1455    5-8    200                   Memphis
#> 1456   5-11    222                     Texas
#> 1457    6-0    208                Washington
#> 1458    6-1    212                      Iowa
#> 1459    6-0    198                      Utah
#> 1460    6-8    328                 Wisconsin
#> 1461    6-6    319          Middle Tennessee
#> 1462    6-2    315                   Clemson
#> 1463    6-7    330           Louisiana State
#> 1464    6-4    312                  Oklahoma
#> 1465    6-3    240             South Alabama
#> 1466    6-5    245                    Purdue
#> 1467    6-6    257          Western Kentucky
#> 1468    6-6    260                  Missouri
#> 1469    6-4    232                    Oregon
#> 1470    6-0    193       Southern California
#> 1471    6-2    197                   Florida
#> 1472    6-1    191                  Syracuse
#> 1473    6-1    195                  Cal Poly
#> 1474    6-2    208        Eastern Washington
#> 1475    6-3    196             Texas A&amp;M
#> 1476   5-10    180        Eastern Washington
#> 1477    6-5    298                   Florida
#> 1478    6-7    300                   Harvard
#> 1479    6-0    200              Regina, Can.
#> 1480    6-2    197             Virginia Tech
#> 1481    6-2    196             Brigham Young
#> 1482   5-11    192                Vanderbilt
#> 1483   5-10    199                    Kansas
#> 1484    6-0    206                  Delaware
#> 1485   5-10    195          Central Michigan
#> 1486    6-2    195          Western Carolina
#> 1487    6-2    212                Notre Dame
#> 1488    6-2    215             Florida State
#> 1489    6-3    240                   Liberty
#> 1490    6-5    280                Ohio State
#> 1491    6-2    247            South Carolina
#> 1492    6-4    280                Notre Dame
#> 1493    6-4    275              Northwestern
#> 1494    6-2    251       Southern California
#> 1495    6-6    295                Notre Dame
#> 1496    6-3    290                  Arkansas
#> 1497    6-3    309      North Carolina State
#> 1498    6-2    293                Cincinnati
#> 1499    6-4    310                   Indiana
#> 1500    6-3    310                      UCLA
#> 1501    6-5    300               Wake Forest
#> 1502    6-5    320                 Wisconsin
#> 1503    6-3    315           Louisiana State
#> 1504    6-4    309          Western Kentucky
#> 1505    6-3    316             Bowling Green
#> 1506   5-10    183                     Miami
#> 1507    6-2    234                Notre Dame
#> 1508    6-2    240                     Texas
#> 1509    6-2    216             West Virginia
#> 1510    6-3    234                  Oklahoma
#> 1511    6-2    235                Utah State
#> 1512   5-11    240                     Miami
#> 1513    6-2    225                      Army
#> 1514    6-2    245                   Houston
#> 1515    6-3    229            Illinois State
#> 1516    6-1    247                   Alabama
#> 1517    6-4    329             East Carolina
#> 1518    6-2    293                   Alabama
#> 1519    6-2    295           Louisiana State
#> 1520    6-4    209         Sam Houston State
#> 1521    6-2    205        Alabama-Birmingham
#> 1522    6-1    215             Virginia Tech
#> 1523    6-1    224        North Dakota State
#> 1524    6-6    237                    Oregon
#> 1525   5-11    219                      UCLA
#> 1526   5-10    200      Western State, Colo.
#> 1527    6-1    230                    Tulane
#> 1528    5-9    205        Jacksonville State
#> 1529    6-2    230             Arizona State
#> 1530    6-3    243             Florida State
#> 1531    6-0    200              Northwestern
#> 1532   5-11    202                Notre Dame
#> 1533   5-11    194                   Florida
#> 1534    6-1    220                     Miami
#> 1535    6-5    315                      Utah
#> 1536    6-6    307               Sioux Falls
#> 1537    6-7    317                    Toledo
#> 1538    6-5    314                      Iowa
#> 1539    6-5    315                     Miami
#> 1540    6-5    250                  Arkansas
#> 1541    6-8    237        Stetson University
#> 1542    6-5    255                    Nevada
#> 1543    6-6    260            Michigan State
#> 1544    6-3    230                California
#> 1545    6-2    190              West Georgia
#> 1546    6-1    193            Oklahoma State
#> 1547    6-3    215                   Findlay
#> 1548    6-2    211                California
#> 1549    6-0    197                Ohio State
#> 1550    6-2    204                     Idaho
#> 1551    6-1    215                  Virginia
#> 1552    6-1    212               North Texas
#> 1553    6-4    218                   Clemson
#> 1554    6-6    300                  Michigan
#> 1555    6-2    315             Florida State
#> 1556    6-4    300                      UCLA
#> 1557   5-10    200            South Carolina
#> 1558    5-9    183            Louisiana Tech
#> 1559    5-8    185             Florida State
#> 1560   5-11    193              Georgia Tech
#> 1561    6-1    215             West Virginia
#> 1562    6-0    195                Ohio State
#> 1563   5-10    195           Central Florida
#> 1564    6-2    200                   Clemson
#> 1565    6-2    210                   Houston
#> 1566    5-9    192                Utah State
#> 1567    6-1    200            Oklahoma State
#> 1568    6-3    205          Nevada-Las Vegas
#> 1569   5-10    195                Utah State
#> 1570    6-2    220           California, Pa.
#> 1571    6-7    275                Penn State
#> 1572    6-6    275          Nevada-Las Vegas
#> 1573    6-7    273                Iowa State
#> 1574    6-2    265                      UCLA
#> 1575    6-1    266                  Arkansas
#> 1576    6-4    265                   Clemson
#> 1577    6-5    240           Louisiana State
#> 1578    6-5    255          Eastern Michigan
#> 1579    6-4    252         Mississippi State
#> 1580    6-4    285                      UCLA
#> 1581    6-2    291                  Michigan
#> 1582    6-3    340                Ohio State
#> 1583    6-3    295                 Tennessee
#> 1584    6-2    308                  Nebraska
#> 1585    6-1    242                 Wisconsin
#> 1586    6-5    340                 Mars Hill
#> 1587    6-3    336         Mississippi State
#> 1588    6-3    325                  Nebraska
#> 1589    6-4    335                   Alabama
#> 1590    6-4    330                   Clemson
#> 1591    6-2    190                Utah State
#> 1592    6-5    215                    Auburn
#> 1593    6-3    246                   Clemson
#> 1594    6-0    225                Greenville
#> 1595    6-2    242             West Virginia
#> 1596    6-3    225                   Clemson
#> 1597    6-2    242                Ohio State
#> 1598    6-3    228                Washington
#> 1599    6-4    240               Wake Forest
#> 1600    6-2    239          Georgia Southern
#> 1601    6-1    235                Notre Dame
#> 1602    6-3    240            Colorado State
#> 1603    6-3    320           Frostburg State
#> 1604    6-4    220      North Carolina State
#> 1605    6-3    210              Fresno State
#> 1606    6-5    218         Northern Colorado
#> 1607    6-2    225                Pittsburgh
#> 1608    6-4    222                    Oregon
#> 1609   5-11    219                      Utah
#> 1610   5-10    220                   Alabama
#> 1611    5-8    207      Southern Mississippi
#> 1612    5-9    201                Notre Dame
#> 1613    6-1    212      Saginaw Valley State
#> 1614    6-0    200                 Tennessee
#> 1615    6-0    205         Mississippi State
#> 1616    6-8    320    North Carolina A&amp;T
#> 1617    6-6    310                   Rutgers
#> 1618    6-8    380                   Florida
#> 1619    6-7    345                Pittsburgh
#> 1620    6-8    325                      UCLA
#> 1621    6-8    302                Notre Dame
#> 1622    6-4    260                Penn State
#> 1623    6-3    252             Florida State
#> 1624    6-6    255              Georgia Tech
#> 1625    6-6    263                 Tennessee
#> 1626    6-3    240                    Beloit
#> 1627    6-4    250           Louisiana State
#> 1628    5-9    195                  Nebraska
#> 1629    6-3    210             Georgia State
#> 1630    6-0    190                   Alabama
#> 1631    6-0    202        Southern Methodist
#> 1632    6-4    205            Western Oregon
#> 1633    6-2    200             East Carolina
#> 1634   5-10    200                Ohio State
#> 1635   5-10    185                   Clemson
#> 1636    6-4    215            Oklahoma State
#> 1637    6-3    215            South Carolina
#> 1638    6-0    198       Southern California
#> 1639    6-3    215          California-Davis
#> 1640    6-4    300      Southern Mississippi
#> 1641    6-5    305                     Miami
#> 1642    6-6    310                 Wisconsin
#> 1643    6-4    305                  Illinois
#> 1644   5-10    180                Iowa State
#> 1645    6-0    205               Connecticut
#> 1646    6-1    215            San Jose State
#> 1647   5-11    196                    Auburn
#> 1648    6-0    193             Texas-El Paso
#> 1649    6-1    200                    Baylor
#> 1650   5-11    192                   Memphis
#> 1651    6-0    205                     Texas
#> 1652    6-2    210         Mississippi State
#> 1653    6-0    220          Central Michigan
#> 1654   5-10    186                    Auburn
#> 1655   5-10    198                Kent State
#> 1656    6-1    195                  Maryland
#> 1657    6-6    290              Ferris State
#> 1658    6-5    282                    Auburn
#> 1659    6-4    256          Middle Tennessee
#> 1660    6-4    315                   Clemson
#> 1661    6-4    275            Oklahoma State
#> 1662    6-5    280            North Carolina
#> 1663    6-4    280                   Georgia
#> 1664    6-4    330                No College
#> 1665    6-1    329               Mississippi
#> 1666    6-1    310            Boston College
#> 1667    6-1    242                    Auburn
#> 1668    6-5    313             West Virginia
#> 1669    6-6    329                     Miami
#> 1670    6-4    335                   Georgia
#> 1671   5-11    186                New Mexico
#> 1672    6-4    242                 Wisconsin
#> 1673    6-3    267                   Clemson
#> 1674    6-3    246                 Wisconsin
#> 1675    6-2    230          Eastern Illinois
#> 1676    6-0    245           San Diego State
#> 1677    6-3    250             Brigham Young
#> 1678    6-1    236                Texas Tech
#> 1679    6-2    230                Pittsburgh
#> 1680    6-2    225                Ohio State
#> 1681    6-0    238                   Houston
#> 1682   5-11    217        Stetson University
#> 1683    6-6    242             West Virginia
#> 1684    6-3    235           Louisiana State
#> 1685    6-7    310                   Alabama
#> 1686    6-3    311           Louisiana State
#> 1687    6-0    205             Arizona State
#> 1688    6-3    212                  Michigan
#> 1689    6-1    218                   Alabama
#> 1690    6-4    225                 San Diego
#> 1691    6-2    228                   Harvard
#> 1692    6-0    205                California
#> 1693   5-11    196                Washington
#> 1694   5-10    190          Georgia Southern
#> 1695   5-10    200                Washington
#> 1696    5-9    190                      Navy
#> 1697    5-8    210                Texas Tech
#> 1698   5-11    210                   Florida
#> 1699    6-0    201                  Kentucky
#> 1700    6-0    205                  Illinois
#> 1701    6-1    205                      Utah
#> 1702    6-5    322       Louisiana-Lafayette
#> 1703    6-4    292   Northwestern State, La.
#> 1704    6-7    325                  Bucknell
#> 1705    6-6    310       Southern California
#> 1706    6-6    325                     Idaho
#> 1707    6-6    260                Notre Dame
#> 1708    6-6    257                   Ashland
#> 1709    6-5    255                    Temple
#> 1710    6-6    252                Penn State
#> 1711    5-9    195             Georgia State
#> 1712    6-0    210            Arkansas State
#> 1713    6-4    221            North Carolina
#> 1714    5-7    169                Texas Tech
#> 1715    6-3    216                Louisville
#> 1716    6-3    195                     Miami
#> 1717    6-4    200                   Rutgers
#> 1718    6-2    195             Virginia Tech
#> 1719    6-5    218            Colorado State
#> 1720    6-3    305      North Carolina State
#> 1721    6-2    315              Regina, Can.
#> 1722    6-2    185         Mississippi State
#> 1723   5-10    191           Central Florida
#> 1724    6-0    192                    Temple
#> 1725    6-0    183           Texas Christian
#> 1726    6-2    196                     Texas
#> 1727    6-1    195                   Fordham
#> 1728   5-10    175              West Georgia
#> 1729    6-0    200                  Nebraska
#> 1730    6-1    200                   Clemson
#> 1731    5-9    188         Appalachian State
#> 1732   5-11    201                     Texas
#> 1733    6-4    225               Boise State
#> 1734    6-1    202                  Virginia
#> 1735    6-0    190              Fresno State
#> 1736    6-2    210            North Carolina
#> 1737    6-0    210                  Michigan
#> 1738    6-2    195            Illinois State
#> 1739    6-3    258              Northwestern
#> 1740    6-5    252           Louisiana State
#> 1741    6-5    283                Ohio State
#> 1742    6-3    259                   Wyoming
#> 1743    6-3    295                  Bucknell
#> 1744    6-4    250            Michigan State
#> 1745    6-5    260            South Carolina
#> 1746    6-4    295                    Baylor
#> 1747    6-2    252          Washington State
#> 1748    6-3    316                      Iowa
#> 1749   5-11    235           Augustana, S.D.
#> 1750    6-5    299            South Carolina
#> 1751    6-5    308                  Oklahoma
#> 1752    6-4    313                    Furman
#> 1753    6-6    310               Boise State
#> 1754    6-3    310                  Washburn
#> 1755    6-0    190            Oklahoma State
#> 1756    5-9    188             Texas A&amp;M
#> 1757    6-0    210          Florida Atlantic
#> 1758    6-2    235       Southern California
#> 1759    6-0    235                  Illinois
#> 1760    6-0    232                      UCLA
#> 1761    6-3    225                    Baylor
#> 1762    6-2    244                  Michigan
#> 1763    6-1    230                Cincinnati
#> 1764    6-2    242                 Wisconsin
#> 1765    6-5    255                      UCLA
#> 1766    6-3    252            Oklahoma State
#> 1767    6-1    230          Sacramento State
#> 1768    6-4    225                    Oregon
#> 1769    6-3    245                 Air Force
#> 1770    6-2    230                   Rutgers
#> 1771    6-5    310               Connecticut
#> 1772    6-0    340                   Samford
#> 1773    6-5    295                  Arkansas
#> 1774    6-3    210                 Tennessee
#> 1775    6-2    209                Washington
#> 1776    6-3    202            Michigan State
#> 1777    6-4    243                      Iowa
#> 1778    6-6    231              Oregon State
#> 1779    5-9    203                  Nebraska
#> 1780    6-2    250            North Carolina
#> 1781   5-10    205                Cincinnati
#> 1782   5-10    210             Florida State
#> 1783   5-11    220               Boise State
#> 1784    6-2    214                Notre Dame
#> 1785    6-6    313      Southern Mississippi
#> 1786    6-6    305                      Iowa
#> 1787    6-7    297                Pittsburgh
#> 1788    6-5    323                      Elon
#> 1789    6-7    307              Oregon State
#> 1790    6-5    250              Marian, Ind.
#> 1791    6-6    265                Notre Dame
#> 1792    6-2    240                   Alabama
#> 1793    6-4    245                   Alabama
#> 1794    6-3    254          Central Michigan
#> 1795   5-10    185         Northern Illinois
#> 1796    6-0    200                     Miami
#> 1797    6-2    200       Minn. State-Mankato
#> 1798    6-0    203            Colorado State
#> 1799    6-3    202                Penn State
#> 1800    6-3    192           Louisiana State
#> 1801    6-4    307               Chattanooga
#> 1802    6-2    291                   Memphis
#> 1803    6-2    300                      Iowa
#> 1804    6-3    300                   Georgia
#> 1805    6-3    330       Southern California
#> 1806    6-0    200              Presbyterian
#> 1807    5-9    190                New Mexico
#> 1808    6-1    202            South Carolina
#> 1809    6-1    210                     Miami
#> 1810   5-11    195                   Rutgers
#> 1811   5-10    190                    Auburn
#> 1812    6-3    212                Vanderbilt
#> 1813    6-1    198                  Maryland
#> 1814    5-9    195              West Alabama
#> 1815    6-2    216              Lenoir-Rhyne
#> 1816    5-8    180                Washington
#> 1817   5-10    195                   Rutgers
#> 1818    6-4    305                   Houston
#> 1819    6-2    260                Ohio State
#> 1820    6-5    275                  Arkansas
#> 1821    6-3    251                  Michigan
#> 1822    6-5    250           Louisiana State
#> 1823    6-4    280        William &amp; Mary
#> 1824    6-5    300                Vanderbilt
#> 1825    6-4    315             Arizona State
#> 1826    6-4    304                   Georgia
#> 1827    6-1    307                  Illinois
#> 1828    6-3    300                  Maryland
#> 1829    6-0    239              Northwestern
#> 1830    6-3    255                 Tennessee
#> 1831    6-1    310              Georgia Tech
#> 1832    6-4    295                      Iowa
#> 1833    6-3    350                  Michigan
#> 1834    6-3    302                    Purdue
#> 1835    6-2    305                      UCLA
#> 1836    6-1    222                   Arizona
#> 1837    6-3    230                  Marshall
#> 1838    6-1    204             Florida State
#> 1839    6-2    235                  Missouri
#> 1840    6-3    259                   Alabama
#> 1841    6-2    220                    Auburn
#> 1842    6-0    248                   Wyoming
#> 1843    6-4    260            Michigan State
#> 1844    6-2    250                  Michigan
#> 1845    6-2    255                    Purdue
#> 1846    6-3    260                   Alabama
#> 1847    6-3    263              Pennsylvania
#> 1848    6-3    245                      Navy
#> 1849    6-5    320                      Iowa
#> 1850    6-3    327                 Wisconsin
#> 1851    6-2    205                  Stanford
#> 1852    6-5    245                    Auburn
#> 1853    6-2    215            Michigan State
#> 1854    6-7    242 Central Connecticut State
#> 1855    6-3    214                    Auburn
#> 1856   5-10    205                 Wisconsin
#> 1857   5-11    215                   Georgia
#> 1858   5-10    215                  Nebraska
#> 1859   5-11    215                   Alabama
#> 1860   5-11    220               Mississippi
#> 1861    5-6    185                   Arizona
#> 1862   5-11    215                    Oregon
#> 1863    6-2    203                Texas Tech
#> 1864   5-11    210                     Texas
#> 1865   5-11    205             Florida State
#> 1866    6-5    290               Wake Forest
#> 1867    6-5    310             West Virginia
#> 1868    6-6    305                Cincinnati
#> 1869    6-4    335             Texas A&amp;M
#> 1870    6-5    308      North Carolina State
#> 1871    6-6    335           Texas Christian
#> 1872    6-5    305                      UCLA
#> 1873    6-2    310                   Georgia
#> 1874    6-5    255           San Diego State
#> 1875    6-4    251             Virginia Tech
#> 1876    6-6    255                  Illinois
#> 1877    6-3    260                      UCLA
#> 1878    6-5    255             Florida State
#> 1879    6-3    260            Boston College
#> 1880    6-4    255                Ohio State
#> 1881    6-3    200               Mississippi
#> 1882    5-9    180            South Carolina
#> 1883    6-2    200      North Carolina State
#> 1884    6-0    190         Mississippi State
#> 1885   5-10    200                Kent State
#> 1886    6-1    199                Ohio State
#> 1887   5-11    185                  Colorado
#> 1888    6-0    190             Bemidji State
#> 1889    6-1    214        Southeast Missouri
#> 1890    6-2    216               Mississippi
#> 1891    6-0    205                      UCLA
#> 1892    6-0    196       Southern California
#> 1893    6-4    225             Arizona State
#> 1894    6-5    311           Louisiana State
#> 1895    6-4    315             Texas A&amp;M
#> 1896   5-11    191             Florida State
#> 1897   5-10    190             North Alabama
#> 1898    5-9    190                Penn State
#> 1899    6-0    192                Ohio State
#> 1900    6-1    200                  Illinois
#> 1901    6-1    180                  Colorado
#> 1902    6-0    219                  Stanford
#> 1903    6-0    196             Florida State
#> 1904    6-1    195                      Utah
#> 1905    6-1    180             West Virginia
#> 1906   5-10    205            South Carolina
#> 1907    6-6    286           Alabama A&amp;M
#> 1908    6-6    275             West Virginia
#> 1909    6-4    270          Florida Atlantic
#> 1910    6-2    251          Eastern Kentucky
#> 1911    6-4    287                California
#> 1912    6-6    265         Texas-San Antonio
#> 1913    6-5    261                   Wyoming
#> 1914    6-3    253                      Elon
#> 1915    6-3    290                     Texas
#> 1916    6-3    300                 Tennessee
#> 1917    6-5    288            North Carolina
#> 1918    6-3    302                  Michigan
#> 1919    6-4    275                Penn State
#> 1920    6-4    300            Manitoba, Can.
#> 1921    6-1    298       Louisiana-Lafayette
#> 1922    6-2    305                Louisville
#> 1923    6-2    320                     Texas
#> 1924    6-0    240                   Rutgers
#> 1925    6-7    316                  Stanford
#> 1926    6-5    320             Florida State
#> 1927    6-3    319                  Michigan
#> 1928    6-5    310            North Carolina
#> 1929    6-3    303                   Harvard
#> 1930   5-10    175                   Georgia
#> 1931   5-11    184             Georgia State
#> 1932    6-3    220                      Utah
#> 1933    6-2    248            Arkansas State
#> 1934    6-3    235                 Wisconsin
#> 1935    6-3    240                   Florida
#> 1936    6-1    234               North Texas
#> 1937    6-3    240                     Idaho
#> 1938    6-1    227           Louisiana State
#> 1939    6-1    225            Michigan State
#> 1940    6-5    242             Brigham Young
#> 1941    6-3    255        Southern Methodist
#> 1942    6-2    196                Penn State
#> 1943    6-4    235        Southern Methodist
#> 1944    6-4    231             Florida State
#> 1945    6-0    209                    Purdue
#> 1946    6-2    221             Brigham Young
#> 1947    6-3    220              Northwestern
#> 1948    6-0    216                  Stanford
#> 1949   5-11    225                Notre Dame
#> 1950   5-10    215                 Tennessee
#> 1951   5-10    195            Kennesaw State
#> 1952    6-3    230           Central Florida
#> 1953    6-1    223                Washington
#> 1954    6-0    202         Mississippi State
#> 1955    6-0    204                Ohio State
#> 1956   5-11    208                   Florida
#> 1957    6-4    335                 Villanova
#> 1958    6-5    318                    Oregon
#> 1959    6-6    314                 Wisconsin
#> 1960    6-5    304       Arkansas-Pine Bluff
#> 1961    6-6    253                    Dayton
#> 1962    6-5    250               Idaho State
#> 1963    6-5    255                 Tennessee
#> 1964    6-6    255            Incarnate Word
#> 1965    6-5    254            South Carolina
#> 1966    6-4    240                 Air Force
#> 1967    6-3    244              Ferris State
#> 1968    6-3    212                Ohio State
#> 1969    6-1    212            Michigan State
#> 1970    6-2    210           Central Florida
#> 1971    5-6    170                Assumption
#> 1972    6-0    175              West Georgia
#> 1973    6-4    225                     Texas
#> 1974    6-1    195              Northwestern
#> 1975    5-7    168         Northern Illinois
#> 1976    6-4    231                    Oregon
#> 1977   5-11    180        Southern Methodist
#> 1978    6-2    204                 Tennessee
#> 1979    6-0    205              Ferris State
#> 1980    6-5    307                  Nebraska
#> 1981    6-4    308                Vanderbilt
#> 1982    6-4    300                   Florida
#> 1983    6-1    190            Boston College
#> 1984    6-1    177          Western Michigan
#> 1985    6-0    185                Pittsburgh
#> 1986    6-2    193                   Florida
#> 1987   5-10    198                      UCLA
#> 1988    6-1    212                   Samford
#> 1989   5-10    187              Albany, N.Y.
#> 1990    6-2    205                     Miami
#> 1991   5-11    193                Notre Dame
#> 1992    6-2    190         Southern Illinois
#> 1993   5-11    195                   Rutgers
#> 1994    6-1    197                   Alabama
#> 1995    6-3    285               Mississippi
#> 1996    6-4    283                     Miami
#> 1997    6-5    270                 Dartmouth
#> 1998    6-4    342                   Clemson
#> 1999    6-3    268                Pittsburgh
#> 2000    6-5    302       Southern California
#> 2001    6-3    311      North Carolina State
#> 2002    6-3    296               Boise State
#> 2003    6-2    234                     Idaho
#> 2004    6-5    315                    Auburn
#> 2005    6-2    327             Texas-El Paso
#> 2006    6-4    315                 Wisconsin
#> 2007    6-4    317                    Oregon
#> 2008    6-6    314              Fresno State
#> 2009    6-2    202             Florida State
#> 2010    6-2    245               Texas State
#> 2011    6-5    233                Penn State
#> 2012    6-5    250                   Georgia
#> 2013    6-2    255                     Miami
#> 2014    6-3    235                   Georgia
#> 2015    6-4    245                 Minnesota
#> 2016    6-4    250              Old Dominion
#> 2017    6-2    252                California
#> 2018    6-2    237                  Stanford
#> 2019    6-0    223                     Miami
#> 2020    6-1    230            South Carolina
#> 2021    6-5    245                Utah State
#> 2022    6-0    233                   Alabama
#> 2023    6-1    250                      Iowa
#> 2024    6-4    314                Penn State
#> 2025    6-3    318                   Alabama
#> 2026    6-5    258                 Minnesota
#> 2027    6-4    221                  Syracuse
#> 2028    6-5    220                      Duke
#> 2029    6-1    212                     Texas
#> 2030    6-4    230        Alabama-Birmingham
#> 2031    6-4    222              Northwestern
#> 2032    6-4    220            Monmouth, Ill.
#> 2033   5-11    197                No College
#> 2034    5-8    195                Pittsburgh
#> 2035    6-0    210                   Clemson
#> 2036    5-9    192                  Virginia
#> 2037    6-0    230                      Troy
#> 2038    6-3    235                Ohio State
#> 2039   5-11    233                Penn State
#> 2040   5-10    224          Florida Atlantic
#> 2041   5-11    213                  Michigan
#> 2042    6-0    215                Ohio State
#> 2043    6-0    190              Northwestern
#> 2044    6-7    303               Connecticut
#> 2045    6-7    302                      Utah
#> 2046   6-10    302                 Minnesota
#> 2047    6-5    326                   Georgia
#> 2048    6-6    320                  Stanford
#> 2049    6-4    302              Rhode Island
#> 2050    6-8    325                  Colorado
#> 2051    6-3    240               Mississippi
#> 2052    6-5    252                  Stanford
#> 2053    6-7    220              Simon Fraser
#> 2054    6-8    268                  Stanford
#> 2055    6-1    210              Fresno State
#> 2056   5-10    197                Notre Dame
#> 2057    6-3    190                Cincinnati
#> 2058    6-1    180               Chattanooga
#> 2059    6-2    215                Ohio State
#> 2060    6-1    190                    Auburn
#> 2061    6-0    190               Wake Forest
#> 2062    6-3    210             West Virginia
#> 2063    6-1    195                Washington
#> 2064    6-3    205               Mississippi
#> 2065   5-10    201                  Oklahoma
#> 2066   5-11    185                    Baylor
#> 2067    6-4    306                  Missouri
#> 2068    6-4    310                    Hawaii
#> 2069    6-5    305                Holy Cross
#> 2070    6-1    195                     Akron
#> 2071   5-10    211                   Florida
#> 2072   5-11    196                  Washburn
#> 2073   5-10    190                   Memphis
#> 2074    6-1    198                   Rutgers
#> 2075   5-11    209                Notre Dame
#> 2076    6-1    190                 Air Force
#> 2077    6-1    201                  Virginia
#> 2078    6-0    207                   Florida
#> 2079   5-10    190                      Utah
#> 2080    6-3    215                  Nebraska
#> 2081    6-0    192                Notre Dame
#> 2082    6-1    207                   Rutgers
#> 2083   5-11    193             Northern Iowa
#> 2084    6-4    277                 Tennessee
#> 2085    6-4    288         Stephen F. Austin
#> 2086    6-3    264                   Florida
#> 2087    6-3    255                   Memphis
#> 2088    6-6    301                  Stanford
#> 2089    6-4    318               Connecticut
#> 2090    6-1    310          Florida Atlantic
#> 2091    6-1    295                    Tulane
#> 2092    6-4    315           Fort Hays State
#> 2093    6-2    298              Oregon State
#> 2094    6-3    303                Ohio State
#> 2095    6-3    305              Pennsylvania
#> 2096   5-11    195        West Texas A&amp;M
#> 2097   5-11    187                  Illinois
#> 2098    6-1    192                Penn State
#> 2099    6-2    235                   Georgia
#> 2100    6-5    231              Ferris State
#> 2101    6-0    230                  Delaware
#> 2102    6-0    227            Portland State
#> 2103    6-2    250                   Alabama
#> 2104    6-2    234                  Marshall
#> 2105    6-1    235                 Minnesota
#> 2106    6-4    266                      Ohio
#> 2107    6-1    235                   Citadel
#> 2108    6-3    259                   Georgia
#> 2109    6-3    235          Washington State
#> 2110    6-2    252             Brigham Young
#> 2111    6-1    237                    Baylor
#> 2112    6-4    250                    Temple
#> 2113    6-2    246                      Duke
#> 2114    6-3    303                   Alabama
#> 2115   5-11    190             Texas A&amp;M
#> 2116    6-2    214                      Troy
#> 2117    6-1    219            San Jose State
#> 2118    6-4    225          Western Kentucky
#> 2119    6-6    245                  Delaware
#> 2120    6-4    213     Florida International
#> 2121    6-3    225       Southern California
#> 2122   5-10    210                  Maryland
#> 2123   5-10    190            Monmouth, N.J.
#> 2124   5-11    220                   Florida
#> 2125   5-10    212         Appalachian State
#> 2126    5-9    212                     Miami
#> 2127    6-2    225                Notre Dame
#> 2128   5-11    199              Florida Tech
#> 2129    6-1    200                California
#> 2130    6-1    215                    Kansas
#> 2131    6-5    294  North Carolina-Charlotte
#> 2132    6-6    305                  Nebraska
#> 2133    6-8    305                      UCLA
#> 2134    6-5    322          Western Kentucky
#> 2135    6-7    355                Louisville
#> 2136    6-3    308       Southern California
#> 2137    6-6    248                Penn State
#> 2138    6-4    252                     Miami
#> 2139    6-3    267             West Virginia
#> 2140    6-8    260               Stony Brook
#> 2141    6-6    255               Connecticut
#> 2142    5-9    177                      Duke
#> 2143    5-9    190                     Miami
#> 2144    6-3    205                 Tennessee
#> 2145    6-1    201               Austin Peay
#> 2146    6-2    206           Texas Christian
#> 2147    6-1    195            Boston College
#> 2148    6-3    208                    Baylor
#> 2149    6-5    210          New Mexico State
#> 2150    6-5    220                   Georgia
#> 2151    6-1    210            Monmouth, N.J.
#> 2152    6-3    202                 Limestone
#> 2153    6-5    247             James Madison
#> 2154    6-2    215           Central Florida
#> 2155    6-4    295          Western Michigan
#> 2156    6-3    295                Cincinnati
#> 2157    6-4    315                   Alabama
#> 2158    6-0    190         Mississippi State
#> 2159    6-0    185       Southern California
#> 2160    5-8    178       Southern California
#> 2161   5-10    190          Florida Atlantic
#> 2162   5-10    195         Southern Illinois
#> 2163    5-9    184                Pittsburgh
#> 2164    6-2    201       Louisiana-Lafayette
#> 2165   5-11    181                  Michigan
#> 2166   5-10    195                  Virginia
#> 2167   5-11    175                    Kansas
#> 2168    6-0    205                      Army
#> 2169   5-11    208                   Clemson
#> 2170   5-10    190                    Baylor
#> 2171   5-11    200                    Baylor
#> 2172    6-5    253             Florida State
#> 2173    6-2    265                  Michigan
#> 2174    6-3    279                  Marshall
#> 2175    6-7    275                Iowa State
#> 2176    6-3    259          Central Michigan
#> 2177    6-3    259                 Tennessee
#> 2178    6-4    303            Michigan State
#> 2179    6-4    310         Mississippi State
#> 2180    6-2    305      South Carolina State
#> 2181    6-3    305                     Texas
#> 2182    6-5    290                 Tennessee
#> 2183    6-0    299      North Carolina State
#> 2184    6-2    304                    Toledo
#> 2185    6-4    303              Oregon State
#> 2186    6-5    335                 Miami, O.
#> 2187    6-4    334                  Stanford
#> 2188    6-4    340                Louisville
#> 2189    6-7    332           Texas Christian
#> 2190    6-4    305               Weber State
#> 2191    5-9    167                   Memphis
#> 2192    6-0    250                   Memphis
#> 2193    6-1    240                 Wisconsin
#> 2194    6-1    230                    Temple
#> 2195   5-11    221                     Akron
#> 2196    6-1    230           Louisiana State
#> 2197    6-1    220          Florida Atlantic
#> 2198    6-2    242             Montana State
#> 2199    6-2    225                  Colorado
#> 2200    6-2    230                  Nebraska
#> 2201    6-2    235            Michigan State
#> 2202    6-2    249              Old Dominion
#> 2203   5-11    194                Ohio State
#> 2204    6-2    212                    Auburn
#> 2205    6-6    227                   Indiana
#> 2206    6-2    218                  Oklahoma
#> 2207    6-5    237        North Dakota State
#> 2208   5-10    202                   Wyoming
#> 2209    6-0    224                   Indiana
#> 2210   5-10    215                   Georgia
#> 2211   5-11    211                Penn State
#> 2212    5-8    164           Central Florida
#> 2213    5-6    203            Louisiana Tech
#> 2214   5-10    220                 Wisconsin
#> 2215    5-9    193          New Mexico State
#> 2216    6-0    191                   Wyoming
#> 2217    6-0    204                    Auburn
#> 2218    6-0    191           Louisiana State
#> 2219   5-10    185                    Auburn
#> 2220    6-6    317                  Oklahoma
#> 2221    6-8    344                No College
#> 2222    6-6    291                      Army
#> 2223    6-5    296                    Auburn
#> 2224    6-5    315          Washington State
#> 2225    6-4    328                  Arkansas
#> 2226    6-5    250                  Stanford
#> 2227    6-3    223                Washington
#> 2228    6-7    249                   Buffalo
#> 2229    6-5    246                 Tennessee
#> 2230    6-5    256        South Dakota State
#> 2231    6-4    240                      UCLA
#> 2232    6-5    227                Iowa State
#> 2233    6-4    257                California
#> 2234    5-9    179                     Texas
#> 2235   5-11    190                   Houston
#> 2236    6-0    186       Southern California
#> 2237    6-2    215              Old Dominion
#> 2238   5-11    195           Texas Christian
#> 2239    5-8    191          Louisiana-Monroe
#> 2240    6-2    190      Southern Mississippi
#> 2241    6-2    225                  Stanford
#> 2242    6-3    218            South Carolina
#> 2243   5-10    175                California
#> 2244    6-2    172               Boise State
#> 2245    6-4    304                   Florida
#> 2246    6-2    295                   Alabama
#> 2247    6-2    192            Michigan State
#> 2248   5-11    191                Penn State
#> 2249   5-11    188                 Tennessee
#> 2250   5-11    195                   Florida
#> 2251    5-9    184               Mississippi
#> 2252    6-2    185          Florida Atlantic
#> 2253    6-2    217            Valdosta State
#> 2254   5-11    194              Oregon State
#> 2255   5-11    215                  Maryland
#> 2256    6-1    202                  Maryland
#> 2257    6-2    215                Penn State
#> 2258    6-5    300                  Michigan
#> 2259    6-4    245                      UCLA
#> 2260    6-4    280                    Oregon
#> 2261    6-3    295                   Alabama
#> 2262    6-3    304                California
#> 2263    6-6    303                Notre Dame
#> 2264    6-9    310                  Kentucky
#> 2265    6-5    295                Ohio State
#> 2266    6-2    320                  Nebraska
#> 2267    6-3    302             Florida State
#> 2268    6-2    234                 Wisconsin
#> 2269    6-4    321       Louisiana-Lafayette
#> 2270    6-3    306                     Miami
#> 2271    6-5    316                  Stanford
#> 2272    6-2    185                      Rice
#> 2273    6-1    248                    Toledo
#> 2274    6-1    229          Western Michigan
#> 2275    6-1    233             Florida State
#> 2276    6-4    269                  Kentucky
#> 2277    6-0    227                   Indiana
#> 2278   5-11    233                  Michigan
#> 2279    6-4    252                 Wisconsin
#> 2280    6-1    246                  Kentucky
#> 2281    6-1    228                  Duquesne
#> 2282    6-4    242  North Carolina-Charlotte
#> 2283    6-0    230                     Akron
#> 2284    6-3    240                    Toledo
#> 2285    6-4    245            Portland State
#> 2286    6-5    195          Eastern Kentucky
#> 2287    6-2    210             South Alabama
#> 2288    6-3    216                 Tennessee
#> 2289    6-5    240                 Miami, O.
#> 2290    6-5    235            Oklahoma State
#> 2291    6-4    230                Ohio State
#> 2292    6-0    225      North Carolina State
#> 2293    5-9    198                  Maryland
#> 2294   5-10    223                  Kentucky
#> 2295    6-2    223                  Maryland
#> 2296   5-10    208             West Virginia
#> 2297    6-1    233                Pittsburgh
#> 2298   5-11    200                    Towson
#> 2299    6-1    217             Virginia Tech
#> 2300    6-0    201           Louisiana State
#> 2301    6-1    207                   Alabama
#> 2302    6-4    292           Texas Christian
#> 2303    6-8    358       Southern California
#> 2304    6-4    297                   Fordham
#> 2305    6-6    305           Louisiana State
#> 2306    6-6    320                Notre Dame
#> 2307    6-6    330                Bloomsburg
#> 2308    6-6    320          Western Michigan
#> 2309    6-9    320                      Army
#> 2310    6-5    300          Florida Atlantic
#> 2311    6-7    310                    Tulane
#> 2312    6-4    253            North Carolina
#> 2313    6-4    267                      Rice
#> 2314    6-4    250          Youngstown State
#> 2315    6-8    265                  Michigan
#> 2316    6-4    245                Utah State
#> 2317    6-4    255                    Tulane
#> 2318    6-4    227                Notre Dame
#> 2319   5-10    181                    Toledo
#> 2320    6-2    210                   Buffalo
#> 2321   5-11    213            Oklahoma State
#> 2322    6-3    210            Michigan State
#> 2323    5-9    190                   Clemson
#> 2324    6-1    215       Southern California
#> 2325    6-6    320           Louisiana State
#> 2326    6-3    305            Oklahoma State
#> 2327    6-2    207                   Georgia
#> 2328    6-3    200         Southern Illinois
#> 2329    6-0    198           Central Florida
#> 2330    6-2    202                   Florida
#> 2331    6-2    190                Washington
#> 2332    6-2    210                    Auburn
#> 2333    6-3    203            Oklahoma State
#> 2334    6-2    195                      Utah
#> 2335    6-1    200               Stony Brook
#> 2336    5-9    197                     Texas
#> 2337    5-9    201                    Oregon
#> 2338    5-9    188              Kansas State
#> 2339   5-11    196             Arizona State
#> 2340    6-0    193                Cincinnati
#> 2341    6-3    253                 Tennessee
#> 2342    6-4    260                  Syracuse
#> 2343    6-4    295                Texas Tech
#> 2344    6-3    296                   Florida
#> 2345    6-4    279       Southern California
#> 2346    6-6    285                   Florida
#> 2347    6-2    291           Texas Christian
#> 2348    6-3    265                     Idaho
#> 2349    6-4    260             Texas A&amp;M
#> 2350    6-3    295                      Iowa
#> 2351    6-3    306                   Alabama
#> 2352    6-1    250          Central Michigan
#> 2353    6-5    331                     Idaho
#> 2354    6-3    332           Louisiana State
#> 2355    6-2    323                   Alabama
#> 2356    6-4    322               Wake Forest
#> 2357    6-5    320                    Baylor
#> 2358    6-4    339       Southern California
#> 2359    6-8    310                Ohio State
#> 2360   5-10    190                    Marist
#> 2361    6-0    230                Washington
#> 2362    6-1    245                Texas Tech
#> 2363    6-2    237                      Utah
#> 2364    6-0    229           Central Florida
#> 2365    6-3    220                     Miami
#> 2366    6-3    245                   Georgia
#> 2367    6-0    242                Utah State
#> 2368    6-3    252                   Alabama
#> 2369    6-3    250             West Virginia
#> 2370    6-4    246         Mississippi State
#> 2371    6-3    253                   Harvard
#> 2372    6-3    366                  Michigan
#> 2373   5-11    310                     Texas
#> 2374    6-2    208                     Texas
#> 2375    6-3    214     Florida International
#> 2376    6-3    221             West Virginia
#> 2377    6-3    220           Louisiana State
#> 2378   5-11    215                 Wisconsin
#> 2379    6-1    235                   Alabama
#> 2380   5-11    220           San Diego State
#> 2381   5-10    210                  Arkansas
#> 2382    6-0    229                Ohio State
#> 2383   5-10    205                   Houston
#> 2384   5-10    214                     Miami
#> 2385   5-10    202                     Miami
#> 2386   5-11    222            Oklahoma State
#> 2387    6-1    213           Louisiana State
#> 2388    6-1    216                  Michigan
#> 2389    6-4    293                Ohio State
#> 2390    6-7    310       Southern California
#> 2391    6-5    310             Texas A&amp;M
#> 2392    6-4    315             Virginia Tech
#> 2393    6-5    320         Mississippi State
#> 2394    6-5    324            South Carolina
#> 2395    6-4    306           Central Florida
#> 2396    6-5    255                     Miami
#> 2397    6-4    248                  Maryland
#> 2398    6-5    254                      Rice
#> 2399    6-7    251                  Stanford
#> 2400    6-4    267                Washington
#> 2401    6-4    245                   Wyoming
#> 2402   5-10    182              Kansas State
#> 2403    5-9    182                    Hawaii
#> 2404   5-11    188                Washington
#> 2405    6-0    199                   Florida
#> 2406    5-8    180             Georgia State
#> 2407    6-0    180            Texas Southern
#> 2408    6-0    201          Western Illinois
#> 2409    6-0    215              East Central
#> 2410    6-4    230               Mississippi
#> 2411   5-10    192                     Miami
#> 2412    6-2    205                    Toledo
#> 2413    6-3    225                    Baylor
#> 2414    6-4    301        Eastern Washington
#> 2415    6-5    308                 Air Force
#> 2416    6-4    290            Colorado State
#> 2417    6-4    299                      UCLA
#> 2418    6-5    318                  Nebraska
#> 2419    6-3    301                    Oregon
#> 2420    6-2    197                  Virginia
#> 2421    6-3    195                  Stanford
#> 2422    6-2    195                  Colorado
#> 2423   5-11    184                 Tennessee
#> 2424   5-11    202               Mississippi
#> 2425   5-11    192               Boise State
#> 2426    5-9    183                Pittsburgh
#> 2427   5-10    188           Texas Christian
#> 2428    6-3    205             Virginia Tech
#> 2429    6-2    200      North Carolina State
#> 2430    6-0    205                   Alabama
#> 2431    6-4    224               Connecticut
#> 2432    6-2    200      Southern Mississippi
#> 2433    5-9    193                 Minnesota
#> 2434   5-11    193         Northern Illinois
#> 2435    6-4    270              Kansas State
#> 2436    6-7    292                    Oregon
#> 2437    6-2    287      North Carolina State
#> 2438    6-2    280                  Stanford
#> 2439    6-5    275             Brigham Young
#> 2440    6-2    250           San Diego State
#> 2441    6-4    266                Ohio State
#> 2442    6-6    275                    Oregon
#> 2443    6-4    270         Appalachian State
#> 2444    6-2    270                Texas Tech
#> 2445    6-2    252                    Auburn
#> 2446    6-5    265             Texas A&amp;M
#> 2447    6-4    325               Mississippi
#> 2448    6-6    310            South Carolina
#> 2449    6-4    325                  Nebraska
#> 2450    6-0    321               Mississippi
#> 2451    6-1    285                Penn State
#> 2452    6-1    240                   Harvard
#> 2453    6-3    312                      Duke
#> 2454    6-5    310                      Utah
#> 2455    6-5    260           San Diego State
#> 2456    6-3    306                     Akron
#> 2457    6-0    190                Penn State
#> 2458    6-3    239                   Wyoming
#> 2459    6-3    239                    Oregon
#> 2460    6-3    236             Brigham Young
#> 2461    6-4    250             Indiana State
#> 2462    6-2    236                    Oregon
#> 2463    6-2    228          Florida Atlantic
#> 2464    6-0    225                  Arkansas
#> 2465    6-4    245            Michigan State
#> 2466    6-2    240          New Mexico State
#> 2467    6-2    206             Texas A&amp;M
#> 2468    6-2    220                      Utah
#> 2469    6-3    219                 San Diego
#> 2470    6-1    210      Southern Mississippi
#> 2471    6-2    225          Eastern Illinois
#> 2472    6-4    226                      UCLA
#> 2473    6-2    215                      Iowa
#> 2474    6-1    225              Fresno State
#> 2475    5-9    205          Georgia Southern
#> 2476    6-0    220                  Stanford
#> 2477    6-0    194               North Texas
#> 2478   5-10    197                    Purdue
#> 2479    5-8    202                      Rice
#> 2480    6-1    210                   Indiana
#> 2481    5-9    205                    Baylor
#> 2482    6-0    208                   Florida
#> 2483    6-2    209                   Arizona
#> 2484    6-2    215                     Idaho
#> 2485    6-1    215                   Samford
#> 2486    6-0    205             Brigham Young
#> 2487    6-1    211     Florida International
#> 2488    6-5    320                  Oklahoma
#> 2489    6-9    278             Brigham Young
#> 2490    6-6    318                Vanderbilt
#> 2491    6-8    315                Notre Dame
#> 2492    6-5    310                    Auburn
#> 2493    6-6    296                  Syracuse
#> 2494    6-6    313              South Dakota
#> 2495    6-7    324             West Virginia
#> 2496    6-5    290    British Columbia, Can.
#> 2497    6-4    248                      Duke
#> 2498    6-5    240                 San Diego
#> 2499    6-4    249                  Arkansas
#> 2500    6-2    242                   Florida
#> 2501    6-5    245                   Georgia
#> 2502    6-4    250                      Iowa
#> 2503    5-8    181            Louisiana Tech
#> 2504    6-4    227                    Baylor
#> 2505    6-5    218                   Arizona
#> 2506    6-1    203        Eastern Washington
#> 2507    6-3    215                Vanderbilt
#> 2508   5-11    214            South Carolina
#> 2509    6-3    214                 Tennessee
#> 2510   5-10    200                 McKendree
#> 2511   5-10    175                     Miami
#> 2512    6-3    216             West Virginia
#> 2513   5-10    175            North Carolina
#> 2514    5-9    185          Middle Tennessee
#> 2515    6-0    200          Washington State
#> 2516    6-1    206             Arizona State
#> 2517    6-0    175                   Florida
#> 2518    6-1    307                Penn State
#> 2519    6-4    319     Colorado State-Pueblo
#> 2520    6-0    195          Central Michigan
#> 2521   5-11    190    North Carolina Central
#> 2522    6-0    191             South Florida
#> 2523    6-1    206                    Auburn
#> 2524    6-1    206                    Auburn
#> 2525    6-0    191                      Duke
#> 2526    6-0    215                      Ohio
#> 2527    6-2    190          Florida Atlantic
#> 2528   5-10    200                  Kentucky
#> 2529    5-9    205                 Minnesota
#> 2530    6-4    270          Eastern Michigan
#> 2531    6-3    290                Washington
#> 2532    6-4    313                  Nebraska
#> 2533    6-5    275             South Florida
#> 2534    6-4    253              Prairie View
#> 2535    6-6    281            Michigan State
#> 2536    6-3    295                  Arkansas
#> 2537    6-2    300            South Carolina
#> 2538    6-2    315                  Nebraska
#> 2539    6-2    307      Southern Mississippi
#> 2540   5-10    204                 Wisconsin
#> 2541    6-5    318               Boise State
#> 2542    6-3    312             James Madison
#> 2543    6-4    307                    Hobart
#> 2544    6-4    310                      Rice
#> 2545    6-3    300             James Madison
#> 2546    6-3    323      North Carolina State
#> 2547    6-6    305            Humboldt State
#> 2548    6-2    218            South Carolina
#> 2549    6-2    238                 Wisconsin
#> 2550    6-0    246           Louisiana State
#> 2551    6-1    211          Washington State
#> 2552    6-7    272                      Iowa
#> 2553    6-2    250            Colorado State
#> 2554    6-3    240                    Wagner
#> 2555    6-0    237           Louisiana State
#> 2556    6-1    233                  Nebraska
#> 2557    6-1    240             Florida State
#> 2558    6-2    245                Assumption
#> 2559    6-3    310                      Troy
#> 2560    6-4    347                Washington
#> 2561    6-5    240                   Clemson
#> 2562    6-0    209            Colorado State
#> 2563    6-2    225                  Michigan
#> 2564    6-5    210                    Tulane
#> 2565    6-3    226            Michigan State
#> 2566    6-4    235                  Missouri
#> 2567    6-4    225                  Michigan
#> 2568   5-11    208       Southern California
#> 2569   5-11    210                Pittsburgh
#> 2570   5-10    215                Vanderbilt
#> 2571    6-0    205       Southern California
#> 2572    6-0    228           Louisiana State
#> 2573    5-9    195                    Oregon
#> 2574    6-1    225                Notre Dame
#> 2575   5-11    195            North Carolina
#> 2576   5-10    198                Pittsburgh
#> 2577   5-11    202               Connecticut
#> 2578    6-0    199             Texas A&amp;M
#> 2579    6-6    338                Penn State
#> 2580    6-6    306             James Madison
#> 2581    6-9    330                 Villanova
#> 2582    6-5    322                      Iowa
#> 2583    6-6    298        North Dakota State
#> 2584    6-6    250                   Alabama
#> 2585    6-5    239         Southern Arkansas
#> 2586    6-6    256               Laval, Can.
#> 2587    6-5    245                   Harvard
#> 2588    6-6    265                   Arizona
#> 2589    6-6    258     Southeastern Oklahoma
#> 2590   5-11    170                Washington
#> 2591    5-9    183           Louisiana State
#> 2592    6-1    209                Penn State
#> 2593    6-4    205        Jacksonville State
#> 2594   5-10    185          Central Michigan
#> 2595    6-0    186          Florida Atlantic
#> 2596    6-4    211             Montana State
#> 2597    6-2    205                 Minnesota
#> 2598    6-5    231             Texas A&amp;M
#> 2599   5-11    174             Bowling Green
#> 2600    6-3    215              Pennsylvania
#> 2601    6-3    308                   Georgia
#> 2602    6-1    305                  Colorado
#> 2603    6-3    270               Texas State
#> 2604    6-0    203                  Nebraska
#> 2605   5-10    201                      Iowa
#> 2606    6-0    189                      Duke
#> 2607   5-11    190              West Alabama
#> 2608    6-0    200           Louisiana State
#> 2609    6-0    186                  Marshall
#> 2610   5-11    190              Georgia Tech
#> 2611    6-0    195                    Towson
#> 2612   5-11    195               Chattanooga
#> 2613   5-11    185       Southern California
#> 2614   5-11    210                      Iowa
#> 2615    6-0    194                   Georgia
#> 2616   5-11    212          Middle Tennessee
#> 2617    6-5    255            South Carolina
#> 2618    6-3    255            Boston College
#> 2619    6-3    251                      Utah
#> 2620    6-4    300         Mississippi State
#> 2621    6-3    290     Florida International
#> 2622    6-1    340             Texas A&amp;M
#> 2623    6-5    280                    Temple
#> 2624    6-5    288                Penn State
#> 2625    6-3    291      North Carolina State
#> 2626    6-5    290                      UCLA
#> 2627    6-0    233                Vanderbilt
#> 2628    6-5    325                   Indiana
#> 2629    6-5    310            San Jose State
#> 2630    6-3    316  North Carolina-Charlotte
#> 2631    6-4    308             Arizona State
#> 2632   5-10    182                California
#> 2633    6-2    215                  Missouri
#> 2634    5-8    205                 Miami, O.
#> 2635    6-1    215                   Memphis
#> 2636    6-3    250         Sam Houston State
#> 2637    6-1    240                  Cal Poly
#> 2638    6-1    235                  Nebraska
#> 2639    6-2    250            Boston College
#> 2640   5-11    225                    Auburn
#> 2641    6-5    259                   Georgia
#> 2642    6-3    246                    Toledo
#> 2643    6-2    234                   Alabama
#> 2644    6-3    254                   Arizona
#> 2645    6-0    226                      UCLA
#> 2646   5-11    224             West Virginia
#> 2647    6-3    245             Azusa Pacific
#> 2648    6-4    260                  Missouri
#> 2649    6-1    243        Western Washington
#> 2650    6-4    322                Penn State
#> 2651    6-2    320                   Wofford
#> 2652    6-2    214                    Toledo
#> 2653    6-1    231                 Tennessee
#> 2654    6-4    207             Texas A&amp;M
#> 2655    6-4    233                Notre Dame
#> 2656    6-1    213                    Toledo
#> 2657   5-11    200         Appalachian State
#> 2658    5-9    205               Boise State
#> 2659    6-3    247                   Alabama
#> 2660    6-1    233                     Texas
#> 2661    6-0    210                Louisville
#> 2662    6-0    214                     Texas
#> 2663    6-1    209                   Arizona
#> 2664    6-7    330                   Georgia
#> 2665    6-7    309                  Michigan
#> 2666    6-4    328           Texas Christian
#> 2667    6-7    310            Valdosta State
#> 2668    6-8    321                    Purdue
#> 2669    6-5    315                  Missouri
#> 2670    6-5    315            Colorado State
#> 2671    6-8    314           Texas Christian
#> 2672    6-2    243         Southern Illinois
#> 2673    6-3    261                      Iowa
#> 2674    6-4    260                     Texas
#> 2675    6-2    246                   Harvard
#> 2676    6-4    255                Vanderbilt
#> 2677    6-3    248     Florida International
#> 2678    6-5    255             Arizona State
#> 2679    6-3    209          Western Michigan
#> 2680    5-9    175                Texas Tech
#> 2681    5-9    175             James Madison
#> 2682    6-0    184                 Grambling
#> 2683    6-0    226               Mississippi
#> 2684    6-1    207                     Texas
#> 2685    6-3    215                   Indiana
#> 2686   5-11    195                   Clemson
#> 2687    5-8    182                Holy Cross
#> 2688    6-4    209                  Arkansas
#> 2689    6-4    312                   Wyoming
#> 2690    6-3    310           San Diego State
#> 2691   5-11    193             Florida State
#> 2692    6-0    204                      UCLA
#> 2693    6-0    191                  Oklahoma
#> 2694    6-0    181             Virginia Tech
#> 2695    6-3    197       Louisiana-Lafayette
#> 2696   5-11    188          Nevada-Las Vegas
#> 2697    5-9    190               Southern U.
#> 2698   5-11    182             James Madison
#> 2699   5-11    198             Virginia Tech
#> 2700    6-2    203                  Arkansas
#> 2701    6-0    200        South Dakota State
#> 2702   5-11    205             South Alabama
#> 2703    6-1    206                Penn State
#> 2704   5-11    200                Notre Dame
#> 2705    6-2    253                   Alabama
#> 2706    6-3    265      North Carolina State
#> 2707    6-6    262         Mississippi State
#> 2708    6-4    247                  Stanford
#> 2709    6-3    279                    Kansas
#> 2710    6-7    280                  Marshall
#> 2711    6-5    265                Ohio State
#> 2712    6-2    307                   Florida
#> 2713    6-4    265                    Purdue
#> 2714    6-5    256                    Oregon
#> 2715    6-3    310                    Temple
#> 2716    6-4    292                No College
#> 2717    6-3    320                   Alabama
#> 2718    6-3    308             Virginia Tech
#> 2719    6-2    294                    Auburn
#> 2720    6-3    300                   Alabama
#> 2721    6-3    305            Illinois State
#> 2722    6-5    314            San Jose State
#> 2723    6-3    316                   Indiana
#> 2724    6-5    315                      Iowa
#> 2725    6-5    305                  Stanford
#> 2726    6-2    203             Florida State
#> 2727    6-3    210                  Marshall
#> 2728    6-1    245                   Florida
#> 2729    6-4    245                Louisville
#> 2730    6-1    238                      Utah
#> 2731    6-1    228                   Alabama
#> 2732    6-3    235                California
#> 2733    6-0    220                  Michigan
#> 2734    6-0    224            Oklahoma State
#> 2735    6-1    240            North Carolina
#> 2736   5-11    240                California
#> 2737    6-1    235                   Georgia
#> 2738    6-0    230            Boston College
#> 2739    6-1    256                California
#> 2740    6-1    220                  Oklahoma
#> 2741    6-1    210              Old Dominion
#> 2742    6-3    211                   Houston
#> 2743    6-5    230                  Colorado
#> 2744    6-4    213                      Utah
#> 2745   5-10    220                     Miami
#> 2746    5-9    205                  Stanford
#> 2747   5-10    195            Arkansas State
#> 2748    6-0    217                  Arkansas
#> 2749   5-11    225                    Auburn
#> 2750    6-2    221                   Memphis
#> 2751    6-0    218                   Alabama
#> 2752    6-0    203             Texas A&amp;M
#> 2753    6-7    311             Florida State
#> 2754    6-6    315                Louisville
#> 2755    6-4    295           Louisiana State
#> 2756    6-8    321                    Purdue
#> 2757    6-6    330                   Florida
#> 2758    6-6    330                  Virginia
#> 2759    6-8    328              Kansas State
#> 2760    6-6    315               Stony Brook
#> 2761    6-4    245                Ohio State
#> 2762    6-3    249           Louisiana State
#> 2763    6-5    255                  Arkansas
#> 2764    6-6    250             Virginia Tech
#> 2765    6-3    226                Texas Tech
#> 2766    6-5    245      South Carolina State
#> 2767    6-4    254                     Texas
#> 2768    6-4    220                   Liberty
#> 2769    6-3    221                California
#> 2770    6-0    210                Ohio State
#> 2771    6-5    214                   Alabama
#> 2772    6-1    195                  Colorado
#> 2773    6-2    213      North Carolina State
#> 2774    6-3    195                  Missouri
#> 2775    6-3    205                  Virginia
#> 2776    6-2    194                   Alabama
#> 2777    6-2    220                    Temple
#> 2778   5-10    176                    Kansas
#> 2779   5-11    182                  Oklahoma
#> 2780    6-1    188                California
#> 2781    6-2    305           Tennessee State
#> 2782    6-1    293                    Temple
#> 2783    6-2    300       Southern California
#> 2784    6-3    299            Portland State
#> 2785    6-6    315                  Missouri
#> 2786    6-3    290                    Auburn
#> 2787    6-3    295                       USC
#> 2788    6-3    317                  Kentucky
#> 2789    6-2    291        South Dakota State
#> 2790    6-3    293          Youngstown State
#> 2791    6-3    300                  Delaware
#> 2792    6-4    315      Wisconsin-Whitewater
#> 2793    6-3    291                 Tennessee
#> 2794    6-4    301                       USC
#> 2795    6-4    300            South Carolina
#> 2796    6-5    308          Washington State
#> 2797    6-2    225                Vanderbilt
#> 2798    6-3    297                     Tulsa
#> 2799    6-4    310                Notre Dame
#> 2800    6-5    309                Vanderbilt
#> 2801    6-0    224                      None
#> 2802    6-5    304                  Arkansas
#> 2803    6-1    314                      None
#> 2804    6-1    294                    Purdue
#> 2805    6-3    290         Mississippi State
#> 2806    6-3    318                      None
#> 2807    6-1    292                Cincinnati
#> 2808    6-3    300          Western Michigan
#> 2809    6-4    307                      Iowa
#> 2810    6-3    345              Indiana (PA)
#> 2811    6-4    306        North Dakota State
#> 2812    6-3    318                California
#> 2813    6-4    280                      None
#> 2814    6-2    290         Appalachian State
#> 2815    6-0    290                       BYU
#> 2816    6-0    292                 Texas A&M
#> 2817    6-6    300                  Virginia
#> 2818    6-2    303                   Buffalo
#> 2819    6-4    290                      None
#> 2820    6-5    305                    Oregon
#> 2821    6-0    194             Florida State
#> 2822    6-0    195          New Mexico State
#> 2823   5-10    180                      Utah
#> 2824    6-2    197                   Rutgers
#> 2825   5-11    190          Western Kentucky
#> 2826   5-11    199      Southern Mississippi
#> 2827   5-10    199           Central Florida
#> 2828    6-1    205      North Carolina State
#> 2829    6-2    188               Mississippi
#> 2830   5-10    175                 Minnesota
#> 2831    6-2    208                 Wisconsin
#> 2832   5-11    201                 Villanova
#> 2833   5-11    187                   Clemson
#> 2834   5-10    190           San Diego State
#> 2835   5-11    207                  Illinois
#> 2836    5-9    198             Texas-El Paso
#> 2837    5-9    170         Appalachian State
#> 2838    6-0    196                  Stanford
#> 2839    6-3    192                    Furman
#> 2840    6-1    200                    Kansas
#> 2841   5-10    173          Western Michigan
#> 2842   5-10    186               Chattanooga
#> 2843    6-0    192            Valdosta State
#> 2844   5-11    170                      None
#> 2845   5-10    185         Southeastern (FL)
#> 2846    6-2    212            Portland State
#> 2847    6-0    197              Florida Intl
#> 2848   5-11    205            Portland State
#> 2849   5-11    188                      None
#> 2850   5-10    185              Shippensburg
#> 2851    6-0    183                    Tulane
#> 2852    6-0    198                Washington
#> 2853    6-2    192            Michigan State
#> 2854   5-11    172                     Akron
#> 2855   5-10    191               Boise State
#> 2856    6-1    200                  Delaware
#> 2857   5-10    183                  Oklahoma
#> 2858    6-1    188                  Michigan
#> 2859   5-11    182             Northern Iowa
#> 2860    6-1    175                         -
#> 2861   5-11    209                  Arkansas
#> 2862   5-11    187            Louisiana Tech
#> 2863    6-1    195                Penn State
#> 2864    6-0    195        Southern Methodist
#> 2865   5-11    196        North Dakota State
#> 2866    6-0    185        Jacksonville State
#> 2867   5-11    192           Louisiana State
#> 2868    6-0    205             West Virginia
#> 2869    6-0    199                 Limestone
#> 2870   5-11    190                      None
#> 2871    6-1    198                   Clemson
#> 2872   5-11    189     Florida International
#> 2873   5-11    197                    Auburn
#> 2874   5-11    190                  Arkansas
#> 2875    6-2    204                      None
#> 2876    6-0    190             East Carolina
#> 2877   5-10    197              Kansas State
#> 2878   5-11    189        North Dakota State
#> 2879   5-11    191            San Jose State
#> 2880    6-2    206              Oregon State
#> 2881    6-2    205                     Texas
#> 2882    6-1    188          Youngstown State
#> 2883   5-10    202        Southern Methodist
#> 2884    6-0    174                    Toledo
#> 2885    6-0    192         Mississippi State
#> 2886    6-0    193                  Marshall
#> 2887    6-5    240                      None
#> 2888    6-1    180          Youngstown State
#> 2889   5-10    200                 Minnesota
#> 2890   5-11    194              Georgia Tech
#> 2891    6-1    184                   Houston
#> 2892    6-0    196            Oklahoma State
#> 2893    6-1    183           Central Florida
#> 2894   5-11    185             Florida State
#> 2895   5-11    191         Mississippi State
#> 2896    6-0    205                   Rutgers
#> 2897    6-0    205          Middle Tennessee
#> 2898   5-11    194               Boise State
#> 2899    6-2    185                Miami (FL)
#> 2900   5-11    190        William &amp; Mary
#> 2901   5-11    197                    Baylor
#> 2902   5-10    173                   Georgia
#> 2903    5-9    187                Iowa State
#> 2904   5-11    192             South Florida
#> 2905   5-10    187                Louisville
#> 2906    5-9    182                      None
#> 2907   5-10    200                Ohio State
#> 2908   5-10    195                  Maryland
#> 2909    6-0    198                  Marshall
#> 2910   5-10    194                Iowa State
#> 2911    6-0    186            Oklahoma State
#> 2912    5-9    170                      None
#> 2913   5-11    184       Southern California
#> 2914    6-0    185          Coastal Carolina
#> 2915    6-1    205            Calgary-Canada
#> 2916   5-11    178             Southern Utah
#> 2917    6-1    209                    Kansas
#> 2918    6-1    198                       BYU
#> 2919   5-10    180             West Virginia
#> 2920    6-1    203           Louisiana State
#> 2921    6-1    204            San Jose State
#> 2922   5-10    190                  Delaware
#> 2923   5-10    188            Oklahoma State
#> 2924   5-11    200               Texas State
#> 2925    6-2    200             St. Francis U
#> 2926    5-9    195            South Carolina
#> 2927    5-9    179                   Indiana
#> 2928    6-0    180                      None
#> 2929    6-0    190                    Auburn
#> 2930   5-11    175                 Texas A&M
#> 2931    6-2    210             Emporia State
#> 2932    6-3    197                  Kentucky
#> 2933    5-9    180                      None
#> 2934    6-0    182              SE Louisiana
#> 2935   5-10    200                   Alabama
#> 2936    6-0    195            San Jose State
#> 2937    5-9    175             Arizona State
#> 2938   5-10    176                  Ole Miss
#> 2939   5-11    195                  Michigan
#> 2940    6-2    185         Mississippi State
#> 2941   5-10    189             South Florida
#> 2942    6-3    218                  Nebraska
#> 2943    6-2    205           Tennessee State
#> 2944    6-0    189            Oklahoma State
#> 2945   5-11    195                 Miami, O.
#> 2946   5-11    196                     Texas
#> 2947    6-0    195           Central Florida
#> 2948   5-11    187                    Tulane
#> 2949    5-9    188          Louisiana-Monroe
#> 2950    6-0    200             Massachusetts
#> 2951   5-11    185                      UCLA
#> 2952   5-11    206                      None
#> 2953    5-8    181                      None
#> 2954   5-11    186            Tarleton State
#> 2955    6-2    201                     Miami
#> 2956    6-1    200          Missouri Western
#> 2957   5-11    184                     Miami
#> 2958   5-10    185               Boise State
#> 2959   5-11    184                 Wisconsin
#> 2960    6-0    190        Southern Methodist
#> 2961   5-10    196                      None
#> 2962    6-0    190          Florida Atlantic
#> 2963   5-11    188                      None
#> 2964   5-10    187                      UCLA
#> 2965   5-10    187                      None
#> 2966    5-8    183                     Lamar
#> 2967    6-2    210          Florida Atlantic
#> 2968   5-11    208                    Oregon
#> 2969   5-11    200                Miami (FL)
#> 2970   5-11    185                      UNLV
#> 2971    6-1    175             Arizona State
#> 2972    6-2    208                         -
#> 2973    6-0    190                  Arkansas
#> 2974    6-0    174              Southern Cal
#> 2975   5-11    170                   Clemson
#> 2976    6-2    200              North Dakota
#> 2977    6-1    209      Dickinson State (ND)
#> 2978    6-4    300                   Clemson
#> 2979    6-5    280          Central Missouri
#> 2980    6-6    275            Incarnate Word
#> 2981    6-2    296                      None
#> 2982    6-5    295            Cortland State
#> 2983    6-3    331                   Alabama
#> 2984    6-2    253                   Montana
#> 2985    6-3    270                  Virginia
#> 2986    6-2    213               Alabama A&M
#> 2987    6-1    290                  Delaware
#> 2988    6-6    305                   Hampton
#> 2989    6-7    272              Georgia Tech
#> 2990    6-2    325                      None
#> 2991    6-3    280       Southern California
#> 2992    6-4    284             Northern Iowa
#> 2993    6-5    275                      None
#> 2994    6-3    266                      None
#> 2995    6-2    308                       LSU
#> 2996    6-4    300               Connecticut
#> 2997    6-3    278             Winston-Salem
#> 2998    6-3    270                  Oklahoma
#> 2999    6-3    305                  Missouri
#> 3000    6-4    264                    Towson
#> 3001    6-4    265                   Rutgers
#> 3002    6-4    263                Notre Dame
#> 3003    6-5    275                    Purdue
#> 3004    6-6    275       Concordia, St. Paul
#> 3005    6-2    300            Michigan State
#> 3006    6-3    301                       BYU
#> 3007    6-2    248                     Akron
#> 3008    6-3    237                  Illinois
#> 3009    6-2    241              Georgia Tech
#> 3010    6-5    305          Central Michigan
#> 3011    6-2    322                Texas Tech
#> 3012    6-4    267             Florida State
#> 3013    6-3    258                Louisville
#> 3014    6-4    265                  Oklahoma
#> 3015    6-4    275                  Missouri
#> 3016    6-5    297              Georgia Tech
#> 3017    6-3    334                      None
#> 3018    6-4    252             East Carolina
#> 3019    6-2    265                      None
#> 3020    6-7    295            North Carolina
#> 3021    6-3    295                      Utah
#> 3022    6-4    286                      Ohio
#> 3023    6-5    275                  Arkansas
#> 3024    6-3    246                Washington
#> 3025    6-8    255                       UAB
#> 3026    6-3    299          Washington State
#> 3027    6-2    304                   Rutgers
#> 3028    6-2    280                      Utah
#> 3029    6-3    250          Northern Arizona
#> 3030    6-5    271          Central Arkansas
#> 3031    6-3    308             Bowling Green
#> 3032    6-4    277                   Georgia
#> 3033    6-3    249             James Madison
#> 3034    6-2    253            Boston College
#> 3035    6-1    313                Washington
#> 3036    6-5    236                California
#> 3037    6-5    270                  Stanford
#> 3038    6-2    260                  Missouri
#> 3039    6-3    263                Penn State
#> 3040    6-4    291                  Richmond
#> 3041    6-2    260           Bethune-Cookman
#> 3042    6-5    263                    Tulane
#> 3043    6-2    242                      None
#> 3044    6-1    275         Appalachian State
#> 3045    6-5    265       Southern California
#> 3046    6-4    228                      None
#> 3047    6-2    282                Vanderbilt
#> 3048    6-4    225               Boise State
#> 3049    6-3    295                Pittsburgh
#> 3050    6-3    263             Northern Iowa
#> 3051    6-3    271            South Carolina
#> 3052    6-3    294            Louisiana Tech
#> 3053    6-4    280     Tennessee-Chattanooga
#> 3054    6-3    260                    Nevada
#> 3055    6-4    308                      None
#> 3056    6-4    274                 Texas A&M
#> 3057    6-4    240                Notre Dame
#> 3058    6-4    267                    Marist
#> 3059    6-2    297                   Memphis
#> 3060    6-3    261                Penn State
#> 3061    6-4    315                    Temple
#> 3062    6-3    287  North Carolina-Charlotte
#> 3063    6-4    265                   Buffalo
#> 3064    6-4    249             South Florida
#> 3065    6-3    249                  Kentucky
#> 3066    6-3    265            Oklahoma State
#> 3067    6-1    249                      None
#> 3068    6-4    301                   Wyoming
#> 3069    6-2    311            Nicholls State
#> 3070    6-4    265              East Central
#> 3071    6-2    240                   Colgate
#> 3072    6-2    255                      None
#> 3073    6-3    266          Youngstown State
#> 3074    6-3    238                  Shepherd
#> 3075    6-4    281                  Oklahoma
#> 3076    6-5    278                Miami (FL)
#> 3077    6-5    261                  Richmond
#> 3078    6-3    260                  Virginia
#> 3079    6-4    251                      Lane
#> 3080    6-6    220        Alabama-Birmingham
#> 3081    6-4    277                      None
#> 3082    6-5    273               Mississippi
#> 3083    6-3    259                     Texas
#> 3084    6-6    250                      None
#> 3085    6-3    258            Laval (Canada)
#> 3086    6-3    246                      None
#> 3087    6-1    309                   Florida
#> 3088    6-4    295                      None
#> 3089    6-2    220                     Brown
#> 3090    6-5    256            Incarnate Word
#> 3091    6-4    290                      None
#> 3092    6-2    310             Virginia Tech
#> 3093    6-3    269         Mississippi State
#> 3094    6-3    314                  Syracuse
#> 3095    6-5    302              Regina, Can.
#> 3096    6-1    298                      None
#> 3097    6-3    288      Southern Mississippi
#> 3098    6-3    277               Wake Forest
#> 3099    6-1    273                       LSU
#> 3100    6-2    319                      None
#> 3101    6-2    278                  Maryland
#> 3102    6-3    310                   Arizona
#> 3103    6-3    330                   Houston
#> 3104    6-4    300              Oregon State
#> 3105    6-2    345                      Utah
#> 3106    6-1    279                    Auburn
#> 3107    6-3    313           Louisiana State
#> 3108    6-4    340                    Oregon
#> 3109    6-4    295                      None
#> 3110    6-2    287                Ohio State
#> 3111    6-3    297                   Georgia
#> 3112    6-4    298                Notre Dame
#> 3113    6-2    294             Virginia Tech
#> 3114    6-5    292            North Carolina
#> 3115    6-4    305                   Georgia
#> 3116    6-1    303           Louisiana State
#> 3117    6-2    308                   Ashland
#> 3118    6-2    269                    Tulane
#> 3119    6-2    304            Garden City CC
#> 3120    6-2    302             Bowling Green
#> 3121    6-2    289            San Jose State
#> 3122    6-4    293                Miami (FL)
#> 3123    6-3    286                      None
#> 3124    6-3    305                     Tulsa
#> 3125    6-2    287                      Iowa
#> 3126    6-4    285                      None
#> 3127    6-4    287            West Texas A&M
#> 3128    6-3    307                  Missouri
#> 3129   5-11    295              Alcorn State
#> 3130    6-1    284                      None
#> 3131    6-1    300                  Arkansas
#> 3132    6-4    335                      None
#> 3133    6-3    300                     Miami
#> 3134    6-3    312               Mississippi
#> 3135    6-3    279                      None
#> 3136    6-5    330                  Maryland
#> 3137    6-3    305                      None
#> 3138    6-5    302                   Buffalo
#> 3139    6-5    283                 Mars Hill
#> 3140    6-2    284                  Stanford
#> 3141    6-2    325                Iowa State
#> 3142    6-3    315             Arizona State
#> 3143    6-3    301                Ohio State
#> 3144    6-4    318                      None
#> 3145   5-11    289                      None
#> 3146    6-6    318                 Minnesota
#> 3147    6-4    295         Southern Arkansas
#> 3148    6-3    276                Utah State
#> 3149    6-3    301                      None
#> 3150    6-5    295                  Tusculum
#> 3151    6-2    302             South Florida
#> 3152    6-4    300          Washington State
#> 3153    6-3    280                    Toledo
#> 3154    6-1    331                  Arkansas
#> 3155    6-4    309         Mississippi State
#> 3156    6-0    315             Arizona State
#> 3157    6-7    364              Georgia Tech
#> 3158    6-4    300                  Oklahoma
#> 3159    6-0    300                      None
#> 3160    6-2    304             Florida State
#> 3161    6-5    313         Mississippi State
#> 3162    6-2    220       Arkansas-Pine Bluff
#> 3163    6-0    236              Oregon State
#> 3164    6-1    245            San Jose State
#> 3165   5-11    249                  Michigan
#> 3166    6-2    239              Kansas State
#> 3167    6-0    250                       BYU
#> 3168    6-2    263                  Michigan
#> 3169    6-1    255                    Auburn
#> 3170   5-10    231             Virginia Tech
#> 3171   5-11    254                   Alabama
#> 3172    6-0    233                      UCLA
#> 3173    6-3    255                     Brown
#> 3174    6-0    240                Pittsburgh
#> 3175    6-1    235                   Memphis
#> 3176    6-4    266                  Michigan
#> 3177    6-1    233        Southern Methodist
#> 3178    6-2    240                 Tennessee
#> 3179    6-1    246                  Oklahoma
#> 3180    6-2    248                      None
#> 3181   5-11    248                Kent State
#> 3182    6-1    234            South Carolina
#> 3183    6-1    241             West Virginia
#> 3184    6-1    231         Mississippi State
#> 3185    6-2    254                      None
#> 3186    6-2    240                      None
#> 3187    6-1    284                Washington
#> 3188   5-10    195                Vanderbilt
#> 3189   5-10    205             West Virginia
#> 3190    6-0    185                  Richmond
#> 3191    6-0    182                 Dartmouth
#> 3192    6-2    203                California
#> 3193   5-11    205                   Wofford
#> 3194   5-10    185            North Carolina
#> 3195    6-4    212                   Houston
#> 3196    6-0    200      North Carolina State
#> 3197    6-2    199                  Michigan
#> 3198   5-11    200          Georgia Southern
#> 3199   5-10    197                    Auburn
#> 3200    6-0    210                Utah State
#> 3201   5-10    193           San Diego State
#> 3202   5-11    195                    Auburn
#> 3203    6-0    198               Mississippi
#> 3204   5-11    193                   Georgia
#> 3205    6-0    209            South Carolina
#> 3206    6-0    205           Texas Christian
#> 3207    6-3    209                  Michigan
#> 3208    6-0    190              West Alabama
#> 3209    6-2    200                   Georgia
#> 3210   5-11    208                Ohio State
#> 3211   5-11    196                   Wyoming
#> 3212    6-0    196             New Hampshire
#> 3213   5-10    202                     Texas
#> 3214    6-0    204            Boston College
#> 3215   5-11    205                  Delaware
#> 3216   5-11    205               Mississippi
#> 3217    6-0    200                      None
#> 3218   5-11    190            Boston College
#> 3219   5-11    214            South Carolina
#> 3220    6-2    225                      Troy
#> 3221   5-10    208                       TCU
#> 3222   5-11    196                    Kansas
#> 3223    6-0    203           California, Pa.
#> 3224   5-10    204          St. Francis (PA)
#> 3225    6-2    207                  Virginia
#> 3226   5-10    197                 Texas A&M
#> 3227   5-11    206                    Howard
#> 3228    6-0    195                 Wisconsin
#> 3229   5-11    202             Norfolk State
#> 3230    6-0    207                New Mexico
#> 3231    6-1    213                    Auburn
#> 3232    6-1    210              Georgia Tech
#> 3233   5-11    195                      Utah
#> 3234    6-2    199                  Arkansas
#> 3235   5-11    210                   Florida
#> 3236    6-1    221                      Ohio
#> 3237    6-3    225         Texas-San Antonio
#> 3238   5-11    196            Oklahoma State
#> 3239    6-0    201               Stony Brook
#> 3240    6-1    215                   Georgia
#> 3241    6-0    196                 Tennessee
#> 3242    6-0    201         Appalachian State
#> 3243   5-10    203                      None
#> 3244    6-1    200                Notre Dame
#> 3245    6-2    204                      None
#> 3246    6-1    199           Fort Hays State
#> 3247    6-0    190                      None
#> 3248    6-0    206                  Newberry
#> 3249    6-0    207                Vanderbilt
#> 3250    6-1    195              Southern Cal
#> 3251    6-0    210      North Carolina State
#> 3252    6-1    205                  Colorado
#> 3253    6-4    345             Florida State
#> 3254    6-3    318                      Utah
#> 3255    6-3    315                      Iowa
#> 3256    6-4    305                      None
#> 3257    6-3    317                   Clemson
#> 3258    6-6    310             Montana State
#> 3259    6-4    307                    Purdue
#> 3260    6-3    300                       LSU
#> 3261    6-4    318            Illinois State
#> 3262    6-4    299             Montana State
#> 3263    6-5    310               Wake Forest
#> 3264    6-5    309          Wayne State (MI)
#> 3265    6-4    301                    Oregon
#> 3266    6-6    305    Missouri Western State
#> 3267    6-5    325              Fresno State
#> 3268    6-2    315        Southern Methodist
#> 3269    6-4    326           San Diego State
#> 3270    6-3    305             South Florida
#> 3271    6-3    320                   Memphis
#> 3272    6-4    320                      None
#> 3273    6-2    315          Louisiana-Monroe
#> 3274    6-5    319                   Georgia
#> 3275    6-5    318                    Towson
#> 3276    6-5    328                 Tennessee
#> 3277    6-5    318                 Texas A&M
#> 3278    6-2    312                  Nebraska
#> 3279    6-4    305                      Utah
#> 3280    6-5    330                    Baylor
#> 3281    6-6    305                   Georgia
#> 3282    6-5    310             Florida State
#> 3283    6-4    300         Appalachian State
#> 3284    6-6    306                      Iowa
#> 3285    6-5    314               Carroll, MT
#> 3286    6-5    340                New Mexico
#> 3287    6-5    309                      Utah
#> 3288    6-4    312                      None
#> 3289    6-2    308               Idaho State
#> 3290    6-5    305                   Georgia
#> 3291    6-4    305          Midwestern State
#> 3292    6-4    305                    Oregon
#> 3293    6-3    334              Southern Cal
#> 3294    6-4    300                   Rutgers
#> 3295    6-4    296                      None
#> 3296    6-5    329             Massachusetts
#> 3297    6-3    320                       UAB
#> 3298    6-4    324                  Syracuse
#> 3299    6-2    308            North Carolina
#> 3300    6-4    327            Oklahoma State
#> 3301    6-5    300                Pittsburgh
#> 3302    6-4    310                       USC
#> 3303    6-4    294               Connecticut
#> 3304    6-2    303              Oregon State
#> 3305    6-5    315                  Nebraska
#> 3306    6-6    315                  Nebraska
#> 3307    6-4    335                  Arkansas
#> 3308    6-3    282                Iowa State
#> 3309    6-6    332                    Oregon
#> 3310    6-5    305            Boston College
#> 3311    6-3    322           Central Florida
#> 3312    6-2    343              Fresno State
#> 3313    6-3    298             Arizona State
#> 3314    6-6    315                    Baylor
#> 3315    6-4    313           Tennessee State
#> 3316    6-4    306             Slippery Rock
#> 3317    6-4    305         Northern Colorado
#> 3318    6-3    325                      Utah
#> 3319    6-4    316                      None
#> 3320    6-5    315                    Purdue
#> 3321    6-6    332                   Rutgers
#> 3322    6-3    300                Kent State
#> 3323    6-4    312          Middle Tennessee
#> 3324    6-4    330            North Carolina
#> 3325    6-4    316                      None
#> 3326    6-3    321           San Diego State
#> 3327    6-5    305                    Toledo
#> 3328    6-4    320              Oregon State
#> 3329    6-4    310                  Nebraska
#> 3330    6-4    316           Central Florida
#> 3331    6-5    315                   Florida
#> 3332    6-3    317                  Kentucky
#> 3333    6-6    320                      UCLA
#> 3334    6-3    290                      None
#> 3335    6-3    309                  Kutztown
#> 3336    6-5    290                      None
#> 3337    6-6    311          Western Kentucky
#> 3338    6-4    320              Indianapolis
#> 3339    6-4    314                Ohio State
#> 3340    6-3    306      North Carolina State
#> 3341    6-4    306                  Michigan
#> 3342    6-5    310                   Alabama
#> 3343    6-6    303                      Iowa
#> 3344    6-6    317                 Texas A&M
#> 3345    6-5    325                Ball State
#> 3346    6-7    305                  Virginia
#> 3347    6-7    305                      Ohio
#> 3348    6-6    301                      None
#> 3349    6-4    315          Eastern Michigan
#> 3350    6-2    321                     Texas
#> 3351    6-3    322              Kansas State
#> 3352    6-3    305                      Iowa
#> 3353    6-5    310                      Utah
#> 3354    6-2    308                      None
#> 3355    6-7    300             Texas-El Paso
#> 3356    6-4    318                    Toledo
#> 3357    6-4    334                    Temple
#> 3358    6-5    330          Middle Tennessee
#> 3359    6-3    320           Central Florida
#> 3360    6-3    308             Arizona State
#> 3361    6-4    305             West Virginia
#> 3362    6-5    295                   Alabama
#> 3363    6-5    340               Mississippi
#> 3364    6-3    296                  Colorado
#> 3365    6-5    333                      None
#> 3366    6-3    314                      None
#> 3367    6-4    306                      None
#> 3368    6-5    300         Louisiana College
#> 3369    6-3    320                  Illinois
#> 3370    6-4    306                  Illinois
#> 3371    6-6    310            Colorado State
#> 3372    6-5    298              Oregon State
#> 3373    6-3    310                      None
#> 3374    6-3    283                   Harvard
#> 3375    6-4    340                 Tennessee
#> 3376    6-1    232         Texas-San Antonio
#> 3377    6-0    239                   Arizona
#> 3378    6-0    233                      None
#> 3379    6-2    220                PIttsburgh
#> 3380    6-3    220                      None
#> 3381    6-0    194             Indiana State
#> 3382    6-2    230               Mississippi
#> 3383    6-1    226                    Hawaii
#> 3384    6-4    250                      None
#> 3385   5-10    225                      None
#> 3386   5-11    220                  Nebraska
#> 3387    6-1    238                      None
#> 3388    6-0    229                      None
#> 3389    6-3    235        Alabama-Birmingham
#> 3390    6-0    238              LA-Lafayette
#> 3391    6-1    231                Penn State
#> 3392    6-2    230                California
#> 3393    6-2    220                  Colorado
#> 3394    6-0    227                  Oklahoma
#> 3395    6-1    250             Arizona State
#> 3396    6-0    226                     Texas
#> 3397    5-9    225        Central Washington
#> 3398    6-1    242                      None
#> 3399    6-1    242          Sacramento State
#> 3400    6-0    250              Fresno State
#> 3401    6-1    226            Michigan State
#> 3402    6-1    230                Notre Dame
#> 3403    6-1    238                      None
#> 3404    6-3    253                   Clemson
#> 3405    6-2    243                       LSU
#> 3406    6-0    237                      None
#> 3407    6-2    230                   Arizona
#> 3408    6-0    238            Boston College
#> 3409    6-1    241                Pittsburgh
#> 3410   5-11    231     Florida International
#> 3411    6-0    225                  Nebraska
#> 3412    6-2    225             South Florida
#> 3413    6-0    203                   McNeese
#> 3414    6-1    246                     Maine
#> 3415    6-0    228                      None
#> 3416    6-2    235                  Maryland
#> 3417    6-2    230                    Kansas
#> 3418    6-4    220                      None
#> 3419    6-0    218                  Oklahoma
#> 3420    6-1    232                   Florida
#> 3421    6-1    242                  Missouri
#> 3422    6-1    223                Washington
#> 3423    6-0    237                Louisville
#> 3424    6-1    258             Florida State
#> 3425    6-2    203                     Texas
#> 3426   5-11    200                     Texas
#> 3427    6-1    200                Washington
#> 3428    6-2    215                      None
#> 3429    5-9    161               North Texas
#> 3430    5-9    192                   Florida
#> 3431    6-0    200                      Iowa
#> 3432    6-0    212        South Dakota State
#> 3433    6-3    200                   Clemson
#> 3434   5-11    204            North Carolina
#> 3435    5-9    203                    Baylor
#> 3436    6-0    198                  Maryland
#> 3437    6-4    246            Boston College
#> 3438   5-11    234                Iowa State
#> 3439    6-0    229                  Syracuse
#> 3440    6-1    245                   Montana
#> 3441    6-2    240            North Carolina
#> 3442    6-2    235           Louisiana State
#> 3443    6-1    250                Washington
#> 3444    6-3    254          Central Michigan
#> 3445    6-0    233                  Kentucky
#> 3446    6-2    227                      None
#> 3447    6-2    237                   Georgia
#> 3448    6-1    240             South Florida
#> 3449    6-2    240                Penn State
#> 3450    6-4    240              Northwestern
#> 3451    6-1    234  North Carolina-Charlotte
#> 3452    6-3    235                     Miami
#> 3453    6-3    245                  Columbia
#> 3454    6-4    245              Kansas State
#> 3455   5-11    240                      None
#> 3456   5-11    232        North Dakota State
#> 3457    6-2    250          Middle Tennessee
#> 3458    6-1    251            North Carolina
#> 3459    6-2    235                     Idaho
#> 3460    6-2    254                   Rutgers
#> 3461    6-1    251                Louisville
#> 3462    6-4    267          Missouri Western
#> 3463    6-4    240                Vanderbilt
#> 3464    6-1    245                California
#> 3465    6-2    223            Boston College
#> 3466    6-3    235             West Virginia
#> 3467    6-0    246             James Madison
#> 3468    6-3    215             Florida State
#> 3469    6-2    235                  Marshall
#> 3470    6-2    273                   Florida
#> 3471    6-3    259                  Virginia
#> 3472    6-4    240              Fresno State
#> 3473    6-2    220                 Tennessee
#> 3474    6-3    230           San Diego State
#> 3475    6-0    232                Penn State
#> 3476    6-3    245                  Missouri
#> 3477    6-4    261              Georgia Tech
#> 3478    6-1    245                    Nevada
#> 3479    6-2    248            Illinois State
#> 3480    6-2    245             Florida State
#> 3481    6-0    250                      Duke
#> 3482    6-2    224                      None
#> 3483    6-2    239                Louisville
#> 3484    6-1    226                  Oklahoma
#> 3485    6-5    263                   Clemson
#> 3486    6-0    235       Southern California
#> 3487    6-4    259                Louisville
#> 3488    6-1    255             Arizona State
#> 3489    6-4    255                Cincinnati
#> 3490    6-2    238                Utah State
#> 3491    6-2    240                  Michigan
#> 3492    6-3    242                     Texas
#> 3493    6-2    222                Utah State
#> 3494    6-3    265             Arizona State
#> 3495    6-0    243                  Arkansas
#> 3496    6-5    250               Mississippi
#> 3497    6-0    246                Washington
#> 3498    6-3    265       Southern California
#> 3499    6-2    240                      None
#> 3500    6-2    244                Pittsburgh
#> 3501    6-2    252           Louisiana State
#> 3502    6-3    255       Southern California
#> 3503    6-1    212         Mississippi State
#> 3504    6-2    236                Penn State
#> 3505    6-0    231                    Kansas
#> 3506    6-2    233              Oregon State
#> 3507    6-4    262                 Tennessee
#> 3508    6-0    230                      None
#> 3509    6-2    235             Georgia State
#> 3510    6-1    237           Texas Christian
#> 3511    6-5    250              Oregon State
#> 3512    6-4    257                     Texas
#> 3513    6-0    225        Eastern Washington
#> 3514    6-3    243                  Virginia
#> 3515    6-3    259                     Texas
#> 3516    6-5    253                Louisville
#> 3517    6-3    255  Northwest Missouri State
#> 3518    6-3    255                      UCLA
#> 3519    6-1    230                Ohio State
#> 3520    6-3    240                  Maryland
#> 3521    6-1    250                Notre Dame
#> 3522    6-2    233                Penn State
#> 3523    6-1    237                Cincinnati
#> 3524    6-5    249                     Brown
#> 3525    6-5    240                      UCLA
#> 3526    6-1    243                      None
#> 3527    6-0    205                   Florida
#> 3528    6-1    243              Kansas State
#> 3529    6-3    250                    Kansas
#> 3530    6-1    240                    Nevada
#> 3531    6-2    235           San Diego State
#> 3532    6-4    329                  Nebraska
#> 3533    6-3    290                    Baylor
#> 3534    6-4    332   Northwestern State, La.
#> 3535    6-3    321                      None
#> 3536    6-3    335                    Baylor
#> 3537    6-2    300                Miami (FL)
#> 3538    6-2    315                      None
#> 3539    6-4    290                 Wisconsin
#> 3540    6-1    304        Mississippi Valley
#> 3541    6-3    300                     Brown
#> 3542    6-3    291                   Alabama
#> 3543    6-6    320              Ferris State
#> 3544    6-5    273            Valdosta State
#> 3545    6-2    284                      None
#> 3546    6-1    265      Southern Mississippi
#> 3547    6-1    350              Southern Cal
#> 3548    6-1    343                  Colorado
#> 3549    6-5    287                Cincinnati
#> 3550    6-4    290                      None
#> 3551    6-3    340        Eastern Washington
#> 3552    6-2    283               Austin Peay
#> 3553    6-2    297                  Illinois
#> 3554    6-3    310          Western Kentucky
#> 3555    6-3    305                      None
#> 3556    6-1    311                California
#> 3557    6-1    339                  Arkansas
#> 3558    6-1    310         Mississippi State
#> 3559    6-5    289                Penn State
#> 3560    6-0    329                      Troy
#> 3561    6-2    315           Louisiana State
#> 3562    6-3    309                Miami (FL)
#> 3563    6-3    294               Mississippi
#> 3564    6-3    241              West Georgia
#> 3565    6-1    225            North Carolina
#> 3566    6-2    225           California (PA)
#> 3567    6-0    235         Northern Illinois
#> 3568    6-2    194              Fresno State
#> 3569    6-0    240                   Rutgers
#> 3570   5-11    234                      Ohio
#> 3571    6-3    248             Southern Utah
#> 3572    6-4    240           Charleston (WV)
#> 3573    6-2    240             Arizona State
#> 3574    6-3    260                         -
#> 3575    6-2    250                  Virginia
#> 3576    6-1    264                    Auburn
#> 3577    6-1    236                      None
#> 3578    6-6    295                Miami (FL)
#> 3579    6-4    265                  Illinois
#> 3580    6-1    220            Incarnate Word
#> 3581    6-3    231            North Carolina
#> 3582    6-1    220            Arkansas State
#> 3583    6-4    241                      None
#> 3584    6-4    247                Miami (OH)
#> 3585    6-0    235                      None
#> 3586    6-0    228               Weber State
#> 3587    6-2    255            Michigan State
#> 3588    6-3    242                       TCU
#> 3589    6-0    212                      Duke
#> 3590    6-1    250              Georgia Tech
#> 3591    6-2    249                    Auburn
#> 3592    6-2    235                Ohio State
#> 3593    6-1    229                   Memphis
#> 3594    6-1    250                      Rice
#> 3595    6-3    254                 Tennessee
#> 3596    6-2    250                      None
#> 3597    6-2    240         Mississippi State
#> 3598    6-3    232                      None
#> 3599    6-1    247                Miami (OH)
#> 3600   5-11    241                Pittsburgh
#> 3601    6-3    256            Arkansas State
#> 3602    6-2    230               North Texas
#> 3603   5-11    230                Iowa State
#> 3604    6-0    227             Norfolk State
#> 3605    6-0    230         Appalachian State
#> 3606    6-1    240                     Maine
#> 3607    6-2    229                 Tennessee
#> 3608    6-4    260                  Maryland
#> 3609    6-5    244                   Alabama
#> 3610    6-2    226                  Stanford
#> 3611    6-2    248                      None
#> 3612    6-0    245               Wake Forest
#> 3613    6-1    228            South Carolina
#> 3614    6-0    236                Penn State
#> 3615    6-0    242               Wake Forest
#> 3616    6-2    255                 Texas A&M
#> 3617    6-2    239                      None
#> 3618    6-3    256         Northern Illinois
#> 3619    6-5    255        Texas A&M-Commerce
#> 3620    6-2    239             Bowling Green
#> 3621    6-3    242                      UCLA
#> 3622    6-2    221               Connecticut
#> 3623    6-0    230                   Houston
#> 3624    6-1    225              Prairie View
#> 3625    6-0    231            Arkansas State
#> 3626    6-3    274                      Utah
#> 3627    6-3    237                      None
#> 3628    6-0    210              Northwestern
#> 3629    6-2    250            Illinois State
#> 3630    6-2    240                      None
#> 3631    6-4    250    Southeastern Louisiana
#> 3632    6-3    251          Western Michigan
#> 3633    6-3    235             Virginia Tech
#> 3634    6-0    215          Western Michigan
#> 3635    6-3    247          Georgia Southern
#> 3636    6-3    216             Texas-El Paso
#> 3637    6-2    241          New Mexico State
#> 3638    6-3    275                  Kentucky
#> 3639    6-2    246               Chattanooga
#> 3640    6-2    220             South Florida
#> 3641    6-1    235                      Ohio
#> 3642    6-3    246         Southern Illinois
#> 3643   5-11    234                    Auburn
#> 3644    6-3    235               Wake Forest
#> 3645    6-1    230                   Florida
#> 3646    6-1    222                       LSU
#> 3647    6-0    227                      None
#> 3648    6-1    237                Texas Tech
#> 3649    6-3    212                   Wyoming
#> 3650    6-4    256            Louisiana Tech
#> 3651    6-2    245        Jacksonville State
#> 3652    6-2    245          Western Michigan
#> 3653    6-1    227                  Marshall
#> 3654    6-4    247                    Oregon
#> 3655    6-0    218                Pittsburgh
#> 3656    6-3    230                     Texas
#> 3657    6-3    246                      None
#> 3658    6-2    230                      None
#> 3659    6-6    293                      Troy
#> 3660    6-5    295                  Kentucky
#> 3661    6-7    306                      None
#> 3662    6-4    310                   Buffalo
#> 3663    6-4    300                Cincinnati
#> 3664    6-4    320                       LSU
#> 3665    6-6    316                      None
#> 3666    6-5    310                      None
#> 3667    6-5    335                 Minnesota
#> 3668    6-3    294                      None
#> 3669    6-8    305                      None
#> 3670    6-8    334                   Montana
#> 3671    6-7    315                   Buffalo
#> 3672    6-5    331         Mississippi State
#> 3673    6-6    297                    Toledo
#> 3674    6-5    287            West Texas A&M
#> 3675    6-7    294             Alabama State
#> 3676    6-5    300                      None
#> 3677    6-4    317                      None
#> 3678    6-7    315                 Wisconsin
#> 3679    6-6    321         Mississippi State
#> 3680    6-6    300                    Wagner
#> 3681    6-6    312             South Florida
#> 3682    6-5    324                       BYU
#> 3683    6-5    300            Portland State
#> 3684    6-9    323                  Nebraska
#> 3685    6-3    292              Northwestern
#> 3686    6-7    302               North Texas
#> 3687    6-4    306             Virginia Tech
#> 3688    6-8    323               Connecticut
#> 3689    6-5    305             Virginia Tech
#> 3690    6-5    305                  Stanford
#> 3691    6-5    290      South Carolina State
#> 3692    6-5    317                  Arkansas
#> 3693    6-8    324                    Toledo
#> 3694    6-7    328                      None
#> 3695    6-6    302               Idaho State
#> 3696    6-6    307                Pittsburgh
#> 3697    6-4    317                  Maryland
#> 3698    6-5    321                     Texas
#> 3699    6-6    291             New Hampshire
#> 3700    6-7    300                Cincinnati
#> 3701    6-5    333                  Michigan
#> 3702    6-5    295          Eastern Michigan
#> 3703    6-6    300            North Carolina
#> 3704    6-7    280        Texas A&M-Commerce
#> 3705    6-6    301                      UNLV
#> 3706    6-5    304                  Kentucky
#> 3707    6-6    305                  Stanford
#> 3708    6-6    300                  Illinois
#> 3709    6-4    294                  Duquesne
#> 3710    6-4    315          Central Missouri
#> 3711    6-8    309            South Carolina
#> 3712    6-6    315           Tennessee State
#> 3713    6-6    310                California
#> 3714    6-6    325                    Temple
#> 3715    6-6    318            Oklahoma State
#> 3716    6-3    297             Southern Utah
#> 3717    6-6    312           San Diego State
#> 3718    6-5    335                Louisville
#> 3719    6-6    296     Northwestern St. - LA
#> 3720    6-6    292                      None
#> 3721    6-5    299     Florida International
#> 3722    6-6    314                      None
#> 3723    6-4    314               Boise State
#> 3724    6-4    311      Southern Mississippi
#> 3725    6-5    300                  Virginia
#> 3726    6-7    321            William & Mary
#> 3727    6-9    285            Boston College
#> 3728    6-6    300                 Villanova
#> 3729   5-11    182             Southern Utah
#> 3730    6-3    195                      None
#> 3731    6-2    230                 Texas A&M
#> 3732    6-3    211                      None
#> 3733    6-3    210                  Arkansas
#> 3734   5-11    224          California-Davis
#> 3735    6-4    211                     Miami
#> 3736    6-2    221           Louisiana State
#> 3737    6-3    219                Notre Dame
#> 3738    6-0    217              Regina, Can.
#> 3739    6-2    215                   Wofford
#> 3740   5-10    185            Texas Southern
#> 3741    6-0    192         Fort Valley State
#> 3742    6-3    188            Boston College
#> 3743    6-1    217                 Tennessee
#> 3744    6-0    208                     Miami
#> 3745    6-1    213          California-Davis
#> 3746    6-0    200          Western Carolina
#> 3747    6-0    195                      UCLA
#> 3748    6-2    193             Arizona State
#> 3749    6-5    253                Ohio State
#> 3750    6-3    205                  Shepherd
#> 3751    6-2    221      Southern Mississippi
#> 3752    6-7    240             Arizona State
#> 3753    6-3    230                    Baylor
#> 3754    6-4    225                  Oklahoma
#> 3755   5-10    214                      None
#> 3756    6-2    224        Texas A&M-Commerce
#> 3757    6-3    220                      None
#> 3758    6-4    224                  Oklahoma
#> 3759    6-2    225                Ohio State
#> 3760    6-3    207                      None
#> 3761    6-1    210                Penn State
#> 3762    6-5    226         Mississippi State
#> 3763    6-7    244                   Memphis
#> 3764    6-4    218                      None
#> 3765    6-5    235         Stephen F. Austin
#> 3766    6-2    230          Eastern Illinois
#> 3767    6-0    211                       TCU
#> 3768    6-4    225                      None
#> 3769    6-4    228                Pittsburgh
#> 3770    6-6    235              Oregon State
#> 3771    6-5    218               Mississippi
#> 3772    6-0    210                      None
#> 3773    6-4    223                Penn State
#> 3774    6-4    215                      null
#> 3775    6-1    211               Albany (NY)
#> 3776    6-3    225                 Dartmouth
#> 3777    6-4    217            Michigan State
#> 3778    6-5    230                      None
#> 3779    6-0    192                      None
#> 3780    6-1    215                       USC
#> 3781    6-2    232       Southern California
#> 3782    6-4    237             Florida State
#> 3783    6-3    228            Oklahoma State
#> 3784    6-3    210                 Tennessee
#> 3785    6-1    211                Holy Cross
#> 3786    6-5    235       Southern California
#> 3787    6-1    216                    Wesley
#> 3788    6-4    221              Murray State
#> 3789    6-4    240                  Stanford
#> 3790    6-4    214                     Miami
#> 3791    6-4    228       Southern California
#> 3792    6-3    228                   Liberty
#> 3793    6-5    240                      UCLA
#> 3794    6-2    220            Colorado State
#> 3795    5-8    208                   Buffalo
#> 3796    6-0    227            South Carolina
#> 3797    6-0    226              Kansas State
#> 3798   5-10    224                Utah State
#> 3799   5-11    213                   Florida
#> 3800   5-11    216                   Rutgers
#> 3801   5-11    224        South Dakota State
#> 3802    6-0    219                      Utah
#> 3803    5-9    215          Central Michigan
#> 3804    6-2    247                     Texas
#> 3805    5-9    210                      Iowa
#> 3806    5-8    195                  Missouri
#> 3807   5-10    200                Texas Tech
#> 3808    6-1    187                No College
#> 3809    6-4    281            Michigan State
#> 3810    6-1    220                  Oklahoma
#> 3811   5-10    212                 Texas A&M
#> 3812    6-0    211             West Virginia
#> 3813   5-10    205                     Texas
#> 3814    5-9    204                  Michigan
#> 3815    5-9    199                   Clemson
#> 3816    5-9    225                  Virginia
#> 3817    5-9    194                  Southern
#> 3818   5-11    199                     Texas
#> 3819   5-10    200                Vanderbilt
#> 3820    5-7    172              West Georgia
#> 3821    6-0    220                    Tulane
#> 3822    6-1    210         Appalachian State
#> 3823    6-0    218                       LSU
#> 3824    6-1    235                   Florida
#> 3825    5-7    195                 Texas A&M
#> 3826   5-10    205         Abilene Christian
#> 3827   5-10    205                  Illinois
#> 3828    6-0    223               Boise State
#> 3829   5-11    199                      None
#> 3830   5-11    228                 Texas A&M
#> 3831   5-11    215                California
#> 3832    6-0    224                      None
#> 3833   5-10    218          Middle Tennessee
#> 3834    6-0    222       Southern California
#> 3835   5-11    225             Alabama State
#> 3836    5-6    225                    Towson
#> 3837   5-11    180                  Syracuse
#> 3838    6-0    225          Coastal Carolina
#> 3839   5-10    208                   Indiana
#> 3840    5-6    169                      None
#> 3841   5-10    209                      Ohio
#> 3842    6-2    218                    Tulane
#> 3843   5-10    198                      None
#> 3844    5-8    224                California
#> 3845    6-0    223                    Tiffin
#> 3846   5-10    220                   Houston
#> 3847   5-11    237                 Minnesota
#> 3848   5-10    216                Utah State
#> 3849   5-11    184          New Mexico State
#> 3850    6-1    210           Central Florida
#> 3851   5-11    220  Northwest Missouri State
#> 3852    6-1    235           Louisiana State
#> 3853    6-1    198              Southern Cal
#> 3854    5-9    207      North Carolina State
#> 3855   5-11    205            North Carolina
#> 3856    6-0    216                      None
#> 3857   5-11    225                      Iowa
#> 3858   5-11    203                       TCU
#> 3859   5-10    240                    Oregon
#> 3860    6-1    238             Azusa Pacific
#> 3861    5-8    169           San Diego State
#> 3862    5-8    205      South Carolina State
#> 3863   5-11    203             East Carolina
#> 3864    5-8    198                Utah State
#> 3865   5-10    215                    Auburn
#> 3866   5-10    192                      None
#> 3867   5-11    229                 Minnesota
#> 3868    6-1    218                Notre Dame
#> 3869    5-9    220           Louisiana State
#> 3870   5-11    215                      None
#> 3871    6-0    231            Virginia Union
#> 3872    5-6    190              Kansas State
#> 3873   5-10    205                New Mexico
#> 3874   5-10    200                      None
#> 3875   5-11    203            Colorado State
#> 3876    6-0    220                  Richmond
#> 3877   5-10    204                Louisville
#> 3878    6-0    211            Michigan State
#> 3879   5-10    225                    Towson
#> 3880   5-11    203                    Auburn
#> 3881   5-11    214              Alcorn State
#> 3882    6-2    240                Miami (FL)
#> 3883    5-9    205                      None
#> 3884   5-10    205                California
#> 3885    6-2    225           Louisiana State
#> 3886   5-11    224                    Toledo
#> 3887    6-2    239                   Florida
#> 3888   5-10    194                      None
#> 3889    6-2    215             East Carolina
#> 3890   5-11    210                      None
#> 3891   5-11    219                   Florida
#> 3892   5-10    202                  Michigan
#> 3893   5-11    225                       LSU
#> 3894   5-10    221             Texas-El Paso
#> 3895    5-9    201                    Oregon
#> 3896   5-10    210                      None
#> 3897   5-10    200             James Madison
#> 3898   5-10    195           San Diego State
#> 3899   5-11    220                  Michigan
#> 3900    6-0    236              Southern Cal
#> 3901    6-0    209                California
#> 3902    5-9    209                   Clemson
#> 3903    6-0    220              Fresno State
#> 3904    6-0    250                    Oregon
#> 3905    6-0    217                Pittsburgh
#> 3906    5-9    215          Eastern Michigan
#> 3907   5-10    185                    Purdue
#> 3908    5-6    205              Oregon State
#> 3909    6-1    226         Northern Illinois
#> 3910   5-11    202                      Utah
#> 3911    5-7    202          Coastal Carolina
#> 3912    6-0    224                  Oklahoma
#> 3913   5-10    200               Wake Forest
#> 3914   5-10    221                 Texas A&M
#> 3915   5-11    232            North Carolina
#> 3916   5-11    220            Michigan State
#> 3917    5-9    210                Louisville
#> 3918   5-11    220           Louisiana State
#> 3919   5-11    180                  Syracuse
#> 3920    6-1    233              Oregon State
#> 3921    6-0    210                  Colorado
#> 3922   5-10    226            Tarleton State
#> 3923   5-10    227                  Arkansas
#> 3924   5-11    243                No College
#> 3925    6-0    218             Slippery Rock
#> 3926    5-9    195                  Missouri
#> 3927    5-9    204                      None
#> 3928    5-9    196         Texas-San Antonio
#> 3929    5-9    185                      Duke
#> 3930   5-11    200                   Clemson
#> 3931    5-8    200             Chadron State
#> 3932    6-1    210                  Arkansas
#> 3933   5-11    239                      None
#> 3934   5-10    202                Miami (FL)
#> 3935   5-11    250                   Alabama
#> 3936    6-1    250             Slippery Rock
#> 3937   5-10    228            Louisiana Tech
#> 3938    6-3    235                       LSU
#> 3939    5-9    210               Boise State
#> 3940    6-0    208                      None
#> 3941    6-3    203                      Utah
#> 3942    6-3    200             North Alabama
#> 3943    6-1    207                      None
#> 3944   5-11    185            Oklahoma State
#> 3945    6-0    219             Virginia Tech
#> 3946    6-0    209                   Rutgers
#> 3947   5-10    195              Fresno State
#> 3948   5-11    195               Mississippi
#> 3949   5-11    212                  Oklahoma
#> 3950    6-1    211                   Alabama
#> 3951    6-2    210          Florida Atlantic
#> 3952    6-0    203                Penn State
#> 3953   5-11    214                No College
#> 3954   5-10    212               Boise State
#> 3955    6-1    215                    Purdue
#> 3956    6-2    222             Texas-El Paso
#> 3957    5-9    212                    Auburn
#> 3958    6-1    205            Arkansas State
#> 3959    6-0    226              Southern Cal
#> 3960   5-11    209                      None
#> 3961   5-11    198                      UCLA
#> 3962    6-0    202          Washington State
#> 3963    6-2    218                    Toledo
#> 3964   5-11    203         Appalachian State
#> 3965    6-0    206           Central Florida
#> 3966    6-2    211                Ohio State
#> 3967   5-10    200                 Wisconsin
#> 3968    6-2    200           San Diego State
#> 3969    6-1    209                Washington
#> 3970    6-1    207                  Maryland
#> 3971   5-11    210                   Findlay
#> 3972   5-10    210          Georgia Southern
#> 3973    6-2    206             Northern Iowa
#> 3974   5-11    205      South Carolina State
#> 3975    6-1    200                   Liberty
#> 3976    6-3    222                     Tulsa
#> 3977    6-0    185         Mississippi State
#> 3978    6-2    212            Michigan State
#> 3979   5-10    197           Central Florida
#> 3980    6-2    203                  Marshall
#> 3981   5-10    187                      None
#> 3982    6-1    213           Louisiana State
#> 3983    6-1    210                Vanderbilt
#> 3984    6-1    200            Michigan State
#> 3985    6-0    202             West Virginia
#> 3986    5-9    205                  Syracuse
#> 3987    6-1    209              Georgia Tech
#> 3988    6-1    220           Louisiana State
#> 3989    6-0    183                  Shepherd
#> 3990   5-11    191            Michigan State
#> 3991    6-4    205                    Oregon
#> 3992    6-0    204                   Georgia
#> 3993    6-2    211          Western Michigan
#> 3994    6-2    220                     Miami
#> 3995    6-1    206                Cincinnati
#> 3996   5-11    207                  Michigan
#> 3997   5-10    200                    Oregon
#> 3998    6-2    208            Arkansas State
#> 3999    6-3    225             Virginia Tech
#>                                            high_school    gsis_id espn_id
#> 1                                       East Lake (FL) 00-0034785 3115972
#> 2                                     Pine Forest (NC) 00-0035536 3128707
#> 3                                         Saguaro (AZ) 00-0035236 4038999
#> 4                                          Apollo (AZ) 00-0027957   13975
#> 5                                       Oceanside (CA) 00-0036043 3821572
#> 6                                         Wagoner (OK) 00-0032848 2977742
#> 7                                    Northwestern (SC) 00-0024239    9610
#> 8                                         Hammond (LA) 00-0030528   15817
#> 9                                             Ely (FL) 00-0027943   13980
#> 10                                   Gadsden City (AL) 00-0029560   14940
#> 11                                      Lone Star (TX) 00-0036060 4035402
#> 12                                      Oak Grove (MS) 00-0035368 3123966
#> 13                                         Downey (CA) 00-0035705 4043089
#> 14                                         Crespi (CA) 00-0032560 2579163
#> 15                                        Kempner (TX) 00-0029747   15782
#> 16                              George Washington (PA) 00-0035267 3929648
#> 17                               Parsippany Hills (NJ) 00-0035541 3138765
#> 18                                       Muskogee (OK) 00-0030515   15906
#> 19                                      L.D. Bell (TX) 00-0030883   17017
#> 20                                      Linn-Marr (IA) 00-0031592 2517779
#> 21                     Red Lion Christian Academy (DE) 00-0032107 2574582
#> 22                                       Herriman (UT) 00-0036371 4035666
#> 23                                     New Canaan (CT) 00-0035248 3915282
#> 24                                         Circle (KS) 00-0031557 2577466
#> 25                                 Luther Burbank (CA) 00-0035540 3910660
#> 26                                         Ruston (LA) 00-0032628 2971881
#> 27                                    Mooresville (NC) 00-0029146   15025
#> 28                            Restoration Academy (AL) 00-0035336 3115482
#> 29                                   San Clemente (CA) 00-0033511 3045286
#> 30                             Council Rock South (PA) 00-0030585   15808
#> 31                                         Manvel (TX) 00-0035431 3122145
#> 32                                       Norcross (GA) 00-0032132 2512538
#> 33                                    Centerville (OH) 00-0023482    8461
#> 34                                      Deer Park (TX) 00-0033862 3043234
#> 35                                        Kearney (NE) 00-0030332   16486
#> 36                             Crystal Lake South (IL) 00-0034473 4334300
#> 37                                   Desert Vista (AZ) 00-0031241   16820
#> 38                                          Anson (NC) 00-0032102 2576482
#> 39                                    Glen Burnie (MD) 00-0034490 3894901
#> 40                           Redlands East Valley (CA) 00-0034404 3047582
#> 41                                    Lakota West (OH) 00-0032129 2514270
#> 42                                 Haddon Heights (NJ) 00-0033875 2980504
#> 43                                   Nevada Union (CA) 00-0033580 3042895
#> 44                                          Afton (MO) 00-0032127 2971432
#> 45                                     Southridge (FL) 00-0033819 3051925
#> 46                                   Cypress Lake (FL) 00-0032401 3040180
#> 47                                 Union-Endicott (NY) 00-0029585   14927
#> 48                                    Ponchatoula (LA) 00-0035923 4046605
#> 49                                  Cypress Creek (TX) 00-0033635 3043197
#> 50                               Southwest DeKalb (GA) 00-0032820 2576809
#> 51                                   Gonzaga Prep (WA) 00-0036381 4035875
#> 52                                   Olathe North (KS) 00-0036356 4035462
#> 53                                           Troy (CA) 00-0028946   15241
#> 54                                        Central (KY) 00-0027686   13292
#> 55                                        Neville (LA) 00-0036373 4035452
#> 56                                     Pago Pago (ASM) 00-0024338    9709
#> 57                                       West Oak (SC) 00-0022824    5713
#> 58                                          Allen (TX) 00-0035228 3917315
#> 59                        Marian Central Catholic (IL) 00-0035752 3040206
#> 60                                       Chandler (AZ) 00-0031589 2577189
#> 61                                      Hillgrove (GA) 00-0033118 2979843
#> 62                           Central Dauphin East (PA) 00-0034681 3119195
#> 63                                     Notre Dame (CA) 00-0033797 3052143
#> 64                                     Wylie East (TX) 00-0036383 4242873
#> 65                                        Saguaro (AZ) 00-0032577 2978124
#> 66                                Bishop McNamara (IL) 00-0035924 4039274
#> 67                                       Palmdale (CA) 00-0032168 2971605
#> 68                              West Orange-Stark (TX) 00-0035532 3859100
#> 69                                       Bellevue (WA) 00-0033890 3127287
#> 70                                    George Bush (TX) 00-0036363 3914630
#> 71                                          Mexia (TX) 00-0029316   15035
#> 72                                   Western Tech (MD) 00-0035317 3120434
#> 73                                       Sycamore (OH) 00-0032528 2576585
#> 74                             St. Thomas Aquinas (FL) 00-0028001   13998
#> 75                                  Mallard Creek (NC) 00-0032222 2971048
#> 76                                        Freedom (CA) 00-0033258 3052166
#> 77                               Hinsdale Central (IL) 00-0035067 3115981
#> 78                                     Manchester (CT) 00-0033080 2566659
#> 79                                         Hoover (AL) 00-0035092 3917292
#> 80                                        Waconia (MN) 00-0031558 2970726
#> 81                                        Shanley (ND) 00-0034011 4212989
#> 82                                 Warren Central (IN) 00-0033604 4198679
#> 83                                      Palo Alto (CA) 00-0035287 3124537
#> 84                                     Southmoore (OK) 00-0033449 3894883
#> 85                                         Cheraw (SC) 00-0030300   16172
#> 86                                       Mayfield (OH) 00-0035527 3914328
#> 87                                    D.W. Daniel (SC) 00-0030564   15795
#> 88                                       Narbonne (CA) 00-0035491 3124369
#> 89                                         Midway (TX) 00-0036019 4373937
#> 90                                Des Moines East (IA) 00-0034660 4048717
#> 91                                    Holy Angels (MN) 00-0022921    5528
#> 92                                        Saguaro (AZ) 00-0034775 3895856
#> 93                                       Danville (IL) 00-0034487 3122168
#> 94                                     San Marcos (CA) 00-0026997   12616
#> 95                                  Cypress Ridge (TX) 00-0035051 3126302
#> 96                               Miami Southridge (FL) 00-0030792   17211
#> 97                                        Varnado (LA) 00-0035774 4360643
#> 98                                  Twiggs County (GA) 00-0031380   16718
#> 99                                   Braden River (FL) 00-0032592 2982866
#> 100                                      Westlake (GA) 00-0036285 4239995
#> 101                                        Brophy (AZ) 00-0034357 3915437
#> 102                                Junipero Serra (CA) 00-0035783 4048718
#> 103                             Thurgood Marshall (TX) 00-0035255 3925358
#> 104                                      Mainland (FL) 00-0031181   16882
#> 105                                General McLane (PA) 00-0030541   15881
#> 106                                   Gainesville (FL) 00-0036405 3915122
#> 107                                    Buena Park (CA) 00-0036302 3858276
#> 108                                  South Sumter (FL) 00-0032382 3054962
#> 109                              Grover Cleveland (NY) 00-0030387   15936
#> 110                                      Lakewood (FL) 00-0032052 2980100
#> 111                                St. John Bosco (CA) 00-0034154 3134315
#> 112                       McIntosh County Academy (GA) 00-0028024   14020
#> 113                                     Immokalee (FL) 00-0034363 3051376
#> 114                                   Crete-Monee (IL) 00-0035004 3124015
#> 115                               Rockdale County (GA) 00-0031583 2576492
#> 116                                     Barberton (OH) 00-0035265 4411771
#> 117                               Desert Mountain (AZ) 00-0031947 2517230
#> 118                                    Greenville (AL) 00-0036291 4035494
#> 119                                   Charter Oak (CA) 00-0030968   17315
#> 120                                     Hephzibah (GA) 00-0027963   13993
#> 121                            Southfield-Lathrup (MI) 00-0032405 2587711
#> 122                                Don Bosco Prep (NJ) 00-0036295 4044138
#> 123                                 Shepherd Hill (MA) 00-0035630 3672833
#> 124                                     Ridgewood (NJ) 00-0033702 3049899
#> 125                     Prince of Peace Christian (TX) 00-0034921 3048898
#> 126                                         Maury (VA) 00-0029955   16449
#> 127                                     Vacaville (CA) 00-0036300 4243009
#> 128                                        Jesuit (LA) 00-0032388 2976545
#> 129                                      Timpview (UT) 00-0033298 3055105
#> 130                                  Lincoln Prep (MO) 00-0033880 3051852
#> 131                                       Babylon (NY) 00-0035008 3120810
#> 132                                    St. John's (SC) 00-0031624 3137087
#> 133                                John Burroughs (MO) 00-0034413 3050073
#> 134                                    Carrollton (GA) 00-0028845   15151
#> 135                                       Armwood (FL) 00-0036319 3916449
#> 136                                          Penn (PA) 00-0026143   11237
#> 137                                    Cape Coral (FL) 00-0034131 3040535
#> 138                             West Chester East (PA) 00-0022787    5615
#> 139                                   Gainesville (FL) 00-0035551 3886841
#> 140                                       Tarboro (NC) 00-0032241 2977644
#> 141                                 McGill-Toolen (AL) 00-0034378 3123969
#> 142                               Belleville West (IL) 00-0033567 3125403
#> 143                                      Canisius (NY) 00-0035273 3123944
#> 144                                         Cajon (CA) 00-0033512 2976099
#> 145                                     Sylacauga (AL) 00-0033059 3045128
#> 146                                         Cairo (GA) 00-0030543   15874
#> 147                                   Cinnaminson (NJ) 00-0034140 3157727
#> 148                                        Elkins (TX) 00-0031279   16713
#> 149                                      Brashear (PA) 00-0029762   16247
#> 150                                          Fife (WA) 00-0035235 3127304
#> 151                              Madison Southern (KY) 00-0028042   14099
#> 152                             The Bolles School (FL) 00-0034830 3924365
#> 153                                  Cherry Creek (CO) 00-0034788 3118954
#> 154                                       Monarch (FL) 00-0034837 3925357
#> 155                             St. Joseph's Prep (PA) 00-0035208 3917914
#> 156                              Highland Springs (VA) 00-0035500 4037235
#> 157                                   Martinsburg (WV) 00-0035782 4366710
#> 158                                         Foley (AL) 00-0027944   13982
#> 159                                     Ravenwood (TN) 00-0035789 4052137
#> 160                              Cardinal Gibbons (FL) 00-0034132 3126002
#> 161                                  Redemptorist (LA) 00-0034411 3115378
#> 162                                   Crete-Monee (IL) 00-0032951 3051889
#> 163                               Deerfield Beach (FL) 00-0034646 3115255
#> 164                                          Reed (NV) 00-0034141 4037481
#> 165                                      Anderson (OH) 00-0031923 2516865
#> 166                                      Westlake (CA) 00-0035112 3863820
#> 167                         Worthington Kilbourne (OH) 00-0032575 2576733
#> 168                                     Webb City (MO) 00-0035992 4035112
#> 169                                    McClymonds (CA) 00-0032165 2578378
#> 170                        Francis Howell Central (MO) 00-0031331   16948
#> 171                                       Potomac (MD) 00-0032770 2976244
#> 172                                        Colton (CA) 00-0027965   13963
#> 173                                        Colony (CA) 00-0036124 4027919
#> 174                               Long Beach Poly (CA) 00-0034979 3912545
#> 175                                        Hoover (AL) 00-0033281 3126356
#> 176                                      Woodbury (NJ) 00-0034265 3054841
#> 177                                 Wichita South (KS) 00-0034388 3047188
#> 178                                       Oakleaf (FL) 00-0035422 3915255
#> 179                               Peachtree Ridge (GA) 00-0036127      NA
#> 180                                    Whitehouse (TX) 00-0035485 3914477
#> 181                              South Fort Myers (FL) 00-0032454 3045130
#> 182                                Rockwall-Heath (TX) 00-0034277 3929846
#> 183                                    Globe Tech (NY) 00-0033046 3115914
#> 184                                    Stephenson (GA) 00-0036076 3915186
#> 185                 Friendship Collegiate Academy (DC) 00-0033123 3053044
#> 186                                  Beaver Local (OH) 00-0029586   14964
#> 187                                McKinney North (TX) 00-0036130 4035245
#> 188                                  Stone Bridge (VA) 00-0036191 3895837
#> 189                                        Pelham (AL) 00-0035518 3115492
#> 190                                      Longview (TX) 00-0036081 3915837
#> 191                                  Denver South (CO) 00-0026190   11284
#> 192                                               <NA> 00-0035131 3125872
#> 193                              North Fort Myers (FL) 00-0030112   15973
#> 194                                  David Prouty (MA) 00-0033376 2975417
#> 195                            T. Wingate Andrews (NC) 00-0027988   14018
#> 196                    Kapaun Mt. Carmel Catholic (OK) 00-0034978 4037650
#> 197                                               <NA> 00-0035124 3912157
#> 198                                     Arrowhead (WI) 00-0036132 4046551
#> 199                                      Rockford (MI) 00-0032771 2576569
#> 200                                         Foley (AL) 00-0030505   15792
#> 201                              East Mississippi (MS) 00-0036214 4242247
#> 202                                            Handley 00-0034281 3054842
#> 203                                      Westlake (TX) 00-0029597   15683
#> 204                                 Cypress Falls (TX) 00-0035103 3122141
#> 205                              Iola-Scandinavia (WI) 00-0036157 4036153
#> 206                                       Pahokee (FL) 00-0028103   14202
#> 207                                       Livonia (LA) 00-0036323 4242207
#> 208                                        Marion (IL) 00-0035136 2579634
#> 209                                West Feliciana (LA) 00-0035651 3122766
#> 210                                    John Tyler (TX) 00-0033283 3040037
#> 211                                  Walnut Ridge (OH) 00-0036280 4040615
#> 212                            St. Thomas Aquinas (FL) 00-0034881 3042445
#> 213                                   Waynesville (MO) 00-0028932   15264
#> 214                               West Bloomfield (MI) 00-0032415 3961466
#> 215                                  Timber Creek (FL) 00-0034787 3060403
#> 216                                     Brookwood (GA) 00-0035408 3915184
#> 217                         Evangelical Christian (TN) 00-0027557   13848
#> 218                               Rockwood Summit (MO) 00-0030511   15875
#> 219                                       Neville (LA) 00-0031346   16857
#> 220                                         Boone (FL) 00-0034684 3054971
#> 221                                        Seward (NE) 00-0024417    9789
#> 222                                    Hallandale (FL) 00-0035993 4035671
#> 223                                 Boynton Beach (FL) 00-0034796 3916387
#> 224                                 Copperas Cove (TX) 00-0029665   14875
#> 225                                   Briar Woods (VA) 00-0035146 3116172
#> 226                          Southwestern Academy (MI) 00-0027966   13981
#> 227                                     Crestwood (SC) 00-0036457      NA
#> 228                                   Tottenville (NY) 00-0034184 3051926
#> 229                                     La Grange (TX) 00-0036158 4241985
#> 230                          Booker T. Washington (OK) 00-0034975 4038441
#> 231                                        Folsom (CA) 00-0031559 2577139
#> 232                           Richard J. Reynolds (NC) 00-0027539   13845
#> 233                                   King's Fork (VA) 00-0033294 3045463
#> 234                                     Albemarle (NC) 00-0034699 3039713
#> 235                                    Assumption (LA) 00-0030046   16004
#> 236                                       Huffman (AL) 00-0026982   12622
#> 237                                        Gorman (NV) 00-0032965 2980153
#> 238                               Peachtree Ridge (GA) 00-0034752 3116370
#> 239                                   Shadle Park (WA) 00-0031621 2517074
#> 240                                 Trabuco Hills (CA) 00-0036154 3915136
#> 241                               Desert Mountain (AZ) 00-0034753 3116365
#> 242                                       Minster (OH) 00-0036129 3915400
#> 243                                         Klein (TX) 00-0031690 2511973
#> 244                           High Point Regional (NJ) 00-0031598 2574591
#> 245                                 Bishop Gorman (NV) 00-0031035   17348
#> 246                           Providence Catholic (IL) 00-0035703 3932423
#> 247                                 Cibolo Steele (TX) 00-0035126 4043161
#> 248                                        Lufkin (TX) 00-0027902   13215
#> 249                              Thomas Jefferson (FL) 00-0032398 2576581
#> 250                                        DeSoto (TX) 00-0036133 3916204
#> 251                                   North Shore (TX) 00-0031511 2515962
#> 252                             Chaminade-Madonna (FL) 00-0035662 4241372
#> 253                                Tampa Bay Tech (FL) 00-0034406 3728254
#> 254                                      Mitchell (TN) 00-0036125 3909416
#> 255                                      Crenshaw (CA) 00-0031060   16945
#> 256                                 Coconut Creek (FL) 00-0035819 4040628
#> 257                                        Sachse (TX) 00-0036331 4039050
#> 258                              Muskegon Heights (MI) 00-0030663   17258
#> 259                         St. Michael's Academy (TX) 00-0031936 2514122
#> 260                               Archbishop Wood (PA) 00-0035382 3929631
#> 261                                 American Fork (UT) 00-0030011   16385
#> 262                                    Green Oaks (LA) 00-0033884 3042717
#> 263                                     Greenwood (SC) 00-0029285   15124
#> 264                                 Copperas Cove (TX) 00-0032735 2971734
#> 265                                Woodland Hills (PA) 00-0032617 2576665
#> 266                                       Cornell (PA) 00-0036166 3895791
#> 267                               Consortium Prep (MI) 00-0035357 3916577
#> 268                                    Fort Osage (MO) 00-0031394   16898
#> 269                                        Tucson (AZ) 00-0034514 3133440
#> 270                                       Eufaula (AL) 00-0034391 3057524
#> 271                                       Sheldon (CA) 00-0034376 3121003
#> 272                                 Miami Killian (FL) 00-0035290 3672862
#> 273                                      Fostoria (OH) 00-0030090   15960
#> 274                                 Camden County (GA) 00-0035306 3957672
#> 275                                        Austin (TX) 00-0027881   13245
#> 276                                        Brophy (AZ) 00-0031300   16751
#> 277                                  Edwardsville (IL) 00-0036192 4240585
#> 278                                   Countryside (FL) 00-0034511 3051371
#> 279                                       Tarrant (AL) 00-0028339   14320
#> 280                            St. Thomas Aquinas (FL) 00-0033408 2980098
#> 281                                       Bingham (UT) 00-0030455   15802
#> 282                                Woodland Hills (PA) 00-0032416 2577078
#> 283                                  Millard West (NE) 00-0034782 3117255
#> 284                                   Omaha North (NE) 00-0032660 2982857
#> 285                                               <NA> 00-0035560 4262273
#> 286                                    North Pike (MS) 00-0032967 2971883
#> 287                                    Greenville (MI) 00-0032518 3057899
#> 288                                     Westfield (TX) 00-0035230 4039303
#> 289                                       Western (FL) 00-0032151 2512577
#> 290                                        Hudson (OH) 00-0030066   15879
#> 291                                   Cedar Falls (IA) 00-0034505 3040166
#> 292                                    Dutch Fork (SC) 00-0036162 3917232
#> 293                                        Damien (CA) 00-0034909 3127313
#> 294                                     Dan River (VA) 00-0034673 3929950
#> 295                     Trinity Christian Academy (FL) 00-0034430 3895831
#> 296                                     Cass Tech (MI) 00-0035202 4240528
#> 297                                    New Albany (OH) 00-0033147 3051398
#> 298                                     Talladega (AL) 00-0034933 3127075
#> 299                                    Centennial (TN) 00-0035352 4035232
#> 300                                      Kimberly (WI) 00-0030463   15964
#> 301                                    St. Joseph (CT) 00-0032366 2976249
#> 302                                      Hueytown (AL) 00-0030197   16475
#> 303                                  Dr. Phillips (FL) 00-0033571 3046287
#> 304                                        Buford (GA) 00-0032497 2976549
#> 305                                       Mayfair (CA) 00-0034721 4039396
#> 306                                     Mater Dei (CA) 00-0030533   15948
#> 307                                Houston County (GA) 00-0036197 4240689
#> 308                                       Prosper (TX) 00-0033550 3052600
#> 309                                     Firebaugh (CA) 00-0034857 3918298
#> 310                                    Hallandale (FL) 00-0036251 4035676
#> 311                                        Daphne (AL) 00-0032209 2976516
#> 312                                 Miami Central (FL) 00-0031285   16944
#> 313                                   Deer Valley (CA) 00-0028063   14167
#> 314                                Royal Grammar (GBR) 00-0035728 4420894
#> 315                                  North Stanly (NC) 00-0036188 4040629
#> 316                             American Heritage (FL) 00-0035250 4040761
#> 317                                       Astoria (OR) 00-0030114   15979
#> 318                                    Holy Cross (NY) 00-0031870 2519038
#> 319                            Montgomery Academy (AL) 00-0036189 3917159
#> 320                                     Wenatchee (WA) 00-0036185 3886808
#> 321                                     Pineville (LA) 00-0035238 3707061
#> 322                                        Rahway (NJ) 00-0033904 3051324
#> 323                                   Lake Dallas (TX) 00-0031567 2514244
#> 324                                       Grissom (AL) 00-0033816 2977954
#> 325                                   James Bowie (TX) 00-0029709   15724
#> 326                             Brentwood Academy (TN) 00-0035689 3930086
#> 327                              Downingtown East (PA) 00-0032214 2582410
#> 328                                        Carmel (IN) 00-0035322 3125999
#> 329                                      Westland (OH) 00-0036187 4039505
#> 330                                        Powell (TN) 00-0028097   14215
#> 331                                Don Bosco Prep (NJ) 00-0035308 3122818
#> 332                         Reserve (LA) East St. John 00-0032945 3115315
#> 333                             American Heritage (FL) 00-0033466 3128724
#> 334                                   South Elgin (IL) 00-0031787 3085107
#> 335                                  Good Counsel (MD) 00-0031588 2976212
#> 336                                     Homestead (FL) 00-0031051   16804
#> 337                                     Grandview (CO) 00-0033633 3043841
#> 338                               La Costa Canyon (CA) 00-0030085   16016
#> 339                                    Little Elm (TX) 00-0029000   15349
#> 340                                 Spring Valley (SC) 00-0027691   13226
#> 341                                      Seminole (FL) 00-0036196 4243537
#> 342                              Berean Christian (CA) 00-0036165 4242540
#> 343                                       Council (ID) 00-0031349   16847
#> 344                                        Jordan (UT) 00-0030869   17196
#> 345                                         Plano (TX) 00-0035958 3928936
#> 346                                     Riverdale (LA) 00-0034356 3843769
#> 347                                   East Orange (NJ) 00-0033551 3943270
#> 348                                        Edison (CA) 00-0029690   14989
#> 349                                         Greer (SC) 00-0036299 4046679
#> 350                           The Ensworth School (TN) 00-0033289 3051929
#> 351                                     Charlotte (FL) 00-0036315 4046353
#> 352                                      Vanguard (FL) 00-0034398 3121552
#> 353                                       Eastern (PA) 00-0032379 3040506
#> 354                               Imani Christian (PA) 00-0036283 4241889
#> 355                               East Coast Prep (NJ) 00-0035950 4035290
#> 356                                        Camden (NJ) 00-0034496 3138733
#> 357                              North Fort Myers (FL) 00-0031261   16877
#> 358                                 Bishop Maginn (NY) 00-0035095 3126238
#> 359                                       Fishers (IN) 00-0036293 4043169
#> 360                                   Nacogdoches (TX) 00-0035082 3139108
#> 361                          University Christian (FL) 00-0034382 3115456
#> 362                              Dougherty Valley (CA) 00-0034559 4035726
#> 363                                 Spring Valley (SC) 00-0035257 3126362
#> 364                                        Shiloh (GA) 00-0032448 2972362
#> 365                                    Chancellor (VA) 00-0036288 4259594
#> 366                             American Heritage (FL) 00-0035713 4035631
#> 367                                    Stephenson (GA) 00-0034223 3051766
#> 368                              Lambeth College (GBR) 00-0031500 3734467
#> 369                                       Raleigh (MS) 00-0032578 2577392
#> 370                                Quince Orchard (MD) 00-0031105   17071
#> 371                                        Lanier (GA) 00-0036220 4035495
#> 372                                Lake Park West (IL) 00-0036170 4046721
#> 373                                      Robinson (FL) 00-0034461 3051369
#> 374                                       Central (IN) 00-0030448   15862
#> 375                                        Spring (TX) 00-0036311 4035407
#> 376                                        Dacula (GA) 00-0033296 4212884
#> 377                                      Brockton (MA) 00-0035344 3915304
#> 378                                       Central (FL) 00-0032149 2576639
#> 379                                      Lakeside (GA) 00-0035952 3916943
#> 380                                    Ridge View (SC) 00-0035300 4259480
#> 381                                       Central (NE) 00-0031734 3163375
#> 382                                 Carl Sandburg (IL) 00-0031353   16741
#> 383                                North Stafford (VA) 00-0035192 3124084
#> 384                                      Wesleyan (GA) 00-0035772      NA
#> 385                                        Xavier (OH) 00-0029248   14938
#> 386                                     West Side (NJ) 00-0029212   15070
#> 387                                    Bloomfield (CT) 00-0029061   15373
#> 388                                   Grant Union (CA) 00-0031550 2978313
#> 389                                   Lake Gibson (FL) 00-0031120   17401
#> 390                 Friendship Collegiate Academy (DC) 00-0034396 3053047
#> 391                                         Wylie (TX) 00-0036432 3928928
#> 392                                        DeSoto (TX) 00-0035954 3917673
#> 393                           Nashville Christian (TN) 00-0035929 4035177
#> 394                                   Brophy Prep (AZ) 00-0026027   11759
#> 395                            St. Thomas Aquinas (FL) 00-0031363   17475
#> 396                                         A.C. Flora 00-0036320 3924357
#> 397                            Miami Northwestern (FL) 00-0031237   16728
#> 398                                     Elizabeth (NJ) 00-0033275 3051308
#> 399                           Davidson Day School (NC) 00-0035251 3115252
#> 400                               Decatur Central (IN) 00-0036433 3791110
#> 401                                       Trinity (KY) 00-0034578 3116642
#> 402                                    Kecoughtan (VA) 00-0034164 4261020
#> 403                                  Mundy's Mill (GA) 00-0035957      NA
#> 404                               Valor Christian (CO) 00-0033280 3117251
#> 405                                    Stephenson (GA) 00-0032063 3025433
#> 406                                        Citrus (FL) 00-0036037 4044133
#> 407                                     Broughton (NC) 00-0032403 2577740
#> 408                                           Lee (AL) 00-0034571 3123303
#> 409                                         Allen (TX) 00-0035694 4047661
#> 410                                        Okemos (MI) 00-0033284 2973051
#> 411                                   George Bush (TX) 00-0027859   13242
#> 412                                     New Trier (IL) 00-0035613 3912487
#> 413                                Digital Harbor (MD) 00-0034365 4045305
#> 414                               Archbishop Wood (PA) 00-0033720 2980120
#> 415                                Donaldsonville (LA) 00-0036438 4035426
#> 416                                      Loveland (OH) 00-0035956 3916749
#> 417                             Cardinal Spellman (NY) 00-0031484 2531358
#> 418                              Dowling Catholic (IA) 00-0033937 2977629
#> 419                             Cleveland Heights (OH) 00-0033573 3042417
#> 420                                        Laurel (MS) 00-0035947 3917166
#> 421                             New London Spicer (MN) 00-0034052 4294520
#> 422                                      Havelock (NC) 00-0033111 3048897
#> 423                              St. John Vianney (NJ) 00-0034922 3039968
#> 424                                    Plantation (FL) 00-0032688 2574808
#> 425                                  Erasmus Hall (NY) 00-0033282 3121427
#> 426                                     Jefferson (FL) 00-0035548 3138760
#> 427                     Imhotep Institute Charter (PA) 00-0034827 3915416
#> 428                                       Neptune (NJ) 00-0034317 3046401
#> 429                             American Heritage (FL) 00-0032609 2591718
#> 430                                       Abilene (KS) 00-0032768 2577346
#> 431                                  Good Counsel (MD) 00-0035062 3129307
#> 432                                        Etowah (GA) 00-0028075   14139
#> 433                                        Tucker (GA) 00-0035696 3916126
#> 434                              Lawrence Central (IN) 00-0032849 2578317
#> 435                                     Pittsburg (CA) 00-0035293 3860287
#> 436                            Mount Saint Joseph (MD) 00-0031041   16715
#> 437                                  Central East (CA) 00-0036292 4243253
#> 438                                  Northwestern (FL) 00-0033103 3051921
#> 439                                    Plantation (FL) 00-0033612 3045278
#> 440                                        Oswego (IL) 00-0034607 4294837
#> 441                                 North Clayton (GA) 00-0036307 4036651
#> 442                 Friendship Collegiate Academy (DC) 00-0033545 3115257
#> 443                                       Kimball (TX) 00-0028924   15235
#> 444                                      Columbus (FL) 00-0032774 2969944
#> 445                                        Spring (TX) 00-0032786 3960454
#> 446                                    Massaponax (VA) 00-0032790 2566034
#> 447                          Lincoln Park Academy (FL) 00-0036205 4257195
#> 448                               Fort Dorchester (SC) 00-0027952   13984
#> 449                                               <NA> 00-0035064      NA
#> 450                                    Billy Ryan (TX) 00-0032265 2969921
#> 451                           South Grand Prairie (TX) 00-0032667 2574891
#> 452                                East St. Louis (IL) 00-0035302 3924310
#> 453                         Lorne Park Secondary (CAN) 00-0031177   16831
#> 454                                     Del Campo (CA) 00-0029657   14984
#> 455                                        Peoria (IL) 00-0036204 4376288
#> 456                             Warren G. Harding (OH) 00-0034347 3894849
#> 457                          Choate Rosemary Hall (CT) 00-0036202 4032052
#> 458                                      Westside (TX) 00-0032384 2972304
#> 459                                         Selma (AL) 00-0036318 3912245
#> 460                       Montgomery Bell Academy (TN) 00-0035061 3129290
#> 461                              Chartiers Valley (PA) 00-0030094   16035
#> 462                                    Belleville (MI) 00-0036317 4241422
#> 463                          St. Joseph's Academy (FL) 00-0031203   17427
#> 464                                        Sunset (FL) 00-0034173 4034949
#> 465                                  Macon County (GA) 00-0034874 3915189
#> 466                                    Cedar Hill (TX) 00-0036305 3917016
#> 467                                  South Warren (KY) 00-0034372 3124779
#> 468                                   West Monroe (LA) 00-0030558   15805
#> 469                                        Tucker (GA) 00-0031838 2577145
#> 470                                      Leesburg (FL) 00-0029577   15074
#> 471                                      McDonogh (MD) 00-0034801 3128303
#> 472                                      Westwood (FL) 00-0031040   16710
#> 473                                      Foothill (CA) 00-0032789 3116368
#> 474                                       Punahou (HI) 00-0030278   15867
#> 475                                         Weber (UT) 00-0028284   14572
#> 476                                       Maloney (CT) 00-0030070   15846
#> 477                               Hodgson Vo-Tech (DE) 00-0034387 3117922
#> 478                 Friendship Collegiate Academy (DC) 00-0031551 2969924
#> 479                             Southeast Raleigh (NC) 00-0031193   16952
#> 480                            Palm Beach Central (FL) 00-0031079   16863
#> 481                                        Mentor (OH) 00-0033869 3039707
#> 482                                      Westlake (TX) 00-0029567   14877
#> 483                                     Kingsburg (CA) 00-0030151   16252
#> 484                              Central Catholic (OR) 00-0034597 3127335
#> 485                                    Auburndale (FL) 00-0036208 4042808
#> 486                                          Bunn (NC) 00-0033556 3066158
#> 487                                 Mount Healthy (OH) 00-0035685 4035538
#> 488                                     Princeton (OH) 00-0030414   16020
#> 489                                 Boyd Anderson (FL) 00-0033784 3054847
#> 490                                     Richwoods (IL) 00-0027743   13419
#> 491                                  New Rochelle (NY) 00-0032797 2979595
#> 492                                Sheepshead Bay (NY) 00-0033631 3060134
#> 493                                       Concord (IN) 00-0032766 2979499
#> 494                                   San Leandro (CA) 00-0031095   16848
#> 495                     Hargrave Military Academy (VA) 00-0029528   15096
#> 496                                      Matignon (MA) 00-0036210 4362648
#> 497                              Oak Hill Academy (VA) 00-0035756 2982484
#> 498                                        Shaler (PA) 00-0032986 2970262
#> 499                                    St. Viator (IL) 00-0036290 4258595
#> 500                                     Roseville (MN) 00-0035562 3940587
#> 501                                   Charis Prep (NC) 00-0027696   13232
#> 502                                  Jacksonville (AR) 00-0030155   16318
#> 503                                     Glenville (OH) 00-0025396   10453
#> 504                                    Washington (CA) 00-0031763 2580216
#> 505                              Madison Memorial (WI) 00-0034633 3045164
#> 506                               Deerfield Beach (FL) 00-0035590 4035015
#> 507                                      Ed White (FL) 00-0034426 4035019
#> 508                                               <NA> 00-0033815 3043134
#> 509                                      Lakewood (FL) 00-0033957 3059918
#> 510                                  Gadsden City (AL) 00-0036309 4040655
#> 511                                        Tucker (GA) 00-0028114   14100
#> 512                              Hinsdale Central (IL) 00-0035074 3909300
#> 513                            Christian Brothers (TN) 00-0034353 3050487
#> 514                       Orchard Lake St. Mary's (MI) 00-0031428   16799
#> 515                                  Northwestern (SC) 00-0030578   15807
#> 516                                   North Shore (TX) 00-0030781   17172
#> 517                                        Andale (KS) 00-0031779 2512172
#> 518                                         Fitch (OH) 00-0034762 3051407
#> 519                                      Bradford (WI) 00-0031546 2576283
#> 520                                       Central (LA) 00-0034998 3126245
#> 521                                 St. Genevieve (CA) 00-0032757 3042619
#> 522                                     Immokalee (FL) 00-0032389 3045120
#> 523                                          Ozen (TX) 00-0034540 3115308
#> 524                                     Robichaud (MI) 00-0034683 3042785
#> 525                                      Wheatley (TX) 00-0033107 3061106
#> 526                                         Helix (CA) 00-0034446 3125356
#> 527                             Andre Agassi Prep (NV) 00-0032783 2575171
#> 528                                      Columbus (FL) 00-0035799 4240624
#> 529                       Calvary Baptist Academy (LA) 00-0033791 2982632
#> 530                                        Snider (IN) 00-0034675 3919512
#> 531                                        Milton (GA) 00-0033463 3051911
#> 532                                     Grandview (MO) 00-0035600 3116082
#> 533                            Archbishop Moeller (OH) 00-0034834 3121416
#> 534                                      Harrison (MI) 00-0036341 4039029
#> 535                                      Lawrence (KS) 00-0035513 4037633
#> 536                                     Grandview (MO) 00-0031713 2508191
#> 537                             Highland Regional (NJ) 00-0029284   14994
#> 538                            St. Thomas Aquinas (FL) 00-0027720   13311
#> 539                                               <NA> 00-0030449   15844
#> 540                                Clayton Valley (CA) 00-0034731 3915388
#> 541                                    Petersburg (VA) 00-0032043 2515319
#> 542                                       Garland (TX) 00-0036310 4046557
#> 543                                  Los Alamitos (CA) 00-0032549 3047571
#> 544                                               <NA> 00-0034441 3128752
#> 545                                        Marcus (TX) 00-0035400 3895869
#> 546                                      Plymouth (MI) 00-0035266 4040622
#> 547                                      Timpview (UT) 00-0031410   16801
#> 548                               Belleville West (IL) 00-0035145 3821683
#> 549                                         Klein (TX) 00-0029421   15091
#> 550                                   Thomasville (NC) 00-0036298 3917142
#> 551                            High Point Central (NC) 00-0035697 3116724
#> 552                                      Anderson (FL) 00-0028278   14519
#> 553                             Hilliard Davidson (OH) 00-0036314 3917992
#> 554                                      Maumelle (AR) 00-0034287 3112083
#> 555                                  Good Counsel (MD) 00-0036203 4040621
#> 556                                  Norman North (OK) 00-0033790 3052660
#> 557                                Natrona County (WY) 00-0036294 3918330
#> 558                             Southern Regional (NJ) 00-0025630   10686
#> 559                               Ottawa-Glandorf (OH) 00-0035472 3929801
#> 560                                    Buena Park (CA) 00-0033347 2979632
#> 561                                      Grimsley (NC) 00-0032424 2977670
#> 562                                      Lutheran (MO) 00-0035260 3128815
#> 563                       Vancouver College Prep (CAN) 00-0031619 2580666
#> 564                         Archbishop McNicholas (OH) 00-0027103   12669
#> 565                              La Salle College (PA) 00-0035163 3915776
#> 566                                        Athens (OH) 00-0036442 3915511
#> 567                               Paradise Valley (AZ) 00-0035652 3042876
#> 568                               Gonzaga College (DC) 00-0032784 2577128
#> 569                                  Fayetteville (AR) 00-0032434 2574511
#> 570                                     C.E. King (TX) 00-0035291 4035222
#> 571                                  Timber Creek (FL) 00-0035760 3693033
#> 572                                   Hendrickson (TX) 00-0033526 3116389
#> 573                                       Freedom (CA) 00-0033897 3116385
#> 574                            St. Thomas Aquinas (FL) 00-0030456   15826
#> 575                                  Early County (GA) 00-0030471   15877
#> 576                                     Ridgeland (GA) 00-0032939 3051388
#> 577                                   Grant Union (CA) 00-0034533 3046382
#> 578                             Eleanor Roosevelt (MD) 00-0035295 3915532
#> 579                                        Folsom (CA) 00-0035629 4040726
#> 580                            St. Thomas Aquinas (FL) 00-0031622 2576789
#> 581                              Royal Palm Beach (FL) 00-0034951 3915106
#> 582                                     Northside (LA) 00-0035395 3914371
#> 583                               Archbishop Shaw (LA) 00-0033338 3040470
#> 584                                        Medina (OH) 00-0033798 2972331
#> 585                                North Gwinnett (GA) 00-0032134 2574576
#> 586                                       Newport (WA) 00-0035631 3127310
#> 587                                Tarpon Springs (FL) 00-0035771 3923392
#> 588                                   Summerville (SC) 00-0027942   13983
#> 589                                 St. Augustine (LA) 00-0035399 3699902
#> 590                                       Wharton (FL) 00-0034686 3921564
#> 591                                    St. John's (DC) 00-0035769 3919557
#> 592                                     Oak Ridge (TN) 00-0036410 4239993
#> 593                                    Darlington (WI) 00-0032543 2977800
#> 594                                      Clairton (PA) 00-0033009 3045144
#> 595                                       DuSable (IL) 00-0033114 3123986
#> 596                                          Hart (CA) 00-0035341 3931391
#> 597                             Long Beach Jordan (CA) 00-0033460 3052177
#> 598                                 Akron Central (NY) 00-0030076   16001
#> 599                                         Petal (MS) 00-0035005 3691031
#> 600                               JSerra Catholic (CA) 00-0036236 4039016
#> 601                                     Wakefield (MA) 00-0032567 2566591
#> 602                                 Lehigh Senior (FL) 00-0034088 4036898
#> 603                       Calvary Baptist Academy (LA) 00-0035638 4035437
#> 604                                Luther Burbank (CA) 00-0031097   16927
#> 605                                     La Marque (TX) 00-0033467 2971632
#> 606                            Macedonia Nordonia (OH) 00-0034856 3915535
#> 607                                        DeSoto (TX) 00-0036114 4038437
#> 608                            Salpointe Catholic (AZ) 00-0034562 3153653
#> 609                                      Yorktown (VA) 00-0034355 3116679
#> 610                                    River Hill (MD) 00-0031548 2511523
#> 611                                 Allen Academy (MI) 00-0034488 4334405
#> 612                                   IMG Academy (FL) 00-0036282 4242208
#> 613                                      Valencia (CA) 00-0033554 3052125
#> 614                               Smithson Valley (TX) 00-0027914   13939
#> 615                                 Miami Killian (FL) 00-0034977 3917852
#> 616                              Hamshire-Fannett (TX) 00-0033403 2981511
#> 617                                   Salem Hills (UT) 00-0035404 3912553
#> 618                                 Gulliver Prep (FL) 00-0035281 4037459
#> 619                                   St. Anthony (CA) 00-0036216 4048257
#> 620                                      McKinley (OH) 00-0035449 4046907
#> 621                              Arlington Martin (TX) 00-0033868 3122132
#> 622                                         Tracy (CA) 00-0036119 3120964
#> 623                                      American (FL) 00-0029693   14982
#> 624                                Webster Groves (MO) 00-0027958   13965
#> 625                                      Westside (TX) 00-0036266 4039052
#> 626                                  Gateway Tech (MO) 00-0030573   15811
#> 627                                 James Madison (TX) 00-0033469 3046343
#> 628                                         Pasco (FL) 00-0033590 3043112
#> 629                                Warren Central (IN) 00-0033010 2976194
#> 630                                      Ragsdale (NC) 00-0033905 3050122
#> 631                      Santa Margarita Catholic (CA) 00-0034311 3040499
#> 632                                        Gretna (NE) 00-0032956 2974317
#> 633                             Long Beach Wilson (CA) 00-0031426   16740
#> 634                                 Central Islip (NY) 00-0035463 4040626
#> 635                                       Liberty (VA) 00-0034399 3045474
#> 636                                 North Forsyth (GA) 00-0034165 3049575
#> 637                                     Westfield (TX) 00-0036066 3676763
#> 638                                     Brownwood (TX) 00-0034479 3052413
#> 639                                       Jupiter (FL) 00-0030850   17082
#> 640                                        Carver (AL) 00-0035144 4040983
#> 641                                          Taft (CA) 00-0028180   14214
#> 642                                  Blue Springs (MO) 00-0033973 3125073
#> 643                                East Nashville (TN) 00-0036276 4242206
#> 644                                       Lincoln (IA) 00-0034811 3116667
#> 645                                      Heritage (CA) 00-0035646 3138834
#> 646                                         Lamar (SC) 00-0033121 2576489
#> 647                                        Oxford (AL) 00-0034500 3131775
#> 648                                  Hillsborough (FL) 00-0029008   15379
#> 649                                          Waco (TX) 00-0033066 3051775
#> 650                                   Leonardtown (MD) 00-0035042 3936185
#> 651                              Downingtown East (PA) 00-0034369 3049872
#> 652                                         Wylie (TX) 00-0028986   15168
#> 653                                   Lake Travis (TX) 00-0034855 3052587
#> 654                                      Oak Park (MI) 00-0034808 3915381
#> 655                                               <NA> 00-0035546 3929828
#> 656                                     Cedartown (GA) 00-0034791 3128720
#> 657                                     Immokalee (FL) 00-0035628 3139602
#> 658                                         South (OH) 00-0033923 3059915
#> 659                                    Union City (TN) 00-0036118 3914450
#> 660                                     Palo Duro (TX) 00-0034255 3046700
#> 661                     Liberty Christian Academy (VA) 00-0036109 3910402
#> 662               Florida State University School (FL) 00-0034779 3859006
#> 663                                     Edgewater (FL) 00-0032888 2976639
#> 664                                     Lafayette (KY) 00-0036267 4241482
#> 665                                        Carver (GA) 00-0029963   16076
#> 666                                  Jacksonville (IL) 00-0035355 3116135
#> 667                                  St. Aloysius (MS) 00-0036113      NA
#> 668                                        Butler (NC) 00-0031921 2509370
#> 669                                       Whitman (MD) 00-0033995 2976213
#> 670                                      Berkeley (SC) 00-0036120 4384564
#> 671                                  North County (MO) 00-0034991 3910156
#> 672                                     Plainwell (MI) 00-0033057 2979534
#> 673                         John Milledge Academy (GA) 00-0036232 4040774
#> 674                                   De La Salle (CA) 00-0032392 3043275
#> 675                                     Jamestown (NY) 00-0035039 3948283
#> 676                                   Cedar Grove (NJ) 00-0033885 3123076
#> 677                                       Wakulla (FL) 00-0034532 3128439
#> 678                              St. John Vianney (MO) 00-0035817 3924367
#> 679                                 Boyd Anderson (FL) 00-0033266 2971830
#> 680                           Pleasure Ridge Park (KY) 00-0033911 3059760
#> 681                                   Rock Island (IL) 00-0034258 3040137
#> 682                             George Washington (WV) 00-0033562 3039725
#> 683                                Isidore Newman (LA) 00-0031235   16733
#> 684                                    Mendenhall (MS) 00-0034854 3047876
#> 685                                       Lutcher (LA) 00-0031382   16790
#> 686                                        Dorsey (CA) 00-0033094 2578369
#> 687                                     Cass Tech (MI) 00-0036233 4258195
#> 688                                      Mesquite (TX) 00-0032977 3042910
#> 689                                  Yazoo County (MS) 00-0035104 4249496
#> 690                                Choctaw County (MS) 00-0036110 3917569
#> 691                                      Bellevue (WA) 00-0032877 2573307
#> 692                                       Amherst (WI) 00-0036376 4035788
#> 693                                      Big Foot (WI) 00-0030546   15793
#> 694                                  Walsh Jesuit (OH) 00-0032354 2566609
#> 695                                    Lake Worth (FL) 00-0029278   15108
#> 696                                        Varina (VA) 00-0032438 2979655
#> 697                                  Calhoun City (MS) 00-0035542 4243831
#> 698                                 Avalon School (MD) 00-0036361 4040966
#> 699                                  Hillsborough (FL) 00-0033047 2977756
#> 700                              Carman-Ainsworth (MI) 00-0026280   11363
#> 701                                     Manhattan (KS) 00-0033222 2977689
#> 702                                     Oak Grove (CA) 00-0033548 3052101
#> 703                                 Linsly School (WV) 00-0031357   17474
#> 704                                     Cass Tech (MI) 00-0033928 3045207
#> 705                                           Ely (FL) 00-0032410 3042718
#> 706                                   IMG Academy (FL) 00-0035370 4035425
#> 707                                   West Monroe (LA) 00-0033579 3040572
#> 708                                         Jenks (OK) 00-0034736 3116387
#> 709                                     Paraclete (CA) 00-0033083 2573317
#> 710                                      Cleburne (TX) 00-0036372 3917006
#> 711                                       Raytown (MO) 00-0027945   13988
#> 712                                    Long Reach (MD) 00-0036029 3930024
#> 713                                  Silver Bluff (SC) 00-0031411   16802
#> 714                                        Kahuku (HI) 00-0036379 4035660
#> 715                         Hamilton Southeastern (IN) 00-0032197 3040479
#> 716                                   North Shore (TX) 00-0034373 3928979
#> 717                             Catholic Central (CAN) 00-0029641   14987
#> 718                                      Wooddale (TN) 00-0029688   14939
#> 719                    Red Lion Christian Academy (DE) 00-0033598 3008150
#> 720                                      Suwannee (FL) 00-0035247 4042141
#> 721                                          Taft (CA) 00-0032871 2577278
#> 722                                       Natchez (MS) 00-0031636 2574009
#> 723                                      Hardaway (GA) 00-0035462 4241221
#> 724                 Canada Prep Football Academy (CAN) 00-0036366 3892883
#> 725                               Long Beach Poly (CA) 00-0029492   15653
#> 726                                Bishop Chatard (IN) 00-0031402   16709
#> 727                                   Lake-Lehman (PA) 00-0035679 4033748
#> 728                                       Coppell (TX) 00-0034352 3821577
#> 729                                Lincoln Pius X (NE) 00-0029621   14993
#> 730                                      Danville (IL) 00-0031999 2574282
#> 731                                  Salmon River (ID) 00-0034674 3138677
#> 732                                  Bishop Luers (IN) 00-0033052 3052896
#> 733                             Lincoln Southeast (NE) 00-0035413 3116097
#> 734                              Blackville-Hilda (SC) 00-0030761   17266
#> 735                                      Herriman (UT) 00-0036028 3932336
#> 736                                       Central (AZ) 00-0036137      NA
#> 737                               Upper St. Clair (PA) 00-0027663   13284
#> 738                               Corrigan-Camden (TX) 00-0036030 4039075
#> 739                                   Notre Dame (CAN) 00-0023298    9349
#> 740                                     Woodridge (OH) 00-0036458      NA
#> 741                                         Coosa (GA) 00-0028664   14723
#> 742                              Lansing Catholic (MI) 00-0033662 2972515
#> 743                                          Katy (TX) 00-0027973   14012
#> 744                                 Pine-Richland (PA) 00-0036384 3895785
#> 745                                      Haughton (LA) 00-0033077 2577417
#> 746                                   Lake Travis (TX) 00-0031395   16809
#> 747                                       Melrose (TN) 00-0035261 3916148
#> 748                                 A.C. Reynolds (NC) 00-0036139 4038815
#> 749                                      Kingwood (TX) 00-0036033 4038539
#> 750                                John Burroughs (MO) 00-0033045 3051392
#> 751                                      Woodlawn (LA) 00-0035301 3122135
#> 752                                   Noblesville (IN) 00-0035418 3929795
#> 753                                      Columbia (GA) 00-0033414 3048698
#> 754                                        Elmont (NY) 00-0034280 4034522
#> 755                                   First Coast (FL) 00-0035492 3895830
#> 756                                         UANL (MEX) 00-0036448 4686629
#> 757                                North Gwinnett (GA) 00-0035416 3728250
#> 758                               Colquitt County (GA) 00-0032145 2512504
#> 759                                  Rancho Verde (CA) 00-0027947   13978
#> 760                                         Salem (VA) 00-0034186 3120738
#> 761                                  Redemptorist (LA) 00-0031534 2577302
#> 762                                        Steele (TX) 00-0036036 3915834
#> 763                                        Tuttle (OK) 00-0033658 2991767
#> 764                                       Bingham (UT) 00-0034383 3117256
#> 765                                Bishop Carroll (KS) 00-0032062 2514206
#> 766                        Shepherd Hill Regional (MA) 00-0036032 4036275
#> 767                                Pleasant Grove (CA) 00-0033315 2968204
#> 768                          Sacred Heart-Griffin (IL) 00-0034867 3115928
#> 769                                        DeSoto (TX) 00-0034593 3122430
#> 770                                 White Station (TN) 00-0034418 4036335
#> 771                               Pope John XXIII (NJ) 00-0033591 3121409
#> 772                                  Northwestern (FL) 00-0031544 2976499
#> 773                                        Monroe (GA) 00-0034764 4036348
#> 774                                        Foster (TX) 00-0036358 4241389
#> 775                                       Livonia (LA) 00-0036136      NA
#> 776                                     West Side (IN) 00-0035417 3126095
#> 777                                    Gwynn Park (MD) 00-0036034 4032749
#> 778                                     Dutchtown (LA) 00-0036391 4035448
#> 779                                         Guyer (TX) 00-0034118 3040013
#> 780                       St. Petersburg Catholic (FL) 00-0031185   16842
#> 781                          Cy Woods High School (TX) 00-0031904 2515641
#> 782                                  H.D. Woodson (DC) 00-0036106 4037647
#> 783                                    Hogan Prep (MO) 00-0031991 2613234
#> 784                                      Columbus (GA) 00-0035862 4037216
#> 785                                      Harrison (MI) 00-0036390 3894830
#> 786                     Governor Thomas Jefferson (MD) 00-0033568 2976259
#> 787                                      Westside (GA) 00-0027872   13254
#> 788                     Trinity Christian Academy (FL) 00-0034603 3843234
#> 789                                        Tucker (GA) 00-0030228   16562
#> 790                                  Dixie County (FL) 00-0034744 3115250
#> 791                                    Germantown (PA) 00-0032958 2971248
#> 792                                       Central (TX) 00-0035227 3929850
#> 793                                     Oceanside (CA) 00-0034948 3117249
#> 794                                 Martin County (FL) 00-0032971 2969860
#> 795                              Mequon Homestead (WI) 00-0031270   16837
#> 796                                    Sandalwood (FL) 00-0033782 3045377
#> 797                              Waubonsie Valley (IL) 00-0035073 4422407
#> 798                                     Hillgrove (GA) 00-0034832 3116733
#> 799                                    Eaglecrest (CO) 00-0035557 3145343
#> 800                                  St. Ignatius (OH) 00-0035678 3915525
#> 801                                        Daniel (SC) 00-0031795 2576508
#> 802                                Jefferson City (MO) 00-0030577   15816
#> 803                                      Columbia (FL) 00-0031170   16785
#> 804                           Northwest Whitfield (GA) 00-0035519 3131784
#> 805                                      La Habra (CA) 00-0032463 3134288
#> 806                                    Weddington (NC) 00-0032138 2512544
#> 807                                          Hope (AR) 00-0036420 4035566
#> 808                               Long Beach Poly (CA) 00-0028015   14047
#> 809                                      Leilehua (HI) 00-0036399 4040910
#> 810                                       Brenham (TX) 00-0034112 4038544
#> 811                                       Wiggins (CO) 00-0035702 3125082
#> 812                               Marmion Academy (IL) 00-0032395 2576245
#> 813                                    North Penn (PA) 00-0029822   16339
#> 814                             Archbishop Rummel (LA) 00-0036459      NA
#> 815                                    St. Paul's (AL) 00-0029670   14932
#> 816                                        Alonso (FL) 00-0031956 2579601
#> 817                                        Dothan (AL) 00-0034954 3124634
#> 818                                       De Soto (TX) 00-0027940   13976
#> 819                                     East Lake (FL) 00-0036428 3919548
#> 820                                          Mays (GA) 00-0035615 3728310
#> 821                            Archbishop Carroll (DC) 00-0031258   16761
#> 822                                       Wakulla (FL) 00-0029272   15075
#> 823                                       Decorah (IA) 00-0034368 3040150
#> 824                                         Plano (IL) 00-0033659 2974344
#> 825                            Blue Springs South (MO) 00-0034956 2512419
#> 826                                        Warner (SD) 00-0036440 3930915
#> 827                                   Gainesville (GA) 00-0034887 2577712
#> 828                                       Danbury (FL) 00-0033452 2982304
#> 829                                 Cheyenne East (WY) 00-0035757 3925443
#> 830                               Highlands Ranch (CO) 00-0029890   16377
#> 831                                  Starr's Mill (GA) 00-0030092   15928
#> 832                                  Lee's Summit (MO) 00-0035704 3924327
#> 833                                       Hagerty (FL) 00-0032436 2574630
#> 834                                   Shadle Park (WA) 00-0034955 3722362
#> 835                 Little Rock Christian Academy (AR) 00-0035448 4035102
#> 836                                          Pike (IN) 00-0035912 3916721
#> 837                                  Denver South (CO) 00-0034109 3052117
#> 838                                    South View (NC) 00-0035427 3914534
#> 839                                      Bradford (WI) 00-0032144 2576434
#> 840                                      Imperial (CA) 00-0034838 3122672
#> 841                                     Iona Prep (NY) 00-0034085 3912343
#> 842                                      Columbia (FL) 00-0034111 3116602
#> 843                                        Higley (AZ) 00-0034929 3128773
#> 844                                   Downingtown (PA) 00-0033676 3059839
#> 845                                    Alexandria (LA) 00-0026814   13050
#> 846                                      Westlake (TX) 00-0034957 3123867
#> 847                                      Westlake (CA) 00-0033538 4035662
#> 848                                North Gwinnett (GA) 00-0031417   16722
#> 849                                   Grant Union (CA) 00-0036024 3912573
#> 850                              Waubonsie Valley (IL) 00-0034393 3045264
#> 851                                   Omaha South (NE) 00-0035644 4036131
#> 852                            Pickerington North (OH) 00-0033564 3045225
#> 853                          Sacred Heart Griffin (IL) 00-0036423 4035115
#> 854                                       Central (OH) 00-0032394 2576399
#> 855                               Campbell County (WY) 00-0034932 3125402
#> 856                                         Plant (FL) 00-0034959 3125107
#> 857                                       Navarre (FL) 00-0033953 3045118
#> 858                                       Brenham (TX) 00-0034348 3128429
#> 859                                      Jim Hill (MS) 00-0033994 2971397
#> 860                               Deerfield Beach (FL) 00-0036407 4241463
#> 861                                 Mountain View (VA) 00-0034370 3057987
#> 862                               University City (CA) 00-0033375 3134353
#> 863                               Southern Durham (NC) 00-0035864 3700815
#> 864                                    Lewisville (TX) 00-0034930 4422214
#> 865                                     Westfield (TX) 00-0036439 4034964
#> 866                                   IMG Academy (FL) 00-0036412 4240380
#> 867                                      Westgate (LA) 00-0031319   17463
#> 868                                Brebeuf Jesuit (IN) 00-0034058 2971093
#> 869                                    Chanhassen (MN) 00-0034345 3128689
#> 870                   Fork Union Military Academy (VA) 00-0031306   16876
#> 871                                 Tampa Gaither (FL) 00-0035270 3116175
#> 872                           South Grand Prairie (TX) 00-0036274 4241984
#> 873                                      Lakeland (FL) 00-0031628 2515490
#> 874                                         Glenn (NC) 00-0032635 2575523
#> 875                                    Long Beach (MS) 00-0027375   13681
#> 876                                        Wilson (WA) 00-0030562   15812
#> 877                                      Scotland (NC) 00-0032934 2969422
#> 878                                     Marquette (IL) 00-0034639 3050916
#> 879                                     Brunswick (GA) 00-0031796 2577707
#> 880                               Bishop Sullivan (VA) 00-0036011 4030779
#> 881                                      Foothill (NV) 00-0032399 2575164
#> 882                                  College Park (TX) 00-0035188 4039292
#> 883                                 Lloyd C. Bird (VA) 00-0036010 4046680
#> 884                                     Brunswick (GA) 00-0034745 3042499
#> 885                                     Bassfield (MS) 00-0035327      NA
#> 886                                   Ardrey Kell (NC) 00-0036249 4046690
#> 887                                 Mount Healthy (OH) 00-0032727 2576267
#> 888                            Cretin-Derham Hall (MN) 00-0036444 3873928
#> 889                         Thomas County Central (GA) 00-0035531 3728253
#> 890                                   Ardrey Kell (NC) 00-0032655 2980147
#> 891                                    Woodbridge (VA) 00-0034371 3126352
#> 892                               Memphis Central (TN) 00-0034590 3042746
#> 893                                      Columbia (AL) 00-0031566 2574519
#> 894                               Rockdale County (GA) 00-0034326 3128264
#> 895                               Agua Fria Union (AZ) 00-0027701   13373
#> 896                                       Thomson (GA) 00-0034586 3043127
#> 897                          Orangeburg-Wilkinson (SC) 00-0035455 3728248
#> 898                                   West Jordan (UT) 00-0036238 4243257
#> 899                                        Auburn (WA) 00-0032143 2578384
#> 900                                     Cleveland (TX) 00-0035334 3124052
#> 901                                         Minor (AL) 00-0030500 2317118
#> 902                             Southlake Carroll (TX) 00-0034495 3128412
#> 903                                     Penncrest (PA) 00-0036258 3930040
#> 904                                      Xaverian (NY) 00-0030083   15972
#> 905                                    University (WA) 00-0032418 2978331
#> 906                                 James Clemens (AL) 00-0036234 3915252
#> 907                                        Estero (FL) 00-0023853   11122
#> 908                            Lampeter-Strasburg (PA) 00-0035189 3128444
#> 909                             Birmingham Groves (MI) 00-0035330 4423367
#> 910                                     Northeast (TN) 00-0033557 3044729
#> 911                             Hunterdon Central (NJ) 00-0034171 3116158
#> 912                                    Mira Costa (CA) 00-0035240 3124587
#> 913                                        Carver (AL) 00-0034336 3115310
#> 914                               Franklin County (MS) 00-0030421   15830
#> 915                                 Camden County (GA) 00-0033539 3054951
#> 916                                     Bob Jones (AL) 00-0033058 2979855
#> 917                                Roanoke Rapids (NC) 00-0031050   16764
#> 918                                   Lake Howell (FL) 00-0031130   17070
#> 919                                        Lufkin (TX) 00-0022455    8362
#> 920                          Ladue Horton Watkins (MO) 00-0035156 3916370
#> 921                                 Highland Park (TX) 00-0026498   12483
#> 922                                       Carroll (TX) 00-0026544   12471
#> 923                                     Creekview (TX) 00-0035040 3116188
#> 924                               Madison Academy (AL) 00-0034349 3916925
#> 925                             St. Joseph's Prep (PA) 00-0036275 4259545
#> 926                                Seminole Ridge (FL) 00-0035596 3919104
#> 927                                     Palestine (TX) 00-0025394   10452
#> 928                                       Trinity (KY) 00-0034654 3052449
#> 929                                     Los Gatos (CA) 00-0034433 3125232
#> 930                                 Caesar Rodney (DE) 00-0030383   15842
#> 931                          Choate Rosemary Hall (CT) 00-0035655 3915297
#> 932                            Pickerington North (OH) 00-0034614 3045238
#> 933                                Ralston Valley (CO) 00-0033863 3046435
#> 934                                        Haltom (TX) 00-0032785 2971557
#> 935                                        Xavier (IA) 00-0035328 3145005
#> 936                                        Butler (OH) 00-0032381 2976292
#> 937                                  Green Valley (NV) 00-0034390 3122687
#> 938                                  Western Tech (MD) 00-0031922 3144062
#> 939                                Scott's Branch (SC) 00-0032429 2978727
#> 940                               South Allegheny (PA) 00-0032135 2979590
#> 941                                 Bishop Gorman (NV) 00-0035309 3932433
#> 942                             Eastside Catholic (WA) 00-0036008 4243318
#> 943                                      Chariton (IA) 00-0035229 4036133
#> 944                                    Point Loma (CA) 00-0033572 3061612
#> 945                                   Farmingdale (NY) 00-0035544 3126997
#> 946                               South Brunswick (NJ) 00-0029632   14922
#> 947                                      Eitwanda (CA) 00-0029293   15072
#> 948                                 The Woodlands (TX) 00-0026035   11674
#> 949                             Stratford Academy (GA) 00-0036277 4035793
#> 950                                      Los Osos (CA) 00-0033306 3056476
#> 951                                         Spoto (FL) 00-0032626 3115913
#> 952                            St. Rita of Cascia (IL) 00-0033932 2974858
#> 953                                      Boardman (OH) 00-0031019   16864
#> 954                                        Eureka (CA) 00-0036273 3915139
#> 955                                West Jefferson (LA) 00-0034274 3041098
#> 956                                 Winder-Barrow (GA) 00-0034468 3124849
#> 957                                 Bishop O'Dowd (CA) 00-0033524 3052170
#> 958                                       Mariner (WA) 00-0033091 2980150
#> 959                                    Assumption (LA) 00-0024061    5432
#> 960                                   Rocky River (NC) 00-0034728 3895429
#> 961                           Burlington Township (NJ) 00-0034990 3916676
#> 962                                  Corinth Lake (TX) 00-0034751 3144984
#> 963                                     Dollarway (AR) 00-0035079 4040870
#> 964                                  Calvert Hall (MD) 00-0031584 2582132
#> 965                                      Woodlawn (LA) 00-0035962 3928920
#> 966                                        Summit (TX) 00-0036243 4038538
#> 967                                First Colonial (VA) 00-0034179 3049331
#> 968                                      Flanagan (FL) 00-0035970 4240024
#> 969                               Boylan Catholic (IL) 00-0032412 2974348
#> 970                                     Las Vegas (NV) 00-0029303   15021
#> 971                                        Nimitz (TX) 00-0035971 3916220
#> 972                                  Dooly County (GA) 00-0033929 3051894
#> 973                                       Trinity (TX) 00-0035965 3676832
#> 974                                  George Ranch (TX) 00-0034984 3917340
#> 975                                          Cary (NC) 00-0035390 4239817
#> 976                                        Orange (NJ) 00-0035969 3930048
#> 977                           Lake Charles Boston (LA) 00-0029040   15380
#> 978                                    McCutcheon (IN) 00-0032649 3040661
#> 979                                        Martin (TX) 00-0030273   16549
#> 980                                      Rockford (MI) 00-0033490 2977626
#> 981                                   Nathan Hale (WI) 00-0029893   15900
#> 982                              Spring Lake Park (MN) 00-0036015 3930912
#> 983                                    Clarksdale (MS) 00-0035526 3115485
#> 984                                     Brentwood (TN) 00-0033082 2576736
#> 985                             St. Joseph's Prep (PA) 00-0036246 3929936
#> 986                                          Ross (OH) 00-0036242 3929794
#> 987                                    Georgetown (TX) 00-0025580   10636
#> 988                                    John Ehret (LA) 00-0036090 4035577
#> 989                                    Stephenson (GA) 00-0031935 2577446
#> 990                              Paramus Catholic (NJ) 00-0034967 4046523
#> 991                                    Lake Worth (FL) 00-0036239 4240655
#> 992                                  South County (VA) 00-0034754 3051746
#> 993                                        Reagan (TX) 00-0034999 3116431
#> 994                                    Greenville (AL) 00-0031576 3043168
#> 995                                       Liberty (CA) 00-0035961 4035817
#> 996                                    Burnsville (MN) 00-0036270 4034781
#> 997                                       Dillard (FL) 00-0035085 3128675
#> 998                                     Homestead (FL) 00-0032627 2970181
#> 999                                Hazelwood East (MO) 00-0031361   16767
#> 1000                                 Collierville (TN) 00-0034168 2980350
#> 1001                          Wilmer Amina Carter (CA) 00-0033120 3122752
#> 1002                              Plainfield East (IL) 00-0034185 3045242
#> 1003                             La Salle College (PA) 00-0034606 3045166
#> 1004                                       Mullen (CO) 00-0034162 3126368
#> 1005                              Pleasant Valley (CA) 00-0023459    8439
#> 1006                                       Xavier (CT) 00-0034177 3045169
#> 1007                                      Liberty (CA) 00-0036264 4036378
#> 1008                             DeMatha Catholic (MD) 00-0035161 3118906
#> 1009                                  West Orange (FL) 00-0034995 3932449
#> 1010                                    Cass Tech (MI) 00-0035303 3915536
#> 1011                                   Atascocita (TX) 00-0035973 4039358
#> 1012                                       Burges (TX) 00-0033293 3042519
#> 1013                                       Colton (CA) 00-0032404 2573974
#> 1014                             Lawrence Academy (MA) 00-0036265 4239934
#> 1015                                       Summit (CA) 00-0033948 2980453
#> 1016                              Caravel Academy (DE) 00-0034968 3915419
#> 1017                                         East (TN) 00-0033124 2971364
#> 1018                                     Lakewood (CA) 00-0035331 3917563
#> 1019                                  Mounds View (MN) 00-0031433   16759
#> 1020                                     Columbia (NJ) 00-0035084 3871880
#> 1021                               Junipero Serra (CA) 00-0030074   15963
#> 1022                                 Forest Hills (MI) 00-0027674   13302
#> 1023                              Long Beach Poly (CA) 00-0024243    9614
#> 1024                                   Kingfisher (OK) 00-0035671 3917962
#> 1025                                       Valley (IA) 00-0036456 4036129
#> 1026                                       Folsom (CA) 00-0036332 3914151
#> 1027                                  IMG Academy (FL) 00-0035539 4035014
#> 1028                                     Timpview (UT) 00-0033117 2980444
#> 1029                                 McHenry East (IL) 00-0033757 2975674
#> 1030                                              <NA> 00-0035083 3116573
#> 1031                                    Palo Alto (CA) 00-0031381   16800
#> 1032                                  Hill-McCloy (MI) 00-0035480 4408988
#> 1033                                   West Brook (TX) 00-0035750 2974503
#> 1034                                      Servite (CA) 00-0034279 3932442
#> 1035                               North Gwinnett (GA) 00-0034243 3122167
#> 1036                                       McClay (FL) 00-0031166   17402
#> 1037                                 Blue Springs (MO) 00-0035181 3120588
#> 1038                                    Urbandale (IA) 00-0034521 3128390
#> 1039                                       Dunbar (MD) 00-0030525   15786
#> 1040                                     Lakewood (FL) 00-0034272 3051738
#> 1041                                Dwight Morrow (NJ) 00-0035593 3128317
#> 1042                                     Harrison (MI) 00-0032055 2977609
#> 1043                               Bishop Chatard (IN) 00-0032969 2579850
#> 1044                                     Los Osos (CA) 00-0035930 4047834
#> 1045                                      Grafton (WI) 00-0035323 3121537
#> 1046                        Christian Brothers College 00-0034485 4331768
#> 1047                                      Wharton (FL) 00-0032758 3054955
#> 1048                            St. Joseph's Prep (PA) 00-0036304 3929653
#> 1049                 West Side Leadership Academy (IN) 00-0035244 4240780
#> 1050                             William A. Hough (NC) 00-0035155 3728261
#> 1051                              Peachtree Ridge (GA) 00-0031372   16719
#> 1052                                    Bassfield (MS) 00-0034792 3123963
#> 1053                                       Judson (MA) 00-0031015   16750
#> 1054                                        Royal (TX) 00-0032769   16313
#> 1055                           Northampton County (NC) 00-0034435 3117135
#> 1056                         Massillon Washington (OH) 00-0033882 3051391
#> 1057                                    Riverside (WI) 00-0033038 2970716
#> 1058                                    Bassfield (MS) 00-0034594 3128746
#> 1059                                   New Castle (PA) 00-0036199 4240575
#> 1060                               Cherokee Trail (CO) 00-0034163 3138764
#> 1061                                      Rowlett (TX) 00-0035279 3929865
#> 1062                                        Chase (NC) 00-0033563 2977681
#> 1063                                     Pewaukee (WI) 00-0027949   13979
#> 1064                                       Elkins (TX) 00-0036289 4038557
#> 1065                                       Seguin (TX) 00-0034262 3050754
#> 1066                                      Hialeah (FL) 00-0027956   13989
#> 1067                                    Glenville (OH) 00-0032409 2977625
#> 1068                                Auburn Placer (CA) 00-0033924 3047570
#> 1069                                   Alpharetta (GA) 00-0036065 3911982
#> 1070                                  IMG Academy (FL) 00-0035258 3886633
#> 1071                                    Evergreen (WA) 00-0029546   15123
#> 1072                           Homewood-Flossmoor (IL) 00-0030997   16923
#> 1073                             Honolulu Punahou (HI) 00-0032726 2971573
#> 1074                            Logan-Rogersville (MO) 00-0033765 2986109
#> 1075                               Vista Murrieta (CA) 00-0035076 3116367
#> 1076                                    Rosa Fort (MS) 00-0031553 2577429
#> 1077                                    Southview (OH) 00-0035415 3116134
#> 1078                                       Butler (NC) 00-0034421 3043276
#> 1079                                Pinson Valley (AL) 00-0033547 3051750
#> 1080                                     Garfield (OH) 00-0029643   14936
#> 1081                                         Mays (GA) 00-0032094 3895228
#> 1082                                        Hiram (GA) 00-0036224 3916409
#> 1083                                 Alief Taylor (TX) 00-0034402 3039783
#> 1084                                Strake Jesuit (TX) 00-0034139 3123863
#> 1085                             Central Catholic (OR) 00-0032734 2576885
#> 1086                             Schuyler Central (NE) 00-0032110 2508212
#> 1087                                        Perry (OH) 00-0033444 2577854
#> 1088                                     Westlake (GA) 00-0027224   13729
#> 1089                          Pleasure Ridge Park (KY) 00-0031127   17061
#> 1090                                  Oscar Smith (VA) 00-0034394 3116761
#> 1091                                    Camarillo (CA) 00-0029692   14950
#> 1092                                  Gainesville (GA) 00-0033537 3122840
#> 1093                         St. Paul's Episcopal (AL) 00-0031288   16810
#> 1094                                 Jacksonville (TX) 00-0021206    3609
#> 1095                         Scotlandville Magnet (LA) 00-0034253 3126246
#> 1096                                 Coral Gables (FL) 00-0034449 3122716
#> 1097                                      Clinton (IA) 00-0032187 2508176
#> 1098                                  South Jones (MS) 00-0036069 4362878
#> 1099                                Miami Norland (FL) 00-0032257 2969962
#> 1100                                       Taylor (TX) 00-0035304 3122143
#> 1101                                       Nimitz (TX) 00-0028908   15231
#> 1102                                    Dutchtown (LA) 00-0034361 3931399
#> 1103                                    Williston (ND) 00-0031031   17087
#> 1104                                Monroe County (AL) 00-0035234 3131498
#> 1105                            Hazelwood Central (MO) 00-0033569 3122923
#> 1106                          Green Bay Southwest (WI) 00-0035245 3126035
#> 1107                                     Columbia (FL) 00-0032380 3051890
#> 1108                                    Rockhurst (MO) 00-0036195 3895840
#> 1109                                   Two Rivers (WI) 00-0036102 3921964
#> 1110                                  Union Grove (GA) 00-0034364 3128452
#> 1111                                        Brush (OH) 00-0033439 2971281
#> 1112                                    Fullerton (CA) 00-0029738   15773
#> 1113                                       Sonora (CA) 00-0035660 3933327
#> 1114                                        Alcoa (TN) 00-0028002   14053
#> 1115                               Bishop Alemany (CA) 00-0034081 3043225
#> 1116                                     Moorpark (CA) 00-0033840 3066074
#> 1117                                       Lufkin (TX) 00-0034366 3915823
#> 1118                                       Yoakum (TX) 00-0034273 3895857
#> 1119                                   Gwynn Park (MD) 00-0036308 4248504
#> 1120                                       Elkins (TX) 00-0034268 3051857
#> 1121                  Philadelphia Roman Catholic (PA) 00-0033127 3052876
#> 1122                                    East Lake (FL) 00-0033706 3122839
#> 1123                                      Lincoln (CA) 00-0031236   16731
#> 1124                                  Lakota West (OH) 00-0032383 2578475
#> 1125                                     El Campo (TX) 00-0032443 2971563
#> 1126                                 ThunderRidge (CO) 00-0034405 3128790
#> 1127                                  De La Salle (CA) 00-0031269   16808
#> 1128                               Brother Martin (LA) 00-0035437 3917058
#> 1129                                         Saks (AL) 00-0034278 3134448
#> 1130                             Southwest DeKalb (GA) 00-0035637 3910229
#> 1131                                     Suitland (MD) 00-0034767 3124574
#> 1132                                      Norland (FL) 00-0030575   15810
#> 1133                                   Gwynn Park (MD) 00-0035393 3910754
#> 1134                                        Blake (FL) 00-0036222 4044540
#> 1135                                      Lowndes (GA) 00-0033393 4218312
#> 1136                                Encino Crespi (CA) 00-0035534 3912544
#> 1137                                  Clovis West (CA) 00-0034623 3125287
#> 1138                                Chestnut Hill (PA) 00-0032198 2511090
#> 1139                                 Midwest City (OK) 00-0035972 3821692
#> 1140                                       Layton (UT) 00-0036253 4035661
#> 1141                           Millington Central (TN) 00-0034091 3050199
#> 1142                                   New Castle (PA) 00-0033877 3121415
#> 1143                                      Tarboro (NC) 00-0034359 3040513
#> 1144                                    Albemarle (NC) 00-0031254   17447
#> 1145                                    Barringer (NJ) 00-0034354 3047512
#> 1146                                   Statesboro (GA) 00-0028008   14048
#> 1147                               Don Bosco Prep (NJ) 00-0033964 3051942
#> 1148                                      Prosper (TX) 00-0034969 3124970
#> 1149                                    Lafayette (NY) 00-0035857 4034530
#> 1150                                Patrick Henry (CA) 00-0035850 4041572
#> 1151                                       Murphy (AL) 00-0034325 3126489
#> 1152                                  Fond du Lac (WI) 00-0036227 3929658
#> 1153                             Honolulu Punahou (HI) 00-0032378 2971282
#> 1154                              G.A.R. Memorial (PA) 00-0031581 2976632
#> 1155                            Red Bank Catholic (NJ) 00-0034342 3129308
#> 1156                                   John Adams (IN) 00-0036215 3915470
#> 1157                                     Bellevue (WA) 00-0033245 2978298
#> 1158                                   Sprayberry (GA) 00-0035849 3915165
#> 1159                                    Lake View (SC) 00-0034846 3056362
#> 1160                                    Hightower (TX) 00-0034424 3126179
#> 1161                        Monsignor Edward Pace (FL) 00-0033570 3045251
#> 1162                                  Benedictine (OH) 00-0029418   15068
#> 1163                        NSU University School (FL) 00-0034090 3048912
#> 1164                                     Foothill (CA) 00-0035687 3117253
#> 1165                              Marmion Academy (IL) 00-0036229 3929928
#> 1166                                      Al Raby (IL) 00-0034410 3128252
#> 1167                                North Crowley (TX) 00-0034987 3071353
#> 1168                             La Salle College (PA) 00-0034431 3124005
#> 1169                           Hollidaysburg Area (PA) 00-0032753 2566045
#> 1170                              Mitchell County (GA) 00-0033952 4058825
#> 1171                               Central Valley (WA) 00-0033619 3060187
#> 1172                               Hamilton Union (CA) 00-0033269 3914922
#> 1173                                   West Salem (OR) 00-0029984   16382
#> 1174                             William T. Dwyer (FL) 00-0033119 2578570
#> 1175            St. Joseph's Collegiate Institute (NY) 00-0033597 2977665
#> 1176                                 Lake Stevens (WA) 00-0036226 4035003
#> 1177                                       Athens (AL) 00-0022942    5529
#> 1178                                       Garner (NC) 00-0034367 3916430
#> 1179                   St. Benedict at Auburndale (TN) 00-0034400 3051891
#> 1180                                 George Ranch (TX) 00-0036027 4038533
#> 1181                                        Salem (NJ) 00-0036223 4242335
#> 1182                                       Booker (FL) 00-0033951 3139605
#> 1183                                     Chandler (AZ) 00-0032417 2971589
#> 1184                                       Sparta (IL) 00-0033049 2980197
#> 1185                       Lumen Christi Catholic (MI) 00-0035530 3929835
#> 1186                                 H.D. Woodson (DC) 00-0029410   14977
#> 1187                                   Lake Wales (FL) 00-0032830 3916678
#> 1188                                     Rockdale (TX) 00-0033065 2577631
#> 1189                             Lindsay Thurber (CAN) 00-0035853 4611135
#> 1190                                  Lake Zurich (IL) 00-0027960   13970
#> 1191                                     Hamilton (AZ) 00-0035641 3117259
#> 1192                                         Clay (FL) 00-0033788 2972351
#> 1193                               Tampa Catholic (FL) 00-0032204 2516053
#> 1194                                 Olathe South (KS) 00-0034836 3121595
#> 1195                                        Mason (OH) 00-0034664 3059936
#> 1196                                        North (TX) 00-0027609   13483
#> 1197                                      Sumrall (MS) 00-0034420 4035379
#> 1198                                 St. Ignatius (CA) 00-0034491 4032479
#> 1199                                    Cathedral (IN) 00-0030181   16504
#> 1200                           Middleburg Academy (VA) 00-0033217 2998565
#> 1201                                       Hunter (UT) 00-0036005 3930298
#> 1202                                       Venice (FL) 00-0030710   16974
#> 1203                     Wesson Attendance Center (MS) 00-0035852 3930097
#> 1204                                Patrick Henry (CA) 00-0036228 4054085
#> 1205                         St. Vincent–St. Mary (OH) 00-0035639 3121410
#> 1206                                 St. Aloysius (MS) 00-0035848 4374496
#> 1207                                     Midfield (AL) 00-0032112 2515759
#> 1208                       James Madison Memorial (WI) 00-0034395 3120659
#> 1209                                 Reynoldsburg (OH) 00-0035021 4061956
#> 1210                               Colonial Forge (VA) 00-0035589 3916071
#> 1211                                   Henry Wise (MD) 00-0033251 2978109
#> 1212                                Miami Springs (FL) 00-0029608   14924
#> 1213                               Oaks Christian (CA) 00-0036252 4035687
#> 1214                            Lee's Summit West (MO) 00-0032777 2971418
#> 1215                                       Elkins (TX) 00-0030572   15794
#> 1216                    Calvary Christian Academy (FL) 00-0033430 2979515
#> 1217                                     Waukegan (IL) 00-0029901   16270
#> 1218                                 San Gorgonio (CA) 00-0035108 3886327
#> 1219                    Eastern Christian Academy (MD) 00-0035375 3115968
#> 1220                                    Fairfield (OH) 00-0036303 4241977
#> 1221                                  West Covina (CA) 00-0033543 3127299
#> 1222                                  Castle Park (CA) 00-0036101 4361499
#> 1223                                    Del Norte (CA) 00-0034523 3931400
#> 1224                                     Columbus (FL) 00-0036281 4240596
#> 1225                                     McGavock (TN) 00-0036316 4371737
#> 1226                                East Hamilton (TN) 00-0034516 3122160
#> 1227                               Ralston Valley (CO) 00-0035378 3918331
#> 1228                                     Parkland (NC) 00-0032697 2567725
#> 1229                                  Sandy Creek (GA) 00-0036126 4249092
#> 1230                                         Kew (AUS) 00-0033064 2971498
#> 1231                                      Fairfax (AZ) 00-0032633 2576755
#> 1232                                    Montclair (NJ) 00-0035642 3915239
#> 1233                                  North Shore (TX) 00-0036286 4242205
#> 1234                            Groveport Madison (OH) 00-0033907 3042476
#> 1235                                  Haines City (FL) 00-0032131 2507719
#> 1236                                    Dunnellon (FL) 00-0029799   16090
#> 1237                                        Elton (LA) 00-0027723   13493
#> 1238                            Nuuuli Poly Tech (ASM) 00-0034251 3052059
#> 1239                               Natrona County (WY) 00-0034842 3115249
#> 1240                                    Northside (GA) 00-0029946   16376
#> 1241                              Bishop Shanahan (PA) 00-0035822 4038987
#> 1242                          Mount Saint Michael (NY) 00-0031071   16853
#> 1243                                Jeffersontown (KY) 00-0033535 4220624
#> 1244                                       Carver (GA) 00-0031574 2574579
#> 1245                                    Woodstock (GA) 00-0028149   14083
#> 1246                                   East Burke (NC) 00-0030827   17037
#> 1247                             Bamberg-Ehrhardt (SC) 00-0032255 2516325
#> 1248                                     Anderson (OH) 00-0031122   17388
#> 1249                           St. Thomas Aquinas (FL) 00-0031369   16770
#> 1250                               East St. Louis (IL) 00-0035832 4035113
#> 1251                                      Needham (MA) 00-0025944   11923
#> 1252                                      Clinton (MS) 00-0032835 3135726
#> 1253                                    Middleton (WI) 00-0032087 2998120
#> 1254                                       Orland (CA) 00-0032870 3068939
#> 1255                                     Lakewood (NJ) 00-0036434 3923413
#> 1256                                      Oakleaf (FL) 00-0036235 4037468
#> 1257                                Waukesha West (WI) 00-0033125 2977819
#> 1258                                      Wenonah (AL) 00-0035680 3110565
#> 1259                          St. Joseph Regional (NJ) 00-0035363 3917797
#> 1260                                 Summer Creek (TX) 00-0035670 3139453
#> 1261                                    St. Louis (HI) 00-0032386 3042874
#> 1262                                Golden Valley (CA) 00-0034428 3045267
#> 1263                                     Bellevue (WA) 00-0032968 3047566
#> 1264                        John Curtis Christian (LA) 00-0035824 4042125
#> 1265                                 Island Coast (FL) 00-0030993   16941
#> 1266                                McKinney Boyd (TX) 00-0035827 3928931
#> 1267                         Pickerington Central (OH) 00-0036262 3915520
#> 1268                                   Carrollton (GA) 00-0035312 3121587
#> 1269                                      Freedom (VA) 00-0035742 3072765
#> 1270                                     Columbia (MS) 00-0034437 3115480
#> 1271                          Marysville-Pilchuck (WA) 00-0036312 3124900
#> 1272                                    Westfield (VA) 00-0030520   15837
#> 1273                                      Brandon (MS) 00-0035289 4038524
#> 1274                                       Sachse (TX) 00-0035184 3699935
#> 1275                                    Millville (NJ) 00-0035268 3923397
#> 1276                               Madison County (FL) 00-0030404   15966
#> 1277                               Knoxville West (TN) 00-0035835 3917812
#> 1278                            Rockford Lutheran (IL) 00-0035831 4052042
#> 1279                                     Abington (PA) 00-0035567 4421446
#> 1280                                    Marquette (WI) 00-0033854 2983509
#> 1281                                      Buchtel (OH) 00-0032525 2970661
#> 1282                                Robert E. Lee (AL) 00-0036306 4035505
#> 1283                          Walled Lake Western (MI) 00-0033903 3051716
#> 1284              Florida State University School (FL) 00-0035558 3126153
#> 1285                            Blanchet Catholic (OR) 00-0036272 4611506
#> 1286                           Palm Beach Central (FL) 00-0034522 3123064
#> 1287                             Hugh M. Cummings (NC) 00-0034380 3116739
#> 1288                Friendship Collegiate Academy (DC) 00-0035220 3115949
#> 1289                                  West Monroe (LA) 00-0033889 3115313
#> 1290                     Dawson-Bryant Coal Grove (OH) 00-0035829 3920814
#> 1291                                        Cocoa (FL) 00-0035237 4034961
#> 1292                              Hoffman Estates (IL) 00-0033576 2975863
#> 1293                             Naperville North (IL) 00-0031951 2508079
#> 1294                          West Morris Mendham (NJ) 00-0034101 3047488
#> 1295                               Bishop Dwenger (IN) 00-0030549   15788
#> 1296                                       Hawley (MN) 00-0035823 3930900
#> 1297                                       Mepham (NY) 00-0036250 3914240
#> 1298                                  Paso Robles (CA) 00-0035249 3921690
#> 1299                                     Callaway (GA) 00-0035313 3915174
#> 1300                                      Central (KY) 00-0033681 3071572
#> 1301                                       Naples (FL) 00-0035374 3915296
#> 1302                         Southeast Lauderdale (MS) 00-0035401 4241723
#> 1303                                   Hallandale (FL) 00-0035826 4034944
#> 1304                                     C.H. Yoe (TX) 00-0033839 3892889
#> 1305                                       DeSoto (TX) 00-0036268 4243160
#> 1306                                   Alexandria (LA) 00-0034777 3115394
#> 1307                               North Paulding (GA) 00-0032128 2578533
#> 1308                                Wilcox County (GA) 00-0033261 3039720
#> 1309                             Valley Christian (CA) 00-0036254 4039043
#> 1310                               Dobyns-Bennett (TN) 00-0028101   14110
#> 1311                                Bessemer City (AL) 00-0035892 3917290
#> 1312                               Lakewood Ranch (FL) 00-0031958 2514816
#> 1313                               Strom Thurmond (SC) 00-0032933 3056354
#> 1314                                  Lake Marion (SC) 00-0035634 3140141
#> 1315                            Allendale-Fairfax (SC) 00-0031052   16890
#> 1316                                       Laurel (MS) 00-0036385 4040652
#> 1317                                       Minden (LA) 00-0036374 4040432
#> 1318                             Miami Carol City (FL) 00-0035147 3924364
#> 1319                                   Plantation (FL) 00-0034145 3128630
#> 1320                                       McComb (MS) 00-0034573 4037361
#> 1321                           Miami Northwestern (FL) 00-0035684 3915163
#> 1322                                    Altavista (VA) 00-0035625 3917909
#> 1323                                       Colton (CA) 00-0030665   17259
#> 1324                                       Taylor (TX) 00-0035878 3916207
#> 1325                                 Pflugerville (TX) 00-0030503   15976
#> 1326                           High Point Central (NC) 00-0035135 3914553
#> 1327                                      Central (OH) 00-0033541 3045210
#> 1328                                    Glenville (OH) 00-0032210 2576242
#> 1329                                 Bishop Timon (NY) 00-0034612 3052926
#> 1330                                  Wissahickon (PA) 00-0033902 2982313
#> 1331                           Warren De La Salle (MI) 00-0036378 3915487
#> 1332                                      Waverly (MI) 00-0035779 4408979
#> 1333                              Parkway Central (MO) 00-0035656 3121634
#> 1334                              Americus-Sumter (GA) 00-0035796      NA
#> 1335                              University City (MO) 00-0035890 4058925
#> 1336                                      Houston (MS) 00-0032762 3044859
#> 1337                                     Somerset (WI) 00-0031152   17377
#> 1338                                Langham Creek (TX) 00-0029259   14957
#> 1339                             Central Catholic (PA) 00-0027986     169
#> 1340                       Collège Andre-Grasset (CAN) 00-0031022   16958
#> 1341                          St. Francis DeSales (OH) 00-0029889   16327
#> 1342                             Lincoln-Way East (IL) 00-0035149 3115922
#> 1343                                  Westminster (GA) 00-0033303 3055899
#> 1344                     Our Lady of Good Counsel (MD) 00-0034781 3045132
#> 1345                                   Starkville (MS) 00-0036362 4259804
#> 1346                                 Amite County (MS) 00-0032215 3040207
#> 1347                                    Clearview (OH) 00-0031348   16883
#> 1348                                     Sycamore (IL) 00-0034296 3140643
#> 1349                                      Oakland (TN) 00-0034153 3122169
#> 1350                                    Horn Lake (MS) 00-0035157 3122906
#> 1351                               Treasure Coast (FL) 00-0035879 4043618
#> 1352                                   Washington (OK) 00-0030615   16665
#> 1353                                    Grandview (CO) 00-0030757   17230
#> 1354                                  Ocean Lakes (VA) 00-0034818 3122930
#> 1355                                      Bearden (TN) 00-0023534    8513
#> 1356                                        Boone (FL) 00-0035889 3915398
#> 1357                                   Whitehouse (TX) 00-0033873 3139477
#> 1358                                         Hart (CA) 00-0025708   11128
#> 1359                                       Wilson (PA) 00-0026197   11291
#> 1360                                   Pearl City (HI) 00-0035735 4242418
#> 1361                                    Mira Mesa (CA) 00-0030874   17359
#> 1362                              North Attleboro (MA) 00-0028074   14135
#> 1363                                        Jenks (OK) 00-0035148 4361606
#> 1364                           Vandebilt Catholic (LA) 00-0033295 3042494
#> 1365                                   John Ehret (LA) 00-0034301 3115375
#> 1366                            Groveport Madison (OH) 00-0030496   15825
#> 1367                                     Catholic (LA) 00-0036360 4242214
#> 1368                                 North Forney (TX) 00-0034680 3122136
#> 1369                                St. Augustine (LA) 00-0030459   15851
#> 1370                                       Jesuit (OR) 00-0029164   15422
#> 1371                                      Midland (MI) 00-0033831 3042702
#> 1372                                 Stoney Creek (MI) 00-0030584   15790
#> 1373                                   New Canaan (CT) 00-0036367      NA
#> 1374                    Imhotep Institute Charter (PA) 00-0035881 4241213
#> 1375                                   Mendenhall (MS) 00-0034824 3894924
#> 1376                            Palisades Charter (CA) 00-0029253   14951
#> 1377                             Edgewood Academy (AL) 00-0036230 4035518
#> 1378                                     Southern (KY) 00-0034319 3059766
#> 1379                                        Sealy (TX) 00-0033611 3051806
#> 1380                            Cleveland Heights (OH) 00-0030506   15847
#> 1381                                    Christian (FL) 00-0033696 2971426
#> 1382                                    Grandview (CO) 00-0033763 2971280
#> 1383                             Portage Northern (MI) 00-0034192 4329472
#> 1384                                 Peach County (GA) 00-0032775 3043116
#> 1385                                New Brunswick (NJ) 00-0035883 4036055
#> 1386                                   Piscataway (NJ) 00-0032778 2982828
#> 1387                             Fort Myers South (FL) 00-0031325   16725
#> 1388                                 Madison Prep (LA) 00-0033933 3066052
#> 1389                                   South Park (NY) 00-0035547 4408854
#> 1390                                   Washington (FL) 00-0034772 3915097
#> 1391                                Elbert County (GA) 00-0035140 4035004
#> 1392                                   Washington (IN) 00-0033474 2980460
#> 1393                                     Robinson (FL) 00-0034297 4036416
#> 1394                                       Coffee (GA) 00-0033040 3116406
#> 1395                                       Layton (UT) 00-0033481 3046399
#> 1396                                 Williamsburg (IA) 00-0032455 2582448
#> 1397                             Hinsdale Central (IL) 00-0034804 3134666
#> 1398                              St. Bonaventure (CA) 00-0031785 2525933
#> 1399                                       Loyola (CA) 00-0035665 4046536
#> 1400                                       Summit (CA) 00-0032641 2972896
#> 1401                            Brentwood Academy (TN) 00-0033055 3045373
#> 1402                                    Creekside (FL) 00-0034203 4239833
#> 1403                                      Hanford (CA) 00-0036077 4040901
#> 1404                                 Northwestern (MD) 00-0033927 3046292
#> 1405                                      Fairfax (VA) 00-0035669 3116179
#> 1406                                   Old Tappan (NJ) 00-0036431 4040613
#> 1407                        Prestonwood Christian (TX) 00-0035830 3917012
#> 1408                                 Peach County (GA) 00-0035938 4035013
#> 1409                                      Kinston (NC) 00-0033920 3049268
#> 1410                         Fountain-Fort Carson (CO) 00-0032671 3059620
#> 1411                               Rocky Mountain (ID) 00-0035944 4032481
#> 1412                                       Chavez (TX) 00-0029630   14944
#> 1413                                         East (TN) 00-0035928 4040703
#> 1414                                   Penn Hills (PA) 00-0031388   16716
#> 1415                            Arlington Heights (TX) 00-0032889 3054857
#> 1416                                      Oakwood (OH) 00-0035933      NA
#> 1417                                      Bedford (OH) 00-0035607 3914150
#> 1418                                     Vineland (NJ) 00-0034809 3120552
#> 1419                              Fallbrook Union (CA) 00-0034080 3043198
#> 1420                                        Plano (TX) 00-0034803 3040008
#> 1421                          Downers Grove North (IL) 00-0035668 3917660
#> 1422                               Edward C. Reed (NV) 00-0034261 3056608
#> 1423                                       Loyola (CA) 00-0034114 3052180
#> 1424                                   Notre Dame (CA) 00-0028787   14816
#> 1425                                    Pratville (AL) 00-0035759 3053774
#> 1426                                         Orem (UT) 00-0035269 4249087
#> 1427                        John Curtis Christian (LA) 00-0034266 3134310
#> 1428                                   Prattville (AL) 00-0035751 3115317
#> 1429                                   Salesianum (DE) 00-0035617 3116177
#> 1430                                 Alief Taylor (TX) 00-0034807 3052667
#> 1431                                 Dodge County (GA) 00-0033072 3043136
#> 1432                                Gilman School (MD) 00-0034806 3048692
#> 1433                                    Pottsboro (TX) 00-0034813 3040109
#> 1434                                       Martin (TX) 00-0035591 3122678
#> 1435                                David Douglas (OR) 00-0033945 3045527
#> 1436                                 Soiux Center (IA) 00-0035942 3909013
#> 1437                                   St. John's (DC) 00-0036419 4040968
#> 1438                                     Mainland (FL) 00-0035528 4034967
#> 1439                                     Longview (TX) 00-0034812 3116424
#> 1440                                 Mount Carmel (IL) 00-0036014 4035542
#> 1441                                      Eastern (KY) 00-0033531 3040072
#> 1442                                        Elder (OH) 00-0028394   14676
#> 1443                                     La Habra (CA) 00-0035667 3127294
#> 1444                                  Stroudsburg (PA) 00-0034810 3047495
#> 1445                      KIPP Atlanta Collegiate (GA) 00-0035833      NA
#> 1446                                      Bothell (WA) 00-0028872   15153
#> 1447                                 Bishop Kenny (FL) 00-0034899 3124092
#> 1448                              Mortimer-Jordan (AL) 00-0035577 3127051
#> 1449                                       Oviedo (FL) 00-0031407   16724
#> 1450                                     Chandler (AZ) 00-0035939 3675812
#> 1451                               Marin Catholic (CA) 00-0033106 3046779
#> 1452                                      Clinton (MS) 00-0036414 4240021
#> 1453                                      Cecilia (LA) 00-0036435      NA
#> 1454                                       Spring (TX) 00-0036078 3916209
#> 1455                                 South Panola (MS) 00-0035664 4039359
#> 1456                              Byron P. Steele (TX) 00-0031806 2570986
#> 1457                                       Sehome (WA) 00-0035663 4039007
#> 1458                                   Assumption (IA) 00-0035609 3144988
#> 1459                                   San Marcos (CA) 00-0036421 4035663
#> 1460                                    Linganore (MD) 00-0032242 2515613
#> 1461                                     Florence (AL) 00-0035623 3914440
#> 1462                                    McEachern (GA) 00-0036437 4035478
#> 1463                                  West Monroe (LA) 00-0024270    9641
#> 1464                                        Allen (TX) 00-0035666 3706968
#> 1465                                     Columbia (GA) 00-0033895 3918639
#> 1466                                     Ensworth (TN) 00-0036424 3918003
#> 1467                                    East Lake (FL) 00-0033110 2573401
#> 1468                           Blue Springs South (MO) 00-0035603 3122103
#> 1469                             Central Catholic (CA) 00-0033246 3052096
#> 1470                               Junipero Serra (CA) 00-0030431   15880
#> 1471                                    Ravenwood (TN) 00-0036415 3930066
#> 1472                              West Bloomfield (MI) 00-0035934 4046715
#> 1473                             San Ramon Valley (CA) 00-0035935 3910287
#> 1474                                        Davis (WA) 00-0033908 2977187
#> 1475                                          Jay (TX) 00-0033943 3115306
#> 1476                                  Deer Valley (CA) 00-0035621 3119317
#> 1477                                     Lakeland (FL) 00-0027953   13974
#> 1478                                     Roncalli (IN) 00-0032787 2969262
#> 1479                                              <NA> 00-0034903 4410136
#> 1480                                    Northgate (GA) 00-0034545 3045458
#> 1481                                     Glendale (CA) 00-0033697 3053795
#> 1482                                        Perry (GA) 00-0029261   14966
#> 1483                                        Bixby (OK) 00-0028224   14398
#> 1484                                 Great Valley (PA) 00-0035677 3912028
#> 1485                                    Riverview (FL) 00-0030312   16039
#> 1486                            South Mecklenburg (NC) 00-0035899 4032484
#> 1487                                   Whitehaven (TN) 00-0035911 4046687
#> 1488                                  Haines City (FL) 00-0034790 3691739
#> 1489                                      Hialeah (FL) 00-0035906 4365493
#> 1490                           St. Thomas Aquinas (FL) 00-0033156 3051389
#> 1491                                     Richmond (NC) 00-0029249   14926
#> 1492                    Eagle's Landing Christian (GA) 00-0033588 3052894
#> 1493                            Xaverian Brothers (MA) 00-0035903 3915990
#> 1494                                     Narbonne (CA) 00-0034350 3120358
#> 1495                    Evangel Christian Academy (LA) 00-0035674 3863182
#> 1496                              Colquitt County (GA) 00-0035910 3916917
#> 1497                                   South Cobb (GA) 00-0034677 3116746
#> 1498                                     Veterans (GA) 00-0035315 3139036
#> 1499                                     Sandburg (IL) 00-0033910 2979482
#> 1500                              La Costa Canyon (CA) 00-0034392 3047572
#> 1501                                     Farragut (TN) 00-0035904 3919555
#> 1502                                    Middleton (WI) 00-0031128   17063
#> 1503                                St. Augustine (LA) 00-0031362   16789
#> 1504                                       Venice (FL) 00-0033542 2981439
#> 1505                                     Canisius (NY) 00-0034289 3045779
#> 1506                                       Summit (NJ) 00-0034084 3123052
#> 1507                                      Carroll (IN) 00-0035262 3129310
#> 1508                                       Poteet (TX) 00-0034835 3821576
#> 1509                                       Emmaus (PA) 00-0034375 4039254
#> 1510                                       Elkins (TX) 00-0036441 4241394
#> 1511                                      Fremont (UT) 00-0032892 2971816
#> 1512                                 Coral Gables (FL) 00-0032103 2579621
#> 1513                    Nansemond-Suffolk Academy (VA) 00-0035900 4036959
#> 1514                                  North Shore (TX) 00-0035538 3914613
#> 1515                             Lincoln-Way West (IL) 00-0033642 2970622
#> 1516                                      Liberty (CA) 00-0034917 3054855
#> 1517                                     Santa Fe (FL) 00-0027885   13281
#> 1518                                        Yates (TX) 00-0030148   16231
#> 1519                                   Farrington (HI) 00-0035927 3674831
#> 1520                                  Mornington (VIC) 00-0032449 3061740
#> 1521                                      Roswell (GA) 00-0031543 2582324
#> 1522                                      Hampton (VA) 00-0028118   14163
#> 1523                               Creighton Prep (NE) 00-0035282 3120590
#> 1524                                      Sheldon (OR) 00-0036355 4038941
#> 1525                                     Eastside (CA) 00-0036370 3910544
#> 1526                                        Eaton (CO) 00-0033699 3068267
#> 1527                                        Godby (FL) 00-0035898 4040640
#> 1528                                     Anniston (AL) 00-0033164 2983319
#> 1529                                       Falcon (CO) 00-0034799 3128774
#> 1530                                      Lowndes (GA) 00-0035908 4035611
#> 1531                               Glenbard North (IL) 00-0034440 3116136
#> 1532                                       Kahuku (HI) 00-0036380 4039413
#> 1533                                   Cape Coral (FL) 00-0031173   16919
#> 1534                     Admiral Farragut Academy (FL) 00-0033941 2969961
#> 1535                                      Trinity (TX) 00-0033578 3052513
#> 1536                                 Apple Valley (MN) 00-0035688 4411189
#> 1537                                      Whitmer (OH) 00-0033752 2973014
#> 1538                       Marian Central Central (IL) 00-0027875   13247
#> 1539                                  IMG Academy (FL) 00-0034958 3917870
#> 1540                                      Pulaski (AR) 00-0033090 3046439
#> 1541                                  Lake Gibson (FL) 00-0035329 3912092
#> 1542                                 Tulare Union (CA) 00-0028142   14085
#> 1543                                        Adams (MI) 00-0035436 3121378
#> 1544                               Piedmont Hills (CA) 00-0032725 2576854
#> 1545                                    Cambridge (GA) 00-0036104 4683123
#> 1546                                Warren Easton (LA) 00-0035457 3894912
#> 1547                                      Oberlin (OH) 00-0035432 4069806
#> 1548                            Northern Guilford (NC) 00-0030279   15818
#> 1549                            North Little Rock (AR) 00-0036382 3915522
#> 1550                                         Pima (AZ) 00-0035901 4282647
#> 1551                               Randolph-Henry (VA) 00-0036377 4037591
#> 1552                                        Allen (TX) 00-0035414 3932430
#> 1553                           Santee Lake Marion (SC) 00-0033536 3045138
#> 1554                              La Costa Canyon (CA) 00-0033317 2977627
#> 1555                                         Rain (AL) 00-0027993   14013
#> 1556                                     Herriman (UT) 00-0035127 3932244
#> 1557                                     Salesian (CA) 00-0035133 4259493
#> 1558                                    Thibodaux (LA) 00-0036375 4239694
#> 1559                           St. Thomas Aquinas (FL) 00-0031389   16769
#> 1560                                  Union Grove (GA) 00-0032788 2971478
#> 1561                         William Penn Charter (PA) 00-0032891 3042436
#> 1562                           St. Thomas Aquinas (FL) 00-0036359 3915506
#> 1563                                  First Coast (FL) 00-0033390 3054031
#> 1564                                Coconut Creek (FL) 00-0035695 4035458
#> 1565                                       Rudder (TX) 00-0034980 3126182
#> 1566                                        Piper (FL) 00-0031176   16929
#> 1567                                Cypress Ridge (TX) 00-0036062      NA
#> 1568                                   McClymonds (CA) 00-0036085 3921709
#> 1569                             Central Catholic (OR) 00-0034726 3053801
#> 1570                                   New Oxford (PA) 00-0032320 4010714
#> 1571                                 Malvern Prep (PA) 00-0033129 2614825
#> 1572                               Channel Island (CA) 00-0033758 2976151
#> 1573                                  San Jacinto (CA) 00-0031997 2577162
#> 1574                                      Kennedy (CA) 00-0033540 3152371
#> 1575                                   West Rowan (NC) 00-0031264   16917
#> 1576                                  Benedictine (VA) 00-0035692 3728258
#> 1577                            Hapeville Charter (GA) 00-0034825 3843843
#> 1578                         Colleyville Heritage (TX) 00-0034973 3916655
#> 1579                                   Greenville (MS) 00-0034997 3115469
#> 1580                                      Compton (CA) 00-0030576   15798
#> 1581                            Xaverian Brothers (MA) 00-0034746 3045220
#> 1582                                 Southeastern (MI) 00-0030063   15841
#> 1583                                     Havelock (NC) 00-0034125 3044732
#> 1584                                       Center (MO) 00-0033131 3040471
#> 1585                                     Bay Port (WI) 00-0035125 3917668
#> 1586                                      Gaffney (SC) 00-0031632 2985235
#> 1587                                 Amite County (MS) 00-0031367   16753
#> 1588                               Mountain Ridge (AZ) 00-0023516    8495
#> 1589                                      Central (AL) 00-0035117 3925344
#> 1590                              Fort Dorchester (SC) 00-0036369 4035479
#> 1591                                Redondo Union (CA) 00-0036168 3932960
#> 1592                        The Classical Academy (CO) 00-0034161 3051909
#> 1593                                  Adairsville (GA) 00-0032240 2512400
#> 1594                                   Huntsville (AL) 00-0033445 4232830
#> 1595                                  Bethel Park (PA) 00-0032773 2581818
#> 1596                                  South Point (NC) 00-0036368 3728263
#> 1597                               Liberty County (GA) 00-0033461 3121423
#> 1598                                 Mount Miguel (CA) 00-0032677 2978304
#> 1599                                       Apopka (FL) 00-0029647   15038
#> 1600                               Stone Mountain (GA) 00-0033468 2969922
#> 1601                           Cretin-Derham Hall (MN) 00-0033704 3052889
#> 1602                                        Eaton (CO) 00-0034198 3052357
#> 1603                                       Elkton (MD) 00-0034077 4329484
#> 1604                             Woodward Academy (GA) 00-0035190 3686689
#> 1605                        Bakersfield Christian (CA) 00-0031280   16757
#> 1606                       Mount Pisgah Christian (GA) 00-0033672 2972092
#> 1607                                Bartram Trail (FL) 00-0033958 2972236
#> 1608                                    St. Louis (HI) 00-0032268 2576980
#> 1609                                  Grant Union (CA) 00-0032972 3122866
#> 1610                                       McLain (OK) 00-0035700 4047365
#> 1611                               Peabody Magnet (LA) 00-0033025 2972091
#> 1612                                   Immaculata (NJ) 00-0030107   15994
#> 1613                                   Lake Orion (MI) 00-0030196   16473
#> 1614                                 Independence (TN) 00-0034362 3115333
#> 1615                                  East Marion (MS) 00-0035693 3728305
#> 1616                                   A.L. Brown (NC) 00-0034763 3072292
#> 1617                          Grand Street Campus (NY) 00-0036134 3930054
#> 1618                                     Westover (GA) 00-0032071 3043109
#> 1619                                West Catholic (PA) 00-0034628 3045160
#> 1620                                    Roseville (CA) 00-0034759 3134312
#> 1621                           St. Thomas Aquinas (FL) 00-0027778   13496
#> 1622                                   Kittanning (PA) 00-0036083 3929633
#> 1623                                        Dwyer (FL) 00-0032117 2576804
#> 1624                                   North Cobb (GA) 00-0031610 2576925
#> 1625                                 Elizabethton (TN) 00-0022127    4527
#> 1626                                     Edgerton (WI) 00-0029119   15403
#> 1627                                       Jesuit (LA) 00-0034981 3843945
#> 1628                                      West Potomac 00-0034103 3121398
#> 1629                                    Northside (GA) 00-0033530 3042373
#> 1630                                          Lee (AL) 00-0036357 4241475
#> 1631                                        Barbe (LA) 00-0034339 3115365
#> 1632                                      Cascade (OR) 00-0032160 2587819
#> 1633                            Stephen F. Austin (TX) 00-0033891 3059722
#> 1634                                              <NA> 00-0032694 3051400
#> 1635                                     Socastee (SC) 00-0034983 3135321
#> 1636                                   Wylie East (TX) 00-0034747 3046320
#> 1637                                       Conway (SC) 00-0036365 4038818
#> 1638                                Berkeley Prep (FL) 00-0031549 2971618
#> 1639                                      Alameda (CA) 00-0035120 3120980
#> 1640                                     Catholic (LA) 00-0033505 3060000
#> 1641                                       Venice (FL) 00-0034963 3917868
#> 1642                                        Genoa Area 00-0035686 3121541
#> 1643                                    Cathedral (IN) 00-0032445 2576188
#> 1644                                  North Shore (TX) 00-0033734 3892777
#> 1645                            St. Paul Catholic (CT) 00-0032239 2513035
#> 1646                                       Nipomo (CA) 00-0031630 2509574
#> 1647                            Hewitt-Trussville (AL) 00-0036287 4242516
#> 1648                                   Buena Park (CA) 00-0035346 3124702
#> 1649                                     Wheatley (TX) 00-0033050 2978935
#> 1650                                       Oxford (AL) 00-0031587 2575606
#> 1651                                  Nacogdoches (TX) 00-0036221 4039059
#> 1652                                     Heritage (MI) 00-0036353      NA
#> 1653                       Grand Rapids Christian (MI) 00-0033048 2972505
#> 1654                                     Ed White (FL) 00-0035880      NA
#> 1655                                      Whitmer (OH) 00-0034802 3052527
#> 1656                             DeMatha Catholic (MD) 00-0035858 4036214
#> 1657                                     Pinckney (MI) 00-0034285 3057956
#> 1658                                     Asheboro (NC) 00-0036089 4047458
#> 1659                                     Westlake (GA) 00-0035845 3914456
#> 1660                             Suffield Academy (CT) 00-0035231 3728266
#> 1661                                  George Bush (TX) 00-0033073 2977740
#> 1662                              Deerfield Beach (FL) 00-0036160 3895843
#> 1663                                       Tucker (GA) 00-0035343 3728308
#> 1664                                              <NA> 00-0035727 4421391
#> 1665                                 Wayne County (GA) 00-0035841 4035299
#> 1666                           Cathedral Catholic (CA) 00-0035332 3915309
#> 1667                                       Apopka (FL) 00-0035310 3843217
#> 1668                                     Hamilton (OH) 00-0033359 2976649
#> 1669                                Miami Norland (FL) 00-0032259 2969952
#> 1670                                       Raines (FL) 00-0036131 4035008
#> 1671                                   Villa Park (CA) 00-0034794 3124679
#> 1672                                  Rock Valley (IA) 00-0035272 3133487
#> 1673                               Central Daniel (SC) 00-0033096 2977679
#> 1674                                      Lincoln (WI) 00-0033939 2977798
#> 1675                                   Kamehameha (HI) 00-0032437 3050851
#> 1676                               Francis Howell (OR) 00-0033716 3047530
#> 1677                               Robert McQueen (NV) 00-0031360   16772
#> 1678                          Lakeview Centennial (TX) 00-0034902 2577637
#> 1679                                      Skyline (TX) 00-0035840 3915107
#> 1680                                  Benedictine (OH) 00-0034797 3915507
#> 1681                                     Memorial (TX) 00-0032442 2987743
#> 1682                           Landmark Christian (GA) 00-0033420 3048402
#> 1683                                          Bay (OH) 00-0036443      NA
#> 1684                                       Buford (GA) 00-0036217 3843470
#> 1685                                     Meridian (MS) 00-0036213 4040965
#> 1686                                   Plaquemine (LA) 00-0033860 3115383
#> 1687                             Dowling Catholic (IA) 00-0033400 3043237
#> 1688                           St. Thomas Aquinas (FL) 00-0032431 2582424
#> 1689                                    St. Louis (HI) 00-0036212 4241479
#> 1690                                     Johnston (IA) 00-0036052 3926936
#> 1691                                     Highland (AZ) 00-0023682    8664
#> 1692                                 Mission Prep (CA) 00-0035342 3127211
#> 1693                                      Juanita (WA) 00-0036020 4243315
#> 1694                       Nature Coast Technical (FL) 00-0033308 3049916
#> 1695                                Seattle O'Dea (WA) 00-0035311 3886818
#> 1696                                      Kenwood (TN) 00-0036245 4039436
#> 1697                            Thurgood Marshall (TX) 00-0032940 2577654
#> 1698                           St. Thomas Aquinas (FL) 00-0035275 3915115
#> 1699                            Warren G. Harding (OH) 00-0036364 4259979
#> 1700                                       Lemont (IL) 00-0032807 3042455
#> 1701                                        Klein (TX) 00-0031555 2576002
#> 1702                                   Burkeville (TX) 00-0036325 3917592
#> 1703                                      Kilgore (TX) 00-0035839 3929752
#> 1704                                    Paulsboro (NJ) 00-0033560 3047614
#> 1705                                 North Canyon (AZ) 00-0036248 4271632
#> 1706                                       Asotin (WA) 00-0031893 2517316
#> 1707                                       Belton (TX) 00-0034798 3052897
#> 1708                                   Big Walnut (OH) 00-0033896 4198676
#> 1709                                   Cheltenham (PA) 00-0035345 3138744
#> 1710                            Southern Regional (NJ) 00-0034829 3116164
#> 1711                               Port St. Lucie (FL) 00-0030669   17051
#> 1712                                    Destrehan (LA) 00-0035844 3915145
#> 1713                        Thomas Sprigg Wootton (MD) 00-0033555 2991662
#> 1714                                         Horn (TX) 00-0032791 2577641
#> 1715                                      Ballard (KY) 00-0031547 2576623
#> 1716                                   Carol City (FL) 00-0030821   17177
#> 1717                                St. Elizabeth (DE) 00-0033705 3047504
#> 1718                    Trinity Christian Academy (FL) 00-0033471 3124069
#> 1719                                      Lovejoy (GA) 00-0035350 3915399
#> 1720                          Charlotte Christian (NC) 00-0035588 3116729
#> 1721                       Weyburn Comprehensive (CAN) 00-0031489 3173563
#> 1722                           St. Thomas Aquinas (LA) 00-0036330 4035385
#> 1723                                     New Bern (NC) 00-0034843 3895841
#> 1724                             Cherry Hill West (NJ) 00-0036344 4259170
#> 1725                                   New Boston (TX) 00-0036324 3676819
#> 1726                                        Lamar (TX) 00-0034213 3929847
#> 1727                                     Nordonia (OH) 00-0035130 3909365
#> 1728                                Chattahoochee (GA) 00-0033628 4220625
#> 1729                                   Sandalwood (FL) 00-0034641 3116104
#> 1730                           Aiken Silver Bluff (SC) 00-0033462 3045136
#> 1731                                      Decatur (AL) 00-0035365 3917147
#> 1732                                       Gilmer (TX) 00-0035150 3929845
#> 1733                                      Kempner (TX) 00-0029215   15085
#> 1734                                Lloyd C. Bird (VA) 00-0031799 2577814
#> 1735                                   University (FL) 00-0032042 2525492
#> 1736                                        Vance (NC) 00-0035979 4037511
#> 1737                                     Flanagan (FL) 00-0036348 4046537
#> 1738                                      Garland (TX) 00-0036138 3908608
#> 1739                                  Centerville (OH) 00-0033969 2974353
#> 1740                                 Morton Ranch (TX) 00-0031565 2976560
#> 1741                                  Lake Taylor (VA) 00-0034264 3121414
#> 1742                                    Grandview (CO) 00-0032480 2576040
#> 1743                                     Absegami (NJ) 00-0034587 3119119
#> 1744                        Northpointe Christian (MI) 00-0036350 3929833
#> 1745                                   Stephenson (GA) 00-0036335 4038849
#> 1746                                   Round Rock (TX) 00-0036337 4259181
#> 1747                                  Lahainaluna (HI) 00-0034215 3127274
#> 1748                             Montini Catholic (IL) 00-0033940 2979523
#> 1749                                      Denfeld (MN) 00-0032918 4012556
#> 1750                                  Summerville (SC) 00-0035468 3924352
#> 1751                             San Ramon Valley (CA) 00-0034976 3821678
#> 1752                              Brookland-Cayce (SC) 00-0031017   16861
#> 1753                                       Bethel (WA) 00-0036327 4048231
#> 1754                                      Liberty (AZ) 00-0036354 4682831
#> 1755                           Southwest Covenant (OK) 00-0028660   14322
#> 1756                              Exeter Township (PA) 00-0032669 2578718
#> 1757                            American Heritage (FL) 00-0034450 3975763
#> 1758                                  Granite Bay (CA) 00-0034986 3701669
#> 1759                                Bishop O'Dowd (CA) 00-0033344 2978211
#> 1760                                       Hoover (CA) 00-0031554 2510863
#> 1761                                       Gilmer (TX) 00-0035984 3892773
#> 1762                                       Hudson (OH) 00-0033944 3045212
#> 1763                              Lee M. Thurston (MI) 00-0033336 3056916
#> 1764                                 Eden Prairie (MN) 00-0035533 3121538
#> 1765                                       Loyola (CA) 00-0031256   16711
#> 1766                         Booker T. Washington (OK) 00-0035319 3122420
#> 1767                                    Paraclete (CA) 00-0031427   17497
#> 1768                                        Norco (CA) 00-0036338 4038946
#> 1769                                      Central (TX) 00-0035709 4038201
#> 1770                                      Parkton (MD) 00-0029714   15726
#> 1771                         Long Island Lutheran (NY) 00-0031242   16866
#> 1772                                       Daphne (AL) 00-0032574 2972144
#> 1773                   Christian Brothers College (MO) 00-0034992 3128685
#> 1774                                      Bearden (TN) 00-0026516   12773
#> 1775                                       Folsom (CA) 00-0035100 3886812
#> 1776                            Holland Christian (MI) 00-0029604   14880
#> 1777                                    Menomonie (WI) 00-0036279 4036149
#> 1778                                     Foothill (CA) 00-0032245 2517017
#> 1779                                     Homewood (AL) 00-0032104 2576336
#> 1780                                  St. Andrews (FL) 00-0035975 3895835
#> 1781                                 Baker County (FL) 00-0034208 3139033
#> 1782                                Miami Central (FL) 00-0033893 3116593
#> 1783                               San Bernardino (CA) 00-0034972 4048244
#> 1784                           Knoxville Catholic (TN) 00-0029606   14945
#> 1785                                     Ed White (FL) 00-0032520 2575446
#> 1786                                     Parkston (SD) 00-0029672   14930
#> 1787                                   Salesianum (DE) 00-0034158 3123954
#> 1788                                      Sanford (NC) 00-0034994 3120502
#> 1789                             Central Catholic (OR) 00-0036347 3930270
#> 1790                                      Carroll (IN) 00-0035102 4411192
#> 1791                                        Elder (OH) 00-0027981   14054
#> 1792                               Brother Martin (LA) 00-0034970 4040980
#> 1793                                       Helias (MO) 00-0035025 3925348
#> 1794                          L'Anse Creuse North (MI) 00-0034270 3915486
#> 1795                             Aurora Christian (IL) 00-0034309 3047968
#> 1796                                  IMG Academy (FL) 00-0036345 3916566
#> 1797                                Detroit Lakes (MN) 00-0030035   16460
#> 1798                                   Bear Creek (CO) 00-0035006 3917067
#> 1799                             Downingtown-East (PA) 00-0035976 3929637
#> 1800                                    Destrehan (LA) 00-0036322 4262921
#> 1801                                       Dacula (GA) 00-0033793 2973637
#> 1802                                     Chandler (AZ) 00-0036200 4039374
#> 1803                                    Iowa City (IA) 00-0031039   17361
#> 1804                                     Wesleyan (GA) 00-0031852 2578529
#> 1805                                     Crenshaw (CA) 00-0031337   16788
#> 1806                                   Blythewood (SC) 00-0029530   15089
#> 1807                                  South Hills (CA) 00-0034966 3139389
#> 1808                                 South Pointe (SC) 00-0029542   14942
#> 1809                                   Spain Park (AL) 00-0035277 3917853
#> 1810                                   St. Joseph (NJ) 00-0027136   12691
#> 1811                                   Carrollton (GA) 00-0032580 2971027
#> 1812                                  Father Ryan (TN) 00-0035241 4035286
#> 1813                                    Immokalee (FL) 00-0034591 3121649
#> 1814                              Seminole County (GA) 00-0033779 2973647
#> 1815                                   Whitewater (GA) 00-0036231 4401811
#> 1816                                       Loyola (CA) 00-0036087 4039010
#> 1817                                   St. Joseph (NJ) 00-0027647   13236
#> 1818                               Lake Highlands (TX) 00-0034723 3040031
#> 1819                              Cardinal Mooney (OH) 00-0030442   16010
#> 1820                                       Hebron (TX) 00-0033947 2980080
#> 1821                             Thomas Jefferson (PA) 00-0035654 3115974
#> 1822                                   Immaculata (NJ) 00-0033324 3042726
#> 1823                                    Delbarton (NJ) 00-0036093 3912189
#> 1824                                  Duncanville (TX) 00-0033381 2972342
#> 1825                                      Western (NV) 00-0028171   14185
#> 1826                                     Woodland (SC) 00-0036455 3728306
#> 1827                            Fort Walton Beach (FL) 00-0030402   15958
#> 1828                                      Armwood (FL) 00-0035278 3916922
#> 1829                    Wheaton Warrenville South (IL) 00-0032794 2974365
#> 1830                                 Jean Ribault (FL) 00-0035726 3115349
#> 1831                             Columbia Central (TN) 00-0031580 2576917
#> 1832                                       Waukee (IA) 00-0035036 3144994
#> 1833                                    Cass Tech (MI) 00-0036198 4046545
#> 1834                                       Celina (TX) 00-0033740 2977779
#> 1835                                  North Shore (TX) 00-0034097 3117420
#> 1836                                   Notre Dame (CA) 00-0025565   10621
#> 1837                                 Clifton Park (NY) 00-0036161 3913295
#> 1838                         Groveland South Lake (FL) 00-0033102 2978887
#> 1839                                         King (GA) 00-0034962 3924319
#> 1840                                    Dadeville (AL) 00-0036193 3925350
#> 1841                                     Thompson (AL) 00-0031856 3051905
#> 1842                                    Paramount (CA) 00-0036164 4048736
#> 1843                                   Middletown (NJ) 00-0033122 2576257
#> 1844                                     Columbus (FL) 00-0036159 4046528
#> 1845                             DeMatha Catholic (MD) 00-0034385 3116187
#> 1846                              Marshall County (TN) 00-0029669   14933
#> 1847                                Gilman School (MD) 00-0030010   16393
#> 1848                                Granite Hills (CA) 00-0032228 2575907
#> 1849                           Adlai E. Stevenson (MI) 00-0031938 2511690
#> 1850                                   Minnetonka (MN) 00-0031089   16912
#> 1851                           Santa Fe Christian (CA) 00-0035280 3931395
#> 1852                                     Westlake (GA) 00-0027939   13994
#> 1853                                 St. Ignatius (OH) 00-0026625   12477
#> 1854                              Milford Academy (NY) 00-0035394 3921586
#> 1855                                 Stephenville (TX) 00-0035264 3892775
#> 1856                           St. Thomas Aquinas (FL) 00-0031062   16913
#> 1857                            American Heritage (FL) 00-0034845 3128721
#> 1858                                        Plano (TX) 00-0030288   15971
#> 1859                             Madison Southern (KY) 00-0035657 3925347
#> 1860                         Scotlandville Magnet (LA) 00-0029239   15478
#> 1861                                   Centennial (CA) 00-0036096 4039607
#> 1862                             Rancho Cucamonga (CA) 00-0027010   12527
#> 1863                                 Stephenville (TX) 00-0029764   16286
#> 1864                                      Garland (TX) 00-0031404   17487
#> 1865                                    Dunnellon (FL) 00-0031338   16768
#> 1866                                       Bullis (MD) 00-0036163 3124112
#> 1867                                      Miramar (FL) 00-0035252 3116455
#> 1868                                   Montevallo (AL) 00-0034687 3056899
#> 1869                                Morris Knolls (NJ) 00-0033290 3115303
#> 1870                             Archbishop Alter (OH) 00-0032391 2577773
#> 1871                                       Odessa (TX) 00-0028076   14116
#> 1872                                  Seven Lakes (TX) 00-0032779 3047575
#> 1873                                     Lakewood (FL) 00-0034833 3128713
#> 1874                                 Clovis North (CA) 00-0034575 3047536
#> 1875                                    Chatfield (CO) 00-0036225 4240861
#> 1876                             Naperville North (IL) 00-0031744 2576179
#> 1877                                  De La Salle (CA) 00-0036194 4046522
#> 1878                              Pope John XXIII (NJ) 00-0034439 3122920
#> 1879                              St. John's Prep (MA) 00-0036088 3915308
#> 1880                                       Lorain (OH) 00-0036086 3915508
#> 1881                                   Cedar Hill (TX) 00-0033366 3051869
#> 1882                        Timber Creek Regional (NJ) 00-0031868 2577667
#> 1883                              Arabia Mountain (GA) 00-0034960 3916433
#> 1884                                   Stephenson (GA) 00-0036100 3916129
#> 1885                                     Woodside (CA) 00-0027150   12649
#> 1886                                   Washington (OH) 00-0031934 2576395
#> 1887                               Bishop Alemany (CA) 00-0034667 3052122
#> 1888                                        Alvin (TX) 00-0035645 4424106
#> 1889                                    Craigmont (TN) 00-0036183 3910176
#> 1890                                      Raleigh (MS) 00-0031339   16791
#> 1891                                      Servite (CA) 00-0026293   11387
#> 1892                               Junipero Serra (CA) 00-0031431   16787
#> 1893                                     Chandler (AZ) 00-0035624 4047839
#> 1894                               Brother Martin (LA) 00-0034436 3115387
#> 1895                                       Lufkin (TX) 00-0035242 3917331
#> 1896                                Gulliver Prep (FL) 00-0027882   13238
#> 1897                                      Pahokee (FL) 00-0029681   14974
#> 1898                            The Lovett School (GA) 00-0034502 3116166
#> 1899                                    Glenville (OH) 00-0033874 3121421
#> 1900                                    Glenville (OH) 00-0033770 2970625
#> 1901                                 H.D. Woodson (DC) 00-0032875 2979612
#> 1902                              Gonzaga College (DC) 00-0029065   15359
#> 1903                                     Vanguard (FL) 00-0032059 2977661
#> 1904                   Eastvale Eleanor Roosevelt (CA) 00-0033894 3122882
#> 1905                                   Prattville (AL) 00-0035896 3929920
#> 1906                                    Greenwood (SC) 00-0030566   15865
#> 1907                                      Jenkins (GA) 00-0032369 2585962
#> 1908                            Taylor Allderdice (PA) 00-0031304   16758
#> 1909                                       Apopka (FL) 00-0033935 3052743
#> 1910                              Bishop McDevitt (PA) 00-0032952 2976313
#> 1911                                     Chandler (AZ) 00-0027962   13971
#> 1912                            John Paul Stevens (TX) 00-0034344 3124058
#> 1913                                        Grant (CA) 00-0035402 3918310
#> 1914                             Durham Riverside (NC) 00-0036128 4027908
#> 1915                                 Madison Prep (LA) 00-0035763 4039064
#> 1916                               North Davidson (NC) 00-0035409 3886601
#> 1917                                 West Forsyth (NC) 00-0035179 3895834
#> 1918                              Marmion Academy (IL) 00-0033786 2977635
#> 1919                               Ogemaw Heights (MI) 00-0032435 2582150
#> 1920                                   Chrisland (NGA) 00-0033051 4002046
#> 1921                                  Forest Hill (MS) 00-0031615 2574023
#> 1922                                     Eastside (GA) 00-0032759 2970204
#> 1923                                      Brenham (TX) 00-0032261 2971698
#> 1924                          West Morris Central (NJ) 00-0031595 2515270
#> 1925                               Corona del Sol (AZ) 00-0032203 2978278
#> 1926                                 East Gadsden (FL) 00-0035407 3122925
#> 1927                                  IMG Academy (FL) 00-0036408 4258199
#> 1928                                   Plainfield (IN) 00-0030694   17178
#> 1929                                     Hibriten (NC) 00-0031765 2507667
#> 1930                             Cardinal Gibbons (FL) 00-0029576   15058
#> 1931                                    Northgate (GA) 00-0032569 2985659
#> 1932                                    Lone Peak (UT) 00-0034944 2971641
#> 1933                                      Brandon (MS) 00-0029607   14958
#> 1934                                   Brown Deer (WI) 00-0036418 3917657
#> 1935                                   Wyomissing (PA) 00-0033914 3043107
#> 1936                                     Stafford (TX) 00-0028834   14860
#> 1937                      Judge Memorial Catholic (UT) 00-0035316 3124890
#> 1938                                       Oxford (AL) 00-0032109 2976541
#> 1939                                   St. Edward (OH) 00-0035412 3929818
#> 1940                                      Horizon (CO) 00-0023173    9287
#> 1941                                      Rowlett (TX) 00-0033063 2575788
#> 1942                      The Westminster Schools (GA) 00-0035859 4045180
#> 1943                                     Pearland (TX) 00-0027114   12701
#> 1944                                     Hueytown (AL) 00-0031503 2969939
#> 1945                                     Westlake (TX) 00-0020531    2580
#> 1946                                     Highland (ID) 00-0033357 2468609
#> 1947                                      Olympia (FL) 00-0032156 2511109
#> 1948                                   St. Mark's (TX) 00-0032200 2577134
#> 1949                                  IMG Academy (FL) 00-0035860 4046676
#> 1950                                     Norcross (GA) 00-0033906 3054850
#> 1951                                              <NA> 00-0035405 3911993
#> 1952                             Onondaga Central (FL) 00-0030513   15920
#> 1953                                         Gahr (CA) 00-0032450 3002265
#> 1954                                   Clarksdale (MS) 00-0034116 3115481
#> 1955                                   Piscataway (NJ) 00-0026990   12426
#> 1956                                        Cocoa (FL) 00-0035253 4034953
#> 1957                                    Riverhead (NY) 00-0035403 3938169
#> 1958                                      Newport (WA) 00-0035764 3915147
#> 1959                                Stevens Point (WI) 00-0033888 3917676
#> 1960                                      Cahokia (IL) 00-0030067   15821
#> 1961                                   Elk Rapids (MI) 00-0036422 3911853
#> 1962                                    Blackfoot (ID) 00-0030216   16143
#> 1963                                      Minster (OH) 00-0034672 3115360
#> 1964                        Sacred Heart Catholic (TX) 00-0032562 2982151
#> 1965                               North Gwinnett (GA) 00-0027061   12537
#> 1966                                    Louisburg (KS) 00-0033095 2987440
#> 1967                            Chicago Christian (IL) 00-0032689 3057863
#> 1968                          Woodland Hills Taft (CA) 00-0032765 2976316
#> 1969                          Detroit Country Day (MI) 00-0030670   16995
#> 1970                              Village Academy (FL) 00-0034765 3128451
#> 1971                            Archbishop Curley (MD) 00-0035215 4411193
#> 1972                                  Tift County (GA) 00-0035031 3917200
#> 1973                            Southlake Carroll (TX) 00-0035406 4039057
#> 1974                                      Benicia (CA) 00-0033382 2974339
#> 1975                                   W.T. Dwyer (FL) 00-0032881 2574918
#> 1976                                    Glassboro (NJ) 00-0036040 3929645
#> 1977                                    Bellville (TX) 00-0027685   13295
#> 1978                                Warner Robins (GA) 00-0036219 4035170
#> 1979                                      Haslett (MI) 00-0033021 3057850
#> 1980                                Bishop Gorman (NV) 00-0034445 3116096
#> 1981                        Evangelical Christian (TN) 00-0032911 2577792
#> 1982                                   South Lake (FL) 00-0030649   17066
#> 1983                                      Doherty (MA) 00-0034780 3122797
#> 1984                                 Ottawa Hills (MI) 00-0034839 3916720
#> 1985                                     Eastlake (WA) 00-0033608 2970264
#> 1986                            University School (FL) 00-0033544 3121660
#> 1987                                    Calabasas (CA) 00-0036394 4242973
#> 1988                               Pleasant Grove (AL) 00-0032890 2572841
#> 1989                                    Olentangy (OH) 00-0035925 3911073
#> 1990                                Mineral Wells (TX) 00-0033302 2971699
#> 1991                             Nazareth Academy (IL) 00-0034974 4046675
#> 1992                                        Lamar (TX) 00-0036084 4038440
#> 1993                                      Eastern (NJ) 00-0030411   15861
#> 1994                                      Roswell (GA) 00-0036388 4241470
#> 1995                                     Callaway (MS) 00-0034774 3128740
#> 1996                             Cardinal Gibbons (FL) 00-0034848 3917872
#> 1997                         St. Vincent-St. Mary (OH) 00-0035816 4030955
#> 1998                                  Wake Forest (NC) 00-0035683 4035483
#> 1999                              Hollywood Hills (FL) 00-0027975   14036
#> 2000                                     Mainland (FL) 00-0031933 2971622
#> 2001                                  West Stanly (NC) 00-0034800 3116748
#> 2002                                       Kearny (CA) 00-0035985 3127587
#> 2003                                      Norwalk (CA) 00-0032813 2575965
#> 2004                                        Moody (AL) 00-0031928 2516029
#> 2005                                    Chaparral (NV) 00-0034346 3042516
#> 2006                           Wisconsin Lutheran (WI) 00-0029592   14931
#> 2007                                  West Valley (WA) 00-0036397 3915142
#> 2008                                    Elk Grove (CA) 00-0028240   14460
#> 2009                                         Tate (FL) 00-0026858   12460
#> 2010                                    Scappoose (OR) 00-0031596 2972400
#> 2011                                       Bullis (MD) 00-0036400 4045165
#> 2012                                     Norcross (GA) 00-0034360 3128715
#> 2013                                  Winter Park (FL) 00-0034588 3123054
#> 2014                                Harris County (GA) 00-0036167 3915171
#> 2015                                 Eden Prairie (MN) 00-0036402 4034766
#> 2016                              Hertford County (NC) 00-0035708 3123233
#> 2017                            Mountlake Terrace (WA) 00-0034167 3122593
#> 2018                               Canyon del Oro (AZ) 00-0032408 2978273
#> 2019                                      Miramar (FL) 00-0033242 3051924
#> 2020                           Richland Northeast (SC) 00-0036404 4038811
#> 2021                                         Mesa (AZ) 00-0032955 2574229
#> 2022                                    Riverdale (TN) 00-0029959   16359
#> 2023                                      Central (IA) 00-0030957   17304
#> 2024                           St. Augustine Prep (NJ) 00-0032763 2979591
#> 2025                                 Henry County (GA) 00-0033546 2979860
#> 2026                                         Pace (FL) 00-0034648 3040204
#> 2027                   Christian Brothers Academy (NY) 00-0032943 2577619
#> 2028                              Charlotte Latin (NC) 00-0035710 3917792
#> 2029                                      Jim Ned (TX) 00-0027688   13199
#> 2030                                      Wenonah (AL) 00-0027796   13484
#> 2031                                Wheaton North (IL) 00-0035283 3116144
#> 2032                                    Lexington (IL) 00-0029623   15693
#> 2033                                  IMG Academy (FL) 00-0036449 4683485
#> 2034                               Albany Academy (NY) 00-0028087   14198
#> 2035                                      Grayson (GA) 00-0033950 3045127
#> 2036                                      Bayside (VA) 00-0033373 3048680
#> 2037                               Madison County (AL) 00-0034551 3053732
#> 2038                                 Paul Harding (IN) 00-0031900 2512197
#> 2039                                    Whitehall (PA) 00-0034844 3929630
#> 2040                                  Pine Forest (FL) 00-0029141   15009
#> 2041                             Paramus Catholic (NJ) 00-0033883 3115962
#> 2042                            Hilliard Davidson (OH) 00-0029570   15125
#> 2043                                 Crisp County (GA) 00-0035339 3915970
#> 2044                           Governor's Academy (MA) 00-0036392 3921936
#> 2045                                     Brighton (UT) 00-0035003 3122865
#> 2046                                 Center Grove (IN) 00-0034128 3040210
#> 2047                                 Pace Academy (GA) 00-0036386 4259566
#> 2048                                Cypress Creek (TX) 00-0031067   16932
#> 2049                                    Attleboro (MA) 00-0035870 4032758
#> 2050                                  Buena Vista (CO) 00-0027955   13964
#> 2051                                    Hillgrove (GA) 00-0033881 3051876
#> 2052                                       Marcus (TX) 00-0034988 4044452
#> 2053                            Vancouver College (BC) 00-0035991 4045062
#> 2054                                        Helix (CA) 00-0030443   15980
#> 2055                                    Cathedral (CA) 00-0034256 3056577
#> 2056                            Pope John Paul II (TN) 00-0027891   13217
#> 2057                                Coconut Grove (FL) 00-0032935 3056906
#> 2058                                   West Creek (TN) 00-0033367 2973626
#> 2059                                 Bishop Luers (IN) 00-0035869 4040623
#> 2060                    Greater Atlanta Christian (GA) 00-0035535 3916945
#> 2061                               Oaks Christian (CA) 00-0035602 3919510
#> 2062                    Eastern Christian Academy (MD) 00-0035359 3871102
#> 2063                              JSerra Catholic (CA) 00-0034860 3127306
#> 2064                                       Auburn (AL) 00-0032795 2980378
#> 2065                                Heritage Hall (OK) 00-0032385 2976592
#> 2066                                  J.J. Pearce (TX) 00-0032966 2978929
#> 2067                                      Shanley (ND) 00-0033011 2577367
#> 2068                            Sacred Heart Prep (CA) 00-0033750 2980597
#> 2069                               Loyola Academy (IL) 00-0034295 3048026
#> 2070                                Boynton Beach (FL) 00-0035499 3125705
#> 2071                                    Southeast (FL) 00-0032596 2980115
#> 2072                              Shawnee Heights (KS) 00-0035633 4411769
#> 2073                                     Bonnabel (LA) 00-0033503 3916144
#> 2074                                Campus Magnet (NY) 00-0035294 3870072
#> 2075                                    Christian (NC) 00-0032496 2579840
#> 2076                            Trinity Episcopal (VA) 00-0036021 4239965
#> 2077                              Bishop McDevitt (PA) 00-0036241      NA
#> 2078                                 Holy Trinity (FL) 00-0033892 2980110
#> 2079                               Vista Murrieta (CA) 00-0036149 4243250
#> 2080                                     Franklin (CA) 00-0036152 4034849
#> 2081                                      Raritan (NJ) 00-0031188   16879
#> 2082                                   Nottingham (NJ) 00-0035288 3127367
#> 2083                             St. Paul Central (MN) 00-0034248 3932901
#> 2084                                    Hillsboro (TN) 00-0035507 3886528
#> 2085                                   Greenville (TX) 00-0034805 3120464
#> 2086                                   Sprayberry (GA) 00-0036296 3915123
#> 2087                         St. Paul's Episcopal (AL) 00-0036151 4039375
#> 2088                             Woodward Academy (GA) 00-0032269 2517752
#> 2089                                Beach Channel (NY) 00-0034275 3045172
#> 2090                                      Miramar (FL) 00-0032566 2982880
#> 2091                         Scotlandville Magnet (LA) 00-0033963 3041112
#> 2092                         J. Clarke Richardson (ON) 00-0034760 4076951
#> 2093                                       Colony (CA) 00-0030706   16963
#> 2094                           Pickerington North (OH) 00-0033909 2976295
#> 2095                                    Chaminade (NY) 00-0029685   15718
#> 2096                                      La Joya (TX) 00-0031385      NA
#> 2097                                Cypress Woods (TX) 00-0035358 3150744
#> 2098                                   Valparaiso (IN) 00-0033138 2582139
#> 2099                                       Newnan (GA) 00-0030527   15806
#> 2100                                         Novi (MI) 00-0033997 3057876
#> 2101                                      Concord (DE) 00-0029792   16243
#> 2102                                    Inglewood (CA) 00-0032573 2576761
#> 2103                                     Theodore (AL) 00-0031296   16720
#> 2104                              Rockdale County (GA) 00-0031740 3059880
#> 2105                                 Eden Prairie (MN) 00-0035276 3728281
#> 2106                              Franklin County (VA) 00-0033917 3052977
#> 2107                              James F. Byrnes (SC) 00-0035549 3911689
#> 2108                                Harris County (GA) 00-0032970 2977647
#> 2109                                      Tafuna (ASM) 00-0034302 3127273
#> 2110                                      Bingham (UT) 00-0033392 2570996
#> 2111                                     Westlake (TX) 00-0032248 2512999
#> 2112                                      Henrico (VA) 00-0034659 3051333
#> 2113                               Don Bosco Prep (NJ) 00-0033260 2983155
#> 2114                                      Wenonah (AL) 00-0035718 4040982
#> 2115                                      Cy-Fair (TX) 00-0036313 4035239
#> 2116                                              <NA> 00-0034918 3042565
#> 2117                                        Palma (CA) 00-0031076   16821
#> 2118                        NSU University School (FL) 00-0034401 3051381
#> 2119                                      Audubon (NJ) 00-0026158   11252
#> 2120                                  Ashwaubenon (WI) 00-0036301 3914395
#> 2121                                 San Clemente (CA) 00-0034869 3912547
#> 2122                                    Fort Hill (MD) 00-0035537 3915411
#> 2123                                    Lyndhurst (NJ) 00-0036454 4262315
#> 2124                                     Theodore (AL) 00-0036269 4034952
#> 2125                                             Crest 00-0035505 3123675
#> 2126                                 Coral Gables (FL) 00-0023500    8479
#> 2127                          Central Bucks South (PA) 00-0034457 3932420
#> 2128                                    Astronaut (FL) 00-0035044 4264341
#> 2129                                   Santa Cruz (CA) 00-0036329 3858271
#> 2130                                       Scioto (OH) 00-0030161   16269
#> 2131                                 Ben L. Smith (NC) 00-0036263 3914277
#> 2132                              Mountain Pointe (AZ) 00-0032407 3116110
#> 2133                          The Ensworth School (TN) 00-0033300 2971584
#> 2134                               Warren Central (KY) 00-0032466 2583951
#> 2135                             Highland Springs (VA) 00-0036284 4240090
#> 2136                                    McEachern (GA) 00-0035698 3701582
#> 2137                                       Chaska (MN) 00-0032319 3936647
#> 2138                                     Norcross (GA) 00-0034766 3123050
#> 2139                                    Musselman (WV) 00-0035259 4039253
#> 2140                                     Fallston (MD) 00-0036451      NA
#> 2141                                  Londonderry (NH) 00-0030108   15887
#> 2142                                       Monroe (NC) 00-0031941 2576716
#> 2143                               Leesville Road (NC) 00-0034419 3123075
#> 2144                                 Station Camp (TN) 00-0033859 3115330
#> 2145                              Madison Central (MS) 00-0035045 4249030
#> 2146                             Mansfield Legacy (TX) 00-0032760 2576019
#> 2147                  Clearwater Central Catholic (FL) 00-0035510 3929118
#> 2148                                 Daingerfield (TX) 00-0036255 4035403
#> 2149                                    Rock Hill (SC) 00-0034267 4040792
#> 2150                                 Calvert Hall (MD) 00-0036145 3917849
#> 2151                                       Ramapo (NJ) 00-0028237   14402
#> 2152                                     Westwood (SC) 00-0034631 3155188
#> 2153                                Isle of Wight (VA) 00-0032098 2519013
#> 2154                              Arabia Mountain (GA) 00-0032054 2972460
#> 2155                              Marmion Academy (IL) 00-0035999 3916744
#> 2156                            Cleveland Heights (OH) 00-0028129   14124
#> 2157                                  Cedar Falls (IA) 00-0035274 3126364
#> 2158                                    Brunswick (GA) 00-0030062   15863
#> 2159                                         Muir (CA) 00-0032942 2971603
#> 2160                                   Frostproof (FL) 00-0030041   16217
#> 2161                              Glades Central  (FL) 00-0032581 2982870
#> 2162                                 Edwardsville (IL) 00-0034310 3116058
#> 2163                           Martin Luther King (MI) 00-0034377 3123938
#> 2164                                      Central (TX) 00-0035998 3917576
#> 2165                           Martin Luther King (MI) 00-0035885 4046538
#> 2166                             DeMatha Catholic (MD) 00-0028899   15222
#> 2167                                    Chaparral (AZ) 00-0035172 3935064
#> 2168                                     Newfield (NY) 00-0036002 4036924
#> 2169                             Highland Springs (VA) 00-0036395 4035463
#> 2170                                      Kountze (TX) 00-0035995 4035389
#> 2171                        St. Michael's Academy (TX) 00-0036116      NA
#> 2172                                  Oscar Smith (VA) 00-0034381 3693166
#> 2173                                     Crockett (MI) 00-0027865   13239
#> 2174                                      Neptune (NJ) 00-0029412   14959
#> 2175                               St. Michael's (AUS) 00-0036446 4241264
#> 2176                                      LaSalle (MI) 00-0034463 3044706
#> 2177                            Brentwood Academy (TN) 00-0033876 3115336
#> 2178                          DePaul College Prep (IL) 00-0036007 3929834
#> 2179                                   Yazoo City (MS) 00-0029653   14941
#> 2180                                  North Rowan (NC) 00-0033109 2983055
#> 2181                                    Mansfield (TX) 00-0032402 2971725
#> 2182                                   Birmingham (CA) 00-0029568   15047
#> 2183                                 Wayne County (GA) 00-0032162 2577757
#> 2184                                   Penn Hills (PA) 00-0033976 2973027
#> 2185                                    Corvallis (OR) 00-0032954 2978247
#> 2186                                    Riverside (WI) 00-0029679   14962
#> 2187                                    St. Louis (HI) 00-0035383 4044438
#> 2188                                   Fern Creek (KY) 00-0032244 2576647
#> 2189                                     Lakewood (CA) 00-0034417 3055886
#> 2190                                    Stansbury (UT) 00-0035384 3121009
#> 2191                               Lyons Township (IL) 00-0033787 3050478
#> 2192                                      Grenada (MS) 00-0034682 3126204
#> 2193                              Lakes Community (IL) 00-0035386 3121544
#> 2194                              Rancocas Valley (NJ) 00-0036401 4038902
#> 2195                               Glades Central (FL) 00-0032895 2971929
#> 2196                        John Curtis Christian (LA) 00-0033549 3042725
#> 2197                                    Homestead (FL) 00-0036209 4040762
#> 2198                                Thousand Oaks (CA) 00-0031898 2612151
#> 2199                                   South Pike (MS) 00-0036393 4360645
#> 2200                                   Washington (SD) 00-0033577 3040475
#> 2201                                        Berea (OH) 00-0035895 4036507
#> 2202                                   Middletown (NJ) 00-0031911 2565971
#> 2203                                St. Joseph's (AUS) 00-0033729 3051397
#> 2204                            Hallam Secondary (AUS) 00-0036013 4371989
#> 2205                            Modesto Christian (CA) 00-0032792 2979501
#> 2206                                  Channelview (TX) 00-0036389 4040715
#> 2207                                      Century (ND) 00-0032950 2573079
#> 2208                                              <NA> 00-0035387      NA
#> 2209                                   Gardendale (AL) 00-0032780 3060022
#> 2210                             Woodward Academy (GA) 00-0035442 4035006
#> 2211                               Woodland Hills (PA) 00-0035243 4045163
#> 2212                                     Mainland (FL) 00-0036000 4042112
#> 2213                                      Zachary (LA) 00-0034414 3051439
#> 2214                                    Glassboro (NJ) 00-0033725 3045260
#> 2215                                       Martin (TX) 00-0036278 4040790
#> 2216                                       Edison (CA) 00-0034993 3139368
#> 2217                                     New Hope (AL) 00-0033792 3051901
#> 2218                                       Desoto (TX) 00-0032803 2976540
#> 2219                     Our Lady of Good Counsel (MD) 00-0032793 2576229
#> 2220                                     Groveton (TX) 00-0030561   15797
#> 2221                                Condell Park (AUS) 00-0034429 4334215
#> 2222                                  West Ashley (SC) 00-0035743 3129116
#> 2223                                  Daniel Hand (CT) 00-0036396 3932668
#> 2224                                  Woodinville (WA) 00-0035233 3127264
#> 2225                                   Queen City (TX) 00-0022531    6012
#> 2226                                  Monte Vista (CA) 00-0030061   15835
#> 2227                                         Gahr (CA) 00-0032599 2578377
#> 2228                                  Mona Shores (MI) 00-0035356 3916564
#> 2229                                     Norcross (GA) 00-0033627 2972240
#> 2230                                Britton-Hecla (SD) 00-0034351 3121023
#> 2231                               Junipero Serra (CA) 00-0035320 3932936
#> 2232                                       Travis (TX) 00-0035529 3917940
#> 2233                                   St. John's (MA) 00-0031384   16786
#> 2234                                      Rowlett (TX) 00-0030068   15839
#> 2235                                   John Tyler (TX) 00-0033733 3040035
#> 2236                                        Serra (CA) 00-0034653 3932935
#> 2237                                    Broad Run (VA) 00-0035592 3139522
#> 2238                                   Waxahachie (TX) 00-0036387 4241802
#> 2239                               North Pontotoc (MS) 00-0035296 3124964
#> 2240                                       Athens (AL) 00-0036271 4050373
#> 2241                                       Dorman (SC) 00-0035246 3931397
#> 2242                               Calhoun County (SC) 00-0029137   14912
#> 2243                              Long Beach Poly (CA) 00-0026189   11283
#> 2244                            Riverdale Baptist (MD) 00-0036398 4373673
#> 2245                                     Lakeland (FL) 00-0027870   13250
#> 2246                                   East Ridge (MN) 00-0034142 3126353
#> 2247                                  Benedictine (OH) 00-0035650 4046719
#> 2248                                 Calvert Hall (MD) 00-0032916 2979605
#> 2249                                    Jonesboro (GA) 00-0033930 3044724
#> 2250                                     Friendly (MD) 00-0027860   13249
#> 2251                                  Sandy Creek (GA) 00-0032521 2980383
#> 2252                              Deerfield Beach (FL) 00-0035795 4259252
#> 2253                            James S. Rickards (FL) 00-0035598 4408864
#> 2254                                    Northside (GA) 00-0032150 3045287
#> 2255                                        Duval (MD) 00-0036346 4036213
#> 2256                                        Maret (DC) 00-0033053 2976210
#> 2257                                   Henry Wise (MD) 00-0034335 3116149
#> 2258                                      Whitmer (OH) 00-0033913 2977615
#> 2259                               Oaks Christian (CA) 00-0031175   16873
#> 2260                                       Jesuit (OR) 00-0034318 3122690
#> 2261                                       Ruston (LA) 00-0035219 4241451
#> 2262                                    St. Louis (HI) 00-0027862   13233
#> 2263                                       Monroe (GA) 00-0031412   16798
#> 2264                            Augusta Christian (GA) 00-0035820 3915253
#> 2265                              Peachtree Ridge (GA) 00-0027969   13977
#> 2266                                 Blue Springs (MO) 00-0036352 3699462
#> 2267                                      Manatee (FL) 00-0035595 3122915
#> 2268                                     Pewaukee (WI) 00-0032897 2576450
#> 2269                                   Plaquemine (LA) 00-0036339 3917599
#> 2270                                  Cypress Bay (FL) 00-0033960 2969959
#> 2271                                     Bellevue (WA) 00-0029678   14935
#> 2272                                 Fossil Ridge (TX) 00-0031136   17372
#> 2273                                  George Bush (TX) 00-0034204 3126081
#> 2274                                      Fenwick (IL) 00-0034720 3129446
#> 2275                              Ridge Community (FL) 00-0030434   15934
#> 2276                             Wilkinson County (GA) 00-0032146 2576702
#> 2277                                     Colerain (OH) 00-0034121 3128268
#> 2278                          Charles W. Flanagan (FL) 00-0035525 4036261
#> 2279                                     Pewaukee (WI) 00-0033886 3045282
#> 2280                                        Milan (TN) 00-0031263   16920
#> 2281                             Chartiers Valley (PA) 00-0034051 2978524
#> 2282                                Eugene Ashley (NC) 00-0036333 4037333
#> 2283                             Trinity Catholic (FL) 00-0035223 3920867
#> 2284                                    Glenville (OH) 00-0030752   16991
#> 2285                                      Sheldon (OR) 00-0032486 2967885
#> 2286                                   Melbourne (AUS) 00-0031502 2472364
#> 2287                                       Milton (FL) 00-0035821 3125280
#> 2288                                   Alpharetta (GA) 00-0033949 3044720
#> 2289                                      Findlay (OH) 00-0022924    5536
#> 2290                                 Northwestern (SC) 00-0034771 3116407
#> 2291                                Bullis School (NJ) 00-0035232 4040616
#> 2292                                Mallard Creek (NC) 00-0034331 3116721
#> 2293                             DeMatha Catholic (MD) 00-0036336 4241941
#> 2294                          Westerville Central (OH) 00-0035217 4035072
#> 2295                                    Dan River (VA) 00-0033838 2970090
#> 2296                    Eastern Christian Academy (MD) 00-0032782 3042429
#> 2297                                     McDowell (PA) 00-0033553 3045147
#> 2298                             Royal Palm Beach (FL) 00-0030023   16179
#> 2299                                    Dan River (VA) 00-0034858 3124067
#> 2300                                   Hallandale (FL) 00-0035498 3115371
#> 2301                             St. Peter's Prep (NJ) 00-0034789 3925345
#> 2302                                  Willowridge (TX) 00-0033326 2971556
#> 2303                                        Lakes (WA) 00-0033785 2971616
#> 2304                                  Tottenville (NY) 00-0034625 3119215
#> 2305                                West St. Mary (LA) 00-0033085 2976554
#> 2306                            Aquinas Institute (NY) 00-0033715 2980142
#> 2307                           Lampeter-Strasburg (PA) 00-0031142   17404
#> 2308                                   Southfield (MI) 00-0034768 3129473
#> 2309                           SHAPE High School (BEL) 00-0030648   16706
#> 2310                                     Seminole (FL) 00-0036123 4040778
#> 2311                   Holy Savior Menard Central (LA) 00-0034937 3126261
#> 2312                                        Smith (NC) 00-0031387   16732
#> 2313                                East Chambers (TX) 00-0030470   15853
#> 2314                                Pine-Richland (PA) 00-0034193 3049290
#> 2315                                     Eldorado (NM) 00-0035222 3929924
#> 2316                                     Timpview (UT) 00-0035058 3932963
#> 2317                                St. Augustine (LA) 00-0035553 3126263
#> 2318                                  Abbotsford (CAN) 00-0036326 4046692
#> 2319                              Earl J. Lennard (FL) 00-0035216 3932905
#> 2320                                 South Pointe (SC) 00-0035474 4049301
#> 2321                                     Stamford (TX) 00-0034676 3122449
#> 2322                          Walled Lake Western (MI) 00-0035891 4241983
#> 2323                                      Sickles (FL) 00-0034407 3728262
#> 2324                              Long Beach Poly (CA) 00-0033857 3120348
#> 2325                                       Lemont (IL) 00-0033901 3042738
#> 2326                            Liberty Christian (TX) 00-0034239 3122432
#> 2327                                    Creekside (GA) 00-0035207 3915190
#> 2328                                 Merrillville (IN) 00-0034527 3121344
#> 2329                                     Lakewood (FL) 00-0033926 3054026
#> 2330                         Booker T. Washington (FL) 00-0032007 2516049
#> 2331                                    Oceanside (CA) 00-0035285 3886824
#> 2332                                       Tucker (GA) 00-0029329   15535
#> 2333                                       Judson (TX) 00-0034756 3046326
#> 2334                                      Wooster (OH) 00-0035139 4243244
#> 2335                          Archbishop Stepinac (NY) 00-0036056 3912347
#> 2336                                     Angleton (TX) 00-0031608 2577553
#> 2337                                      Overton (TN) 00-0035142 3886834
#> 2338                                 Independence (CA) 00-0034384 3139387
#> 2339                                    Pensacola (FL) 00-0032251 3043258
#> 2340                                       Euclid (OH) 00-0034130 3125816
#> 2341                                     Hopewell (VA) 00-0036413 3915396
#> 2342                                       Judson (TX) 00-0036426 4254276
#> 2343                                   McKeesport (PA) 00-0033024 2577642
#> 2344                                        Crest (NC) 00-0033093 2980097
#> 2345                               Junipero Serra (CA) 00-0034831 3912562
#> 2346                              Fort Dorchester (SC) 00-0027662   13274
#> 2347                                       Munday (TX) 00-0035636 3116449
#> 2348                                    Inglewood (CA) 00-0030380   16528
#> 2349                                      Rowlett (TX) 00-0030069   15858
#> 2350                    East English Village Prep (MI) 00-0036058 4036138
#> 2351                                    Goldsboro (NC) 00-0032387 3115312
#> 2352                                Whitefish Bay (WI) 00-0028292   14471
#> 2353                                      Western (CA) 00-0027869   13246
#> 2354                                       Canton (MS) 00-0036417 4362647
#> 2355                                     Westlake (GA) 00-0030593   15814
#> 2356                                Raleigh Enloe (NC) 00-0035141 3136374
#> 2357                                        Wylie (TX) 00-0033592 2978933
#> 2358                                       Crespi (CA) 00-0033446 2971614
#> 2359                                   St. Edward (OH) 00-0026762   12910
#> 2360                           Mater Dei Catholic (CA) 00-0031492 2473037
#> 2361                            Sacred Heart Prep (CA) 00-0035143 3886816
#> 2362                                    Stratford (TX) 00-0036409 4043130
#> 2363                                     Brighton (UT) 00-0035672 3926229
#> 2364                                     Lakewood (FL) 00-0034755 3054029
#> 2365                                      Sanford (FL) 00-0030050   16463
#> 2366                              Langston Hughes (GA) 00-0035284 3915196
#> 2367                                       Colony (CA) 00-0029255   14979
#> 2368                               University Lab (LA) 00-0033915 3054862
#> 2369                                   Stephenson (GA) 00-0029193   14946
#> 2370                                 Olive Branch (MS) 00-0028037   14140
#> 2371                                        Jenks (OK) 00-0031156   17378
#> 2372                                     Highland (UT) 00-0035094 3115979
#> 2373                                  Hilton Head (SC) 00-0034234 3125114
#> 2374                                    Kirrawee (AUS) 00-0034160 3929851
#> 2375                                      Gaither (FL) 00-0034732 3128843
#> 2376                                      Miramar (FL) 00-0030565   15864
#> 2377                                   South Vigo (IN) 00-0034423 3052450
#> 2378                                   Collegiate (VA) 00-0029263   14881
#> 2379                            Tuscaloosa County (AL) 00-0034432 3126367
#> 2380                                      Norwalk (CA) 00-0034750 3139925
#> 2381                             South Plantation (FL) 00-0032426 3046409
#> 2382                                       Naples (FL) 00-0031045   16777
#> 2383                                The Woodlands (TX) 00-0036054 3915427
#> 2384                                Glynn Academy (GA) 00-0036425 4240631
#> 2385                             Oxbridge Academy (FL) 00-0035594 4037457
#> 2386                                     Parkview (GA) 00-0033594 3919596
#> 2387                            Carrollton Hebron (TX) 00-0033872 3115373
#> 2388                                    Cass Tech (MI) 00-0033931 3045214
#> 2389                                  De La Salle (IL) 00-0034729 3121417
#> 2390                                 Santa Monica (CA) 00-0033744 2971615
#> 2391                                        Allen (TX) 00-0032233 2511825
#> 2392                                    Hermitage (VA) 00-0026166   11260
#> 2393                               Copiah-Lincoln (MS) 00-0035986 4242246
#> 2394                                  Goose Creek (SC) 00-0032420 2577690
#> 2395                                       Coffee (GA) 00-0035504 3128449
#> 2396                                  Wayne Hills (NJ) 00-0025418   10475
#> 2397                                  IMG Academy (FL) 00-0036059 3916587
#> 2398                     St. Thomas of Villanova (CAN) 00-0030089   16121
#> 2399                               Oaks Christian (CA) 00-0036244 4242557
#> 2400                                      Bozeman (MT) 00-0034159 3127292
#> 2401                                Mountain View (OR) 00-0033387 3125404
#> 2402                         Booker T. Washington (OK) 00-0032211 2577327
#> 2403                                   Cedar City (UT) 00-0035597 3933064
#> 2404                                      Lovejoy (TX) 00-0035987 4039000
#> 2405                                 North Marion (FL) 00-0036247 4034950
#> 2406                       King's Ridge Christian (GA) 00-0035022 3917546
#> 2407                                       Elkins (TX) 00-0034710 3051650
#> 2408                                  Crete-Monee (IL) 00-0033992 3049249
#> 2409                                  Gainesville (TX) 00-0033589 4212909
#> 2410                                       Oxford (MS) 00-0035640 4047650
#> 2411                           St. Thomas Aquinas (FL) 00-0032208 2579604
#> 2412                                        Huron (OH) 00-0035164 3126115
#> 2413                                        Lamar (TX) 00-0029664   15705
#> 2414                                      Hanford (WA) 00-0032459 2565338
#> 2415                                      Central (CO) 00-0027282   13802
#> 2416                                     Bushland (TX) 00-0031238   16746
#> 2417                                   Plano East (TX) 00-0032701 2577185
#> 2418                                      Elkhorn (NE) 00-0031047   16743
#> 2419                                       Crespi (CA) 00-0031561 2516984
#> 2420                                       Varina (VA) 00-0034996 3048681
#> 2421                                    Dominguez (CA) 00-0028092   14086
#> 2422                           Christian Brothers (CA) 00-0033783 3122630
#> 2423                                       Dudley (NC) 00-0034096 3115337
#> 2424                                  Stockbridge (GA) 00-0035318 3128743
#> 2425                                        Helix (CA) 00-0030484   15866
#> 2426                          St. Joseph Regional (NJ) 00-0031253   17444
#> 2427                                    Rodriguez (CA) 00-0031334   16726
#> 2428                                 Independence (NC) 00-0034840 3871875
#> 2429                              Pennington Prep (NJ) 00-0031061   16893
#> 2430                                       Sachse (TX) 00-0035808 4040975
#> 2431                                      Grafton (MA) 00-0033900 2974247
#> 2432                                      Quitman (MS) 00-0034263 4039278
#> 2433                    Wilmington Delcastle Tech (DE) 00-0032517 2970694
#> 2434                                     Davidson (AL) 00-0031298   16717
#> 2435                                    Rockhurst (CA) 00-0033912 3052434
#> 2436                               Pleasant Grove (CA) 00-0032164 2971275
#> 2437                                         Rose (NC) 00-0034320 3116726
#> 2438                                      Coppell (TX) 00-0033870 3117258
#> 2439                Presbyterian Boys' Secondary (GHA) 00-0030059   15785
#> 2440                                 Desert Ridge (AZ) 00-0033746 2976114
#> 2441                           St. Thomas Aquinas (FL) 00-0035717 4040605
#> 2442                                     Chandler (AZ) 00-0030555   15800
#> 2443                                Greene County (GA) 00-0032413 2567711
#> 2444                            Lyndon B. Johnson (TX) 00-0030946   17068
#> 2445                             St. Clair County (AL) 00-0031297   16707
#> 2446                                    Lancaster (TX) 00-0033285 3051807
#> 2447                                  Chapel Hill (GA) 00-0035874      NA
#> 2448                                  Goose Creek (SC) 00-0036260 4259491
#> 2449                                 Bishop Dunne (TX) 00-0035802 3919607
#> 2450                                         Wren (SC) 00-0033297 3894915
#> 2451                                      Altoona (PA) 00-0035026 3929641
#> 2452                                   Cloverleaf (OH) 00-0029892   16002
#> 2453                               Lane Technical (IL) 00-0032234 2512477
#> 2454                                      Skyline (UT) 00-0029699   14976
#> 2455                                Valley Center (CA) 00-0033221 2976117
#> 2456                                   John Adams (OH) 00-0033161 2574302
#> 2457                             Central Mountain (PA) 00-0023252    9354
#> 2458                                     Ansbach (DEU) 00-0031961 2576030
#> 2459                                    Los Gatos (CA) 00-0030401   15819
#> 2460                                Mission Hills (CA) 00-0034815 3138826
#> 2461                           Academy at Shawnee (KY) 00-0035804 3908558
#> 2462                                 Palos Verdes (CA) 00-0032809 3043184
#> 2463                                 Hillsborough (FL) 00-0035166 3919117
#> 2464                                 Fayetteville (AR) 00-0034982 3916903
#> 2465                                       Saline (MI) 00-0033199 2979553
#> 2466                                 China Spring (TX) 00-0028374   14426
#> 2467                                 Walsh Jesuit (OH) 00-0032896 2578698
#> 2468                       Lumen Christi College (AUS) 00-0034941 4035685
#> 2469                                 Oakland Tech (CA) 00-0026300   11394
#> 2470                                   Spain Park (AL) 00-0033319 3059989
#> 2471                              Rolling Meadows (IL) 00-0031345   16760
#> 2472                               St. John Bosco (CA) 00-0034343 3886377
#> 2473                        Battle Ground Academy (TN) 00-0033936 2979520
#> 2474                                       Clovis (CA) 00-0035807 4049391
#> 2475                                   Sprayberry (GA) 00-0031376   16782
#> 2476                           Cathedral Catholic (CA) 00-0031190   16838
#> 2477                                      Elkhart (TX) 00-0034115 3122976
#> 2478                             New Smyrna Beach (FL) 00-0031687 2576414
#> 2479                                       Crosby (TX) 00-0035187 3123857
#> 2480                                   Oak Forest (IL) 00-0032058 2979477
#> 2481                                     Longview (TX) 00-0035806 3928925
#> 2482                                 Dr. Phillips (FL) 00-0034730 3043110
#> 2483                                Mountain View (AZ) 00-0035020 3931424
#> 2484                                   Southfield (MI) 00-0033022 3124889
#> 2485                                     Davidson (AL) 00-0032057 2509844
#> 2486                                      Liberty (NV) 00-0033649 3053804
#> 2487                            North Miami Beach (FL) 00-0030538   15831
#> 2488                                     Longview (TX) 00-0027857   13241
#> 2489                                     Timpview (UT) 00-0034945 2970513
#> 2490                                  Centerville (VA) 00-0034989 3915777
#> 2491                         William Penn Charter (PA) 00-0034847 3052885
#> 2492                                 Olive Branch (MS) 00-0033097 2574573
#> 2493                             Plainfield North (IL) 00-0035515 3916465
#> 2494                                    Rosemount (MN) 00-0029144   15082
#> 2495                                  Union Local (OH) 00-0036256 3916075
#> 2496                                  Holy Names (CAN) 00-0034229 4335942
#> 2497                                     Glenwood (IL) 00-0035428 3115359
#> 2498                                     Oakridge (CA) 00-0034073 3120303
#> 2499                                     Hargrave (TX) 00-0035805 3880416
#> 2500                                   New London (CT) 00-0030472   15860
#> 2501                                 Rabun County (GA) 00-0036429 4035020
#> 2502                                       Norman (OK) 00-0033288 3040151
#> 2503                    Evangel Christian Academy (LA) 00-0033292 3040569
#> 2504                                        Beech (TN) 00-0034971 3115328
#> 2505                                   Centennial (AZ) 00-0035035 4039604
#> 2506                       Milwaukie Arts Academy (WI) 00-0033307 3045523
#> 2507                              Madison Academy (AL) 00-0031299   16763
#> 2508                                Inman Chapman (SC) 00-0035719 3126486
#> 2509                                     Blackman (TN) 00-0036259 3886598
#> 2510                                        Curie (IL) 00-0035838 4041703
#> 2511                               Glades Central (FL) 00-0029269   15062
#> 2512                                       Emmaus (PA) 00-0031545 3042435
#> 2513                                   Providence (NC) 00-0034442 3116680
#> 2514                                    Riverview (FL) 00-0034286 3122899
#> 2515                     Santa Margarita Catholic (CA) 00-0034054 3052056
#> 2516                                      McQueen (NV) 00-0036261 4360438
#> 2517                                  Gainesville (FL) 00-0033855 3054970
#> 2518                                    Moon Area (PA) 00-0026950   12726
#> 2519                                  Fort Morgan (CO) 00-0029895   16038
#> 2520                              Chippewa Valley (MI) 00-0035239 3932886
#> 2521                                         Wise (MD) 00-0032772 2574666
#> 2522                                        Plant (FL) 00-0035714 3139613
#> 2523                                        Cocoa (FL) 00-0035699 3873935
#> 2524                                Miami Norland (FL) 00-0034778 3916923
#> 2525                              Charlotte Latin (NC) 00-0031016   16843
#> 2526                    Trinity Christian Academy (FL) 00-0036046 3920823
#> 2527                                      Miramar (FL) 00-0035210 3919107
#> 2528                                 Winton Woods (OH) 00-0035681 3155647
#> 2529                                The Woodlands (TX) 00-0036411 4034790
#> 2530                                     St. Rita (IL) 00-0033595 2980206
#> 2531                                        Lakes (WA) 00-0036050 3886826
#> 2532                                        Grant (OR) 00-0027855   13234
#> 2533                              Deerfield Beach (FL) 00-0027867   13256
#> 2534                                   Costa Mesa (CA) 00-0035000 3933407
#> 2535                                 Southeastern (MI) 00-0030386   16019
#> 2536                                  Gainesville (GA) 00-0033582 3892689
#> 2537                                       Archer (GA) 00-0036180 4038840
#> 2538                                 Blue Springs (MO) 00-0036430 3699530
#> 2539                                      Central (AL) 00-0031957 2575453
#> 2540                             New Smyrna Beach (FL) 00-0035586 3121542
#> 2541                               Faith Lutheran (NV) 00-0036048 3722375
#> 2542                          St. Anne's-Belfield (VA) 00-0034668 3049339
#> 2543                                     Hastings (NY) 00-0032243 3165702
#> 2544                                      Concord (NC) 00-0036105 3920591
#> 2545                                  Simon Gratz (PA) 00-0030504   15901
#> 2546                       Palm Harbor University (FL) 00-0027607   13403
#> 2547                                       Dublin (CA) 00-0034678 3059021
#> 2548                                      Hickory (NC) 00-0026968   12731
#> 2549                                  Hill Murray (MN) 00-0034415 3045259
#> 2550                              Peachtree Ridge (GA) 00-0030382   15856
#> 2551                                       Vanden (CA) 00-0031366   16723
#> 2552                                       Waukee (IA) 00-0035254 3894856
#> 2553                                    Boys Town (NE) 00-0031101   16967
#> 2554                                  Chapel Hill (GA) 00-0036045 4034496
#> 2555                                North Webster (LA) 00-0035707 4035434
#> 2556                                 Northwestern (FL) 00-0029562   14985
#> 2557                                       Jesuit (FL) 00-0026844   13078
#> 2558                                   Marshfield (MA) 00-0033196 3065813
#> 2559                                      Carroll (AL) 00-0026564   12895
#> 2560                                     Milpitas (CA) 00-0034773 3134362
#> 2561                           Northwest Cabarrus (NC) 00-0032065 2977680
#> 2562                                              <NA> 00-0034908 2973605
#> 2563                            Francis W. Parker (CA) 00-0031876 2576240
#> 2564                       Chaminade College Prep (CA) 00-0029857   16140
#> 2565                                     Harrison (MI) 00-0025430   10487
#> 2566                                 Parkway West (MO) 00-0027948   13987
#> 2567                               Junipero Serra (CA) 00-0019596    2330
#> 2568                               McKinney North (TX) 00-0034816 3912550
#> 2569                              Bishop McDevitt (PA) 00-0027029   12514
#> 2570                                   Pearl-Cohn (TN) 00-0036450 3917612
#> 2571                                   Cedar Hill (TX) 00-0035716 3912551
#> 2572                                St. Augustine (LA) 00-0033856 3115364
#> 2573                                   Notre Dame (CA) 00-0030465   15921
#> 2574                             Woodberry Forest (VA) 00-0032393 2980148
#> 2575                            Northern Guilford (NC) 00-0033789 3039723
#> 2576                               Central Valley (PA) 00-0034374 3895798
#> 2577                             Woodward Academy (GA) 00-0032637 2576599
#> 2578                                        Stone (MS) 00-0033898 3895859
#> 2579                                 Owings Mills (MD) 00-0032217 2582147
#> 2580                                      Hanover (VA) 00-0030829   17283
#> 2581                                    Brunswick (CT) 00-0033795 2982323
#> 2582                                 Mount Vernon (IA) 00-0036406 4240589
#> 2583                                     Brainerd (MN) 00-0032419 2573103
#> 2584                              Autauga Academy (AL) 00-0033879 3043080
#> 2585                               Camden Central (TN) 00-0034613 3050481
#> 2586                       Champlain-Lennoxville (CAN) 00-0033421 4081127
#> 2587                           Naperville Central (IL) 00-0031273   17453
#> 2588                               Woodland Hills (PA) 00-0027656   13229
#> 2589                                  Chattanooga (OK) 00-0034735 3951441
#> 2590                                       Dorsey (CA) 00-0033006 2978308
#> 2591                                       Rummel (LA) 00-0033215 4217370
#> 2592                                   Middletown (PA) 00-0033921 3116165
#> 2593                                       Austin (AL) 00-0036107 4368796
#> 2594                                      Norland (FL) 00-0027793   13934
#> 2595                             South Plantation (FL) 00-0034705 4035496
#> 2596                                      Servite (CA) 00-0036047      NA
#> 2597                                        North (MN) 00-0036427 2310331
#> 2598                                         Ball (TX) 00-0031408   16737
#> 2599                                   Barrington (IL) 00-0035298 3914397
#> 2600                                South Fayette (PA) 00-0034386 3118892
#> 2601                                  Bibb County (AL) 00-0029413   15109
#> 2602                                   Notre Dame (CA) 00-0032192 2511330
#> 2603                                      Skyline (TX) 00-0036171 4040537
#> 2604                                 Alief Taylor (TX) 00-0034662 3116105
#> 2605                         East English Village (MI) 00-0033566 3040145
#> 2606                                  Statesville (NC) 00-0033435 3048663
#> 2607                                    Vicksburg (MS) 00-0031218   17435
#> 2608                            Archbishop Rummel (LA) 00-0036416 4035433
#> 2609                       Florida A&M University (FL) 00-0036240 4043605
#> 2610                              Charlton County (GA) 00-0032353 2576895
#> 2611                                    Wakefield (NC) 00-0031597 2588098
#> 2612                                   Notre Dame (TN) 00-0035573 3675805
#> 2613                               Junipero Serra (CA) 00-0033878 3120347
#> 2614                                  Park Center (MN) 00-0035632 4036134
#> 2615                             Fort Bend Dulles (TX) 00-0033415 3054859
#> 2616                           Martin Luther King (GA) 00-0033132 2574056
#> 2617                                 South Pointe (SC) 00-0031364   16734
#> 2618                           St. Thomas Aquinas (FL) 00-0035048 3915285
#> 2619                                     Highland (UT) 00-0031556 3052511
#> 2620                               Noxubee County (MS) 00-0035643 4035369
#> 2621                            West Philadelphia (PA) 00-0036181 4374269
#> 2622                                   Gladewater (TX) 00-0034985 3917316
#> 2623                                 Williamstown (NJ) 00-0034283 3051320
#> 2624                           St. Augustine Prep (NJ) 00-0029627   15090
#> 2625                                    E. Bladen (NC) 00-0036237 4240123
#> 2626                               Junipero Serra (CA) 00-0034657 3134316
#> 2627                                     Buckhorn (AL) 00-0035099 3122154
#> 2628                                      Bedford (OH) 00-0027648   13294
#> 2629                              La Costa Canyon (CA) 00-0030097   15946
#> 2630                                 Stone Bridge (VA) 00-0035649 3120070
#> 2631                                      Cypress (CA) 00-0031575 2516927
#> 2632                                   Campolindo (CA) 00-0028907   15245
#> 2633                                     O'Fallon (IL) 00-0036177 4035098
#> 2634                                 Pace Academy (GA) 00-0036436 4038994
#> 2635                              Madison Central (MS) 00-0024333    9704
#> 2636                                      Brennan (TX) 00-0035521 3125126
#> 2637                                Mission Viejo (CA) 00-0032081 2518789
#> 2638                                 North County (MO) 00-0029869   16324
#> 2639                                  Pine Forest (NC) 00-0034828 3122793
#> 2640                                 Olive Branch (MS) 00-0029794   16299
#> 2641                                     Chamblee (GA) 00-0034622 3043128
#> 2642                              Norwich Academy (CT) 00-0035579 4039521
#> 2643                                       Auburn (AL) 00-0034743 3126349
#> 2644                                       Sabino (AZ) 00-0027980   13997
#> 2645                              Long Beach Poly (CA) 00-0033954 3047559
#> 2646                                 Winton Woods (OH) 00-0035292 3916074
#> 2647                                Paloma Valley (CA) 00-0035118 4422336
#> 2648                                      Kearney (MO) 00-0029134   15355
#> 2649                                        Tracy (CA) 00-0027187   13186
#> 2650                                 Johnson City (NY) 00-0031054   16910
#> 2651                              Sidwell Friends (DC) 00-0035486 3913020
#> 2652                                 Grand Island (NY) 00-0025825   11555
#> 2653                               Dickson County (TN) 00-0034626 3044725
#> 2654                                   Big Spring (TX) 00-0029701   14876
#> 2655                      Toledo Central Catholic (OH) 00-0033899 3129302
#> 2656                              Franklin County (KY) 00-0034438 3042749
#> 2657                             New Smyrna Beach (FL) 00-0036297 4036431
#> 2658                     Santa Margarita Catholic (CA) 00-0033955 3127586
#> 2659                                        Yulee (FL) 00-0032764 3043078
#> 2660                                   Texas City (TX) 00-0033925 3125116
#> 2661                                    Chattooga (GA) 00-0031209   17421
#> 2662                                        Early (TX) 00-0030060   15813
#> 2663                                        Ayala (CA) 00-0034389 3931422
#> 2664                                    Poly Prep (NY) 00-0036445 4259568
#> 2665                                    Chaparral (AZ) 00-0031442   16708
#> 2666                               Lake Highlands (TX) 00-0027768   13428
#> 2667                                     Columbia (GA) 00-0036175 4408915
#> 2668                      Marian Central Catholic (IL) 00-0029419   15054
#> 2669                          Christ Presbyterian (TN) 00-0035007 3122099
#> 2670                         St. Francis Catholic (CA) 00-0032147 2514397
#> 2671                                       Harlem (IL) 00-0036178      NA
#> 2672                                     Kirkwood (MO) 00-0031585 2508256
#> 2673                                       Waukon (IA) 00-0035572 3144991
#> 2674                              Pleasant Valley (CA) 00-0032141 3046704
#> 2675                                    Manalapan (NJ) 00-0033455 3049698
#> 2676                                     Norcross (GA) 00-0035787 3915772
#> 2677                                    West Port (FL) 00-0033858 3054212
#> 2678                             Archbishop Mitty (CA) 00-0036173 3675550
#> 2679                            Warrenville South (IL) 00-0033871 3042778
#> 2680                                     Millwood (OK) 00-0034652 3139456
#> 2681                              Charlottesville (VA) 00-0034034 3049329
#> 2682                                          Lee (AL) 00-0032355 2983209
#> 2683                                   Starkville (MS) 00-0035676 4047646
#> 2684                                Clear Springs (TX) 00-0032980 2971718
#> 2685                                    Lake Mary (FL) 00-0036182 3929785
#> 2686                                       Dorman (SC) 00-0032009 2576491
#> 2687                    Greater Atlanta Christian (GA) 00-0032464 2973405
#> 2688                                Mountain View (OR) 00-0033386 3115443
#> 2689                                   Burnsville (MN) 00-0033529 2976182
#> 2690                       Sacred Heart Cathedral (CA) 00-0036342 4036831
#> 2691                                      Potomac (MD) 00-0032195 2969920
#> 2692                                      Western (FL) 00-0033918 2971586
#> 2693                                       Owasso (OK) 00-0031259   16900
#> 2694                            Stonewall Jackson (VA) 00-0034337 3124086
#> 2695                                   Carol City (FL) 00-0034276 3042496
#> 2696                                    Cathedral (CA) 00-0033405 3058965
#> 2697                               East Feliciana (LA) 00-0034071 3141066
#> 2698                             Royal Palm Beach (FL) 00-0035307 3120508
#> 2699                                 Good Counsel (MD) 00-0033084 3045465
#> 2700                                     Muskogee (OK) 00-0036349 4242154
#> 2701                              Paradise Valley (AZ) 00-0035305 3121034
#> 2702                           Pensacola Catholic (FL) 00-0034465 3125248
#> 2703                                Mount Lebanon (PA) 00-0034334 3116152
#> 2704                                     Hamilton (AZ) 00-0033410 3052883
#> 2705                                       Daphne (AL) 00-0033525 2976495
#> 2706                                    Millbrook (NC) 00-0036351 3686690
#> 2707                                   Stephenson (GA) 00-0035647 3134690
#> 2708                           Cathedral Catholic (CA) 00-0036403 3931408
#> 2709                                       Hebron (TX) 00-0035423 3133368
#> 2710                                    Hillsdale (OH) 00-0034939 3139448
#> 2711                             DeMatha Catholic (MD) 00-0036321 4241986
#> 2712                                Crescent City (FL) 00-0033962 3054950
#> 2713                               Muncie Central (IN) 00-0027954   13973
#> 2714                                 Desert Vista (AZ) 00-0035314 3122692
#> 2715                            Hunterdon Central (NJ) 00-0032781 2976263
#> 2716                                              <NA> 00-0036447 4686421
#> 2717                                Shades Valley (AL) 00-0034333 3925354
#> 2718                            Stonewall Jackson (VA) 00-0034397 3929956
#> 2719                                     Carolina (SC) 00-0033501 3121581
#> 2720                                 Stone Bridge (VA) 00-0033523 3054840
#> 2721                                    Woodstock (IL) 00-0031722 2566837
#> 2722                                    Chaparral (AZ) 00-0032432 2581273
#> 2723                                 Milton-Union (OH) 00-0035263 3128263
#> 2724                                      Denison (IA) 00-0032053 2511708
#> 2725                                     Puyallup (WA) 00-0033151 2978263
#> 2726                                   Clear Lake (TX) 00-0030098   15965
#> 2727                                    McPherson (KS) 00-0034202 3068715
#> 2728                           Palm Beach Central (FL) 00-0030064   15827
#> 2729                                      Lowndes (GA) 00-0033532 2977645
#> 2730                                   Centennial (CA) 00-0032998 2575997
#> 2731                                 Troup County (GA) 00-0033887 3054844
#> 2732                                    Roseville (CA) 00-0035444 4035866
#> 2733                                   McKeesport (PA) 00-0036343 4046525
#> 2734                                     Pearland (TX) 00-0035419 3122441
#> 2735                             New Smyrna Beach (FL) 00-0035286 3116689
#> 2736                                       Hoover (CA) 00-0029409   14978
#> 2737                                Randolph-Clay (GA) 00-0023448    8429
#> 2738                      King Low Heywood Thomas (CT) 00-0031308   16888
#> 2739                                 North Canyon (AZ) 00-0026714   12904
#> 2740                                        Union (OK) 00-0030140   16166
#> 2741                                 Collins Hill (GA) 00-0031800 2565969
#> 2742                              Desert Mountain (AZ) 00-0034577 3115293
#> 2743                                    Del Valle (TX) 00-0036022 3915436
#> 2744                                        Helix (CA) 00-0023436    8416
#> 2745                                      Killian (FL) 00-0029615   14886
#> 2746                                  Wake Forest (NC) 00-0035256 3931398
#> 2747                                      Central (AL) 00-0032602 2572861
#> 2748                                        Allen (TX) 00-0032975 2980077
#> 2749                                       Milton (GA) 00-0032741 3051902
#> 2750                    Eagle's Landing Christian (GA) 00-0036328 4360294
#> 2751                                    Dutchtown (LA) 00-0032262 2979841
#> 2752                                     DeRidder (LA) 00-0031844 2578692
#> 2753                                   Middletown (MD) 00-0034379 3122927
#> 2754                             Trinity Catholic (FL) 00-0034817 3916414
#> 2755                    Madison-Ridgeland Academy (MS) 00-0036334 4242230
#> 2756                                      Grafton (MA) 00-0034456 3049836
#> 2757                              Duncan Fletcher (FL) 00-0033946 3121656
#> 2758                                  Meadowbrook (VA) 00-0031330   16771
#> 2759                                    Edna Karr (LA) 00-0030725   17202
#> 2760                                  Floral Park (NY) 00-0034102 3049959
#> 2761                                John W. North (CA) 00-0034169 3051387
#> 2762                                      Lincoln (RI) 00-0036023 4036189
#> 2763                                   White Hall (AR) 00-0033528 2980073
#> 2764                                   Brookville (VA) 00-0031260   16813
#> 2765                                   Whitehouse (TX) 00-0034409 3052576
#> 2766                           North Myrtle Beach (SC) 00-0033112 2580330
#> 2767                                  Whitewright (TX) 00-0033742 3046705
#> 2768                              Paulding County (GA) 00-0036340 4029893
#> 2769                                 Gadsden City (AL) 00-0034669 4035853
#> 2770                       Indianapolis Cathedral (IN) 00-0035659 3121422
#> 2771                              Ouachita Parish (LA) 00-0034104 3115314
#> 2772                                    La Mirada (CA) 00-0036111 3915821
#> 2773                                      Palmyra (NJ) 00-0035297 4036163
#> 2774                                   Centennial (TN) 00-0035070 3924318
#> 2775                          Batesburg-Leesville (SC) 00-0028411   14269
#> 2776                               Central Valley (PA) 00-0034510 3054845
#> 2777                             Kingswood-Oxford (CT) 00-0036142 4044121
#> 2778                                       Travis (TX) 00-0034928 3917960
#> 2779                                      Freedom (FL) 00-0034207 3053760
#> 2780                                     Alhambra (CA) 00-0032423 2573343
#> 2781                                    Stranahan (FL) 00-0031399   16954
#> 2782                                              <NA> 00-0032692 2976257
#> 2783                                      Servite (CA) 00-0025446   10503
#> 2784                                              <NA> 00-0032324 2565684
#> 2785                                      Lebanon (MO) 00-0031282   16742
#> 2786                                              <NA> 00-0034712 3057534
#> 2787                                              <NA> 00-0035503 3120360
#> 2788                                              <NA> 00-0035372 3126330
#> 2789                                              <NA> 00-0034896 3049048
#> 2790                                              <NA> 00-0035612 4031164
#> 2791                                Seton-LaSalle (PA) 00-0029268   14999
#> 2792                                              <NA> 00-0035481 3163365
#> 2793                                    Maplewood (TN) 00-0030750   17262
#> 2794                                              <NA> 00-0034658 3043224
#> 2795                                        Aynor (SC) 00-0030126   15915
#> 2796                                              <NA> 00-0034269 3052065
#> 2797                                              <NA> 00-0031994 2511557
#> 2798                                              <NA> 00-0035201 3126288
#> 2799                                    Greenwich (CT) 00-0026327   11421
#> 2800                      Montgomery Bell Academy (TN) 00-0031314   16846
#> 2801                                              <NA> 00-0034447 3894905
#> 2802                                     Kingwood (TX) 00-0031284   16752
#> 2803                                              <NA> 00-0034849 3116734
#> 2804                                              <NA> 00-0035545 3116186
#> 2805                                              <NA> 00-0031698 2516310
#> 2806                                              <NA> 00-0034241 3066250
#> 2807                                              <NA> 00-0033256 2979810
#> 2808                                              <NA> 00-0035106 3916742
#> 2809                                              <NA> 00-0035389 3144996
#> 2810                                              <NA> 00-0033279 4081136
#> 2811                                              <NA> 00-0035439 3120593
#> 2812                                    Oceanside (CA) 00-0030486   15978
#> 2813                                              <NA> 00-0034852 3044707
#> 2814                                              <NA> 00-0033682 3049566
#> 2815                                              <NA> 00-0034328 3138835
#> 2816                                              <NA> 00-0032989 2972298
#> 2817                                  Centreville (VA) 00-0031191   16830
#> 2818                                              <NA> 00-0035015 3125783
#> 2819                                              <NA> 00-0034178 3048669
#> 2820                                  Hawaii Prep (HI) 00-0027025   12624
#> 2821                                              <NA> 00-0033586 3045378
#> 2822                                     Palmdale (CA) 00-0028069   14157
#> 2823                                              <NA> 00-0033845 3052502
#> 2824                                   Bloomfield (CT) 00-0030127   15888
#> 2825                                              <NA> 00-0032456 2994680
#> 2826                                              <NA> 00-0032810 2972090
#> 2827                                   Plantation (FL) 00-0029691   14948
#> 2828                                       Dudley (NC) 00-0030420   15820
#> 2829                                              <NA> 00-0033299 3051880
#> 2830                                John Marshall (MN) 00-0027547   13843
#> 2831                           St. Thomas Aquinas (FL) 00-0031383   16747
#> 2832                                              <NA> 00-0034329 3120863
#> 2833                               Dobyns-Bennett (TN) 00-0029529   14998
#> 2834                               St. John Bosco (CA) 00-0030556   15854
#> 2835                                       Dunbar (DC) 00-0027001   12424
#> 2836                                     Marshall (TX) 00-0029050   15350
#> 2837                                              <NA> 00-0035069 4036434
#> 2838                                              <NA> 00-0031563 2978256
#> 2839                                              <NA> 00-0035430 3110509
#> 2840                                    Rockhurst (MO) 00-0032212 2513908
#> 2841                                              <NA> 00-0032511 2973033
#> 2842                                     Campbell (GA) 00-0029696   15713
#> 2843                                              <NA> 00-0033350 4218143
#> 2844                                              <NA> 00-0034123 3052013
#> 2845                                              <NA> 00-0034692 4339831
#> 2846                                     Highland (CA) 00-0029191   15419
#> 2847                                              <NA> 00-0034884 4037345
#> 2848                                              <NA> 00-0033453 3045642
#> 2849                                              <NA> 00-0034821 4327530
#> 2850                                    Northeast (PA) 00-0024183   10913
#> 2851                                              <NA> 00-0032157 2515587
#> 2852                                              <NA> 00-0032014 2976500
#> 2853                                     Crockett (MI) 00-0031594 2515418
#> 2854                                              <NA> 00-0033853 2969856
#> 2855                                              <NA> 00-0026283   11366
#> 2856                                              <NA> 00-0035174 3912029
#> 2857                                    Lancaster (TX) 00-0030275   16144
#> 2858                                              <NA> 00-0033652 3045202
#> 2859                                              <NA> 00-0032631 2577071
#> 2860                                              <NA> 00-0035080 4405778
#> 2861                                              <NA> 00-0035490 3916913
#> 2862                                              <NA> 00-0032552 2971880
#> 2863                                              <NA> 00-0034685 3116159
#> 2864                                        Grant (OR) 00-0031186   16914
#> 2865                                      Hopkins (MN) 00-0031151 2508192
#> 2866                                              <NA> 00-0033826 3057517
#> 2867                                    Fair Park (LA) 00-0029676   14943
#> 2868                                              <NA> 00-0033425      NA
#> 2869                                              <NA> 00-0035056 3155134
#> 2870                                              <NA> 00-0034471 4039221
#> 2871                              Fort Dorchester (SC) 00-0028111   14133
#> 2872                                              <NA> 00-0032710 2981866
#> 2873                                              <NA> 00-0033533 2971036
#> 2874                                              <NA> 00-0032066 2574530
#> 2875                                              <NA> 00-0034095 3921563
#> 2876                                              <NA> 00-0033710 2971986
#> 2877                               Salina Central (KS) 00-0022045    4463
#> 2878                                              <NA> 00-0032856 2573091
#> 2879                                              <NA> 00-0035162 3921688
#> 2880                                              <NA> 00-0033575 2985844
#> 2881                                              <NA> 00-0035088 3929849
#> 2882                                              <NA> 00-0033363 3049271
#> 2883                                  Deer Valley (CA) 00-0028767   14802
#> 2884                                              <NA> 00-0034216 3126096
#> 2885                                              <NA> 00-0032663 2577421
#> 2886                                              <NA> 00-0032687 2582034
#> 2887                                              <NA> 00-0034455 4331771
#> 2888                                              <NA> 00-0032931 3140596
#> 2889                                              <NA> 00-0033587 3040198
#> 2890                                              <NA> 00-0034327 3116618
#> 2891                                              <NA> 00-0033558 3126176
#> 2892                                              <NA> 00-0033362 2972562
#> 2893                                              <NA> 00-0033809 3929030
#> 2894                                              <NA> 00-0033070 3116598
#> 2895                                              <NA> 00-0034086 3115496
#> 2896                                              <NA> 00-0033440 3047486
#> 2897                                     Ooltewah (TN) 00-0030703   17244
#> 2898                                              <NA> 00-0034904 3042880
#> 2899                                              <NA> 00-0035175 4240629
#> 2900                                      Warwick (VA) 00-0030403   15939
#> 2901                                Klein Collins (TX) 00-0031080   16949
#> 2902                               Fayette County (GA) 00-0029416   15057
#> 2903                                              <NA> 00-0035575 3115329
#> 2904                                         Pace (FL) 00-0030523   15872
#> 2905                            James R. Rickards (FL) 00-0025557   10613
#> 2906                                              <NA> 00-0034701 3920576
#> 2907                         St. Vincent-St. Mary (OH) 00-0031944 2576385
#> 2908                                     Stafford (VA) 00-0031414   16805
#> 2909                                              <NA> 00-0034526 3124080
#> 2910                                        Largo (FL) 00-0029087   15398
#> 2911                                              <NA> 00-0032643 2578305
#> 2912                                              <NA> 00-0034105 3040007
#> 2913                                       Colton (CA) 00-0028027   14010
#> 2914                    Jacket Integrated Academy (NC) 00-0031688 2565759
#> 2915                                              <NA> 00-0032485 4010743
#> 2916                                              <NA> 00-0033756 2969716
#> 2917                                      Berkner (TX) 00-0026160   11254
#> 2918                                              <NA> 00-0031878 3053794
#> 2919                                     Westlake (GA) 00-0023441    8421
#> 2920                                 Olive Branch (MS) 00-0031552 2577292
#> 2921                                              <NA> 00-0034425 3052169
#> 2922                             Highland Springs (VA) 00-0029942   16131
#> 2923                                  Vista Ridge (TX) 00-0031276   17450
#> 2924                                       Luling (TX) 00-0032106 2510713
#> 2925                                              <NA> 00-0035047 3118081
#> 2926                                  S.S. Murphy (AL) 00-0026944   12703
#> 2927                                              <NA> 00-0034589 3060794
#> 2928                                              <NA> 00-0034541 3124861
#> 2929                                              <NA> 00-0032290 2512218
#> 2930                                              <NA> 00-0032946 2972273
#> 2931                                              <NA> 00-0033187 4084949
#> 2932                                              <NA> 00-0035446 3915240
#> 2933                                              <NA> 00-0034506 3045123
#> 2934                                              <NA> 00-0032798 2974631
#> 2935                                              <NA> 00-0032390 2979849
#> 2936                                        Serra (CA) 00-0031262   16872
#> 2937                               North Gwinnett (FL) 00-0031232   17416
#> 2938                                              <NA> 00-0035081 4242420
#> 2939                                        Vista (CA) 00-0025405   10462
#> 2940                                 East Webster (MS) 00-0030469   15824
#> 2941                                              <NA> 00-0034481 3126311
#> 2942                                              <NA> 00-0031239   16774
#> 2943                               Lakewood Ranch (FL) 00-0026156   11250
#> 2944                                              <NA> 00-0033482 2977735
#> 2945                                   Wilmington (OH) 00-0031937 3125961
#> 2946                                              <NA> 00-0034637 3046689
#> 2947                                              <NA> 00-0035197 3929033
#> 2948                                St. Augustine (LA) 00-0032136 2972135
#> 2949                                              <NA> 00-0032978 2972550
#> 2950                                              <NA> 00-0034814 3059832
#> 2951                                              <NA> 00-0033671 2971592
#> 2952                                              <NA> 00-0034300 3050887
#> 2953                                              <NA> 00-0034120 3123972
#> 2954                                  Duncanville (TX) 00-0030963   17333
#> 2955                  Jefferson Davis High School (AL) 00-0031829 2969954
#> 2956                                              <NA> 00-0032676 3961462
#> 2957                                       Booker (FL) 00-0027440   13769
#> 2958                                              <NA> 00-0033432 3042884
#> 2959                                              <NA> 00-0032546 2576437
#> 2960                                              <NA> 00-0033333 2980480
#> 2961                                              <NA> 00-0034005 4058338
#> 2962                                Miami Killian (FL) 00-0031020   16930
#> 2963                                              <NA> 00-0034636 3125790
#> 2964                                      Mayfair (CA) 00-0027705   13478
#> 2965                                              <NA> 00-0034871 3127082
#> 2966                                              <NA> 00-0035435 3910120
#> 2967                                              <NA> 00-0035211 3122710
#> 2968                                              <NA> 00-0034299 3122666
#> 2969                   Whale Branch Early College (SC) 00-0034515 3049726
#> 2970                                              <NA> 00-0035554 3134000
#> 2971                                              <NA> 00-0035091 3128785
#> 2972                                              <NA> 00-0035568 4331772
#> 2973                                              <NA> 00-0034093 3128687
#> 2974                                              <NA> 00-0035675 3912549
#> 2975                                              <NA> 00-0034544 3045126
#> 2976                                              <NA> 00-0035564 3119436
#> 2977                                              <NA> 00-0035388 4423369
#> 2978                                       Daniel (SC) 00-0027979   14019
#> 2979                                              <NA> 00-0034718 3052283
#> 2980                                              <NA> 00-0034009 3049426
#> 2981                                              <NA> 00-0034650 3676003
#> 2982                                              <NA> 00-0033176 4043720
#> 2983                                      Huffman (AL) 00-0027941   13992
#> 2984                                              <NA> 00-0032428 2982949
#> 2985                          St. Anne's-Belfield (VA) 00-0026142   11236
#> 2986                                              <NA> 00-0035195 3928743
#> 2987                                              <NA> 00-0034742 3117912
#> 2988                                   Petersburg (VA) 00-0026206   11300
#> 2989                                Dallas County (AL) 00-0027044   12436
#> 2990                                              <NA> 00-0034230 4043157
#> 2991                                       Tustin (CA) 00-0024306    9677
#> 2992                                              <NA> 00-0034865 3049025
#> 2993                                              <NA> 00-0034134 3042381
#> 2994                                              <NA> 00-0034477 3045268
#> 2995                                              <NA> 00-0030864   17184
#> 2996                                 Nashua North (NH) 00-0029256   14953
#> 2997                                      Andrews (NC) 00-0026243   11337
#> 2998                                              <NA> 00-0033075 2976623
#> 2999                                    Palo Duro (TX) 00-0027008   12442
#> 3000                                      Windsor (CT) 00-0031843 2519069
#> 3001                                    Glassboro (NJ) 00-0027495   13812
#> 3002                                              <NA> 00-0034604 3125208
#> 3003                                    Creekview (TX) 00-0031948 2511687
#> 3004                               Simeon Academy (IL) 00-0031081   16959
#> 3005                                        Wayne (OH) 00-0029257   14967
#> 3006                                              <NA> 00-0034089 3053800
#> 3007                                              <NA> 00-0031982 2514374
#> 3008                                              <NA> 00-0033693 3115911
#> 3009                                              <NA> 00-0035113 3917834
#> 3010                                  Clintondale (MI) 00-0031607 2516417
#> 3011                                              <NA> 00-0033272 2977620
#> 3012                                         Taft (OH) 00-0030457   15829
#> 3013                                     Hardaway (GA) 00-0031371   16712
#> 3014                                   Hutchinson (KS) 00-0031940 2514217
#> 3015                                   New Madrid (MO) 00-0031336   16773
#> 3016                                              <NA> 00-0033493 2971499
#> 3017                                              <NA> 00-0034290 3054854
#> 3018                                              <NA> 00-0034851 3063943
#> 3019                                              <NA> 00-0034886 3049337
#> 3020                                Southern Nash (NC) 00-0021140    3530
#> 3021                                              <NA> 00-0033614 3122879
#> 3022                                              <NA> 00-0033248 3053000
#> 3023                                              <NA> 00-0032883 2578754
#> 3024                                       Kahuku (HI) 00-0032056 2509488
#> 3025                                   Palo Verde (NV) 00-0035023 4239787
#> 3026                                              <NA> 00-0032859 2978355
#> 3027                                              <NA> 00-0035391 3127379
#> 3028                                    Hightower (TX) 00-0029111   15278
#> 3029                                              <NA> 00-0034012      NA
#> 3030                                              <NA> 00-0032800 2567970
#> 3031                                              <NA> 00-0033358 2972118
#> 3032                                              <NA> 00-0032344 2578530
#> 3033                                              <NA> 00-0034916 3049326
#> 3034                                Kimball Union (NH) 00-0031255   17141
#> 3035                                              <NA> 00-0033584 3052175
#> 3036                            Northern Guilford (NC) 00-0031208   17430
#> 3037                                              <NA> 00-0034906 3043274
#> 3038                              South Oak Cliff (TX) 00-0029112   15356
#> 3039                                      Dematha (MD) 00-0023368   12417
#> 3040                                              <NA> 00-0033726 3049895
#> 3041                                        Blake (FL) 00-0029053   15319
#> 3042                                              <NA> 00-0034166 3041114
#> 3043                                              <NA> 00-0034519 3057530
#> 3044                                              <NA> 00-0035511 3123681
#> 3045                                   Notre Dame (CA) 00-0030251   16431
#> 3046                                              <NA> 00-0034538 3042873
#> 3047                                              <NA> 00-0035476 3915769
#> 3048                                              <NA> 00-0035204 3042883
#> 3049                                              <NA> 00-0033673 3045152
#> 3050                                              <NA> 00-0033651 2986781
#> 3051                                              <NA> 00-0034879 3924375
#> 3052                                              <NA> 00-0035493 3914384
#> 3053                                              <NA> 00-0034030 2973627
#> 3054                                              <NA> 00-0032719 2573947
#> 3055                                              <NA> 00-0034482 3139339
#> 3056                                 Alief Taylor (TX) 00-0026618   12762
#> 3057                                              <NA> 00-0035565 3129292
#> 3058                                        Nyack (NY) 00-0031317   16860
#> 3059                                 Jacksonville (AR) 00-0026964   12692
#> 3060                                              <NA> 00-0033270 3057998
#> 3061                                       Linden (NJ) 00-0027968   13985
#> 3062                                              <NA> 00-0033254 3050096
#> 3063                                              <NA> 00-0035071 3916590
#> 3064                                              <NA> 00-0032730 2970397
#> 3065                                              <NA> 00-0033113 2576678
#> 3066                                              <NA> 00-0035046 3122439
#> 3067                                              <NA> 00-0034157 3042693
#> 3068                                        Eaton (CO) 00-0027573   13860
#> 3069                                              <NA> 00-0035191 4051591
#> 3070                                Wichita Falls (TX) 00-0030553   16037
#> 3071                                              <NA> 00-0034702 3119152
#> 3072                                              <NA> 00-0034547 3045532
#> 3073                                              <NA> 00-0033574 2974324
#> 3074                                              <NA> 00-0034308 3957496
#> 3075                           Strake Jesuit Prep (TX) 00-0030121   15905
#> 3076                                              <NA> 00-0034770 3123045
#> 3077                                Louisa County (VA) 00-0030776   17296
#> 3078                                      Gonzaga (DC) 00-0029310   15064
#> 3079                                              <NA> 00-0034045 4255255
#> 3080                                              <NA> 00-0035221 3049043
#> 3081                                              <NA> 00-0034617 3163390
#> 3082                                              <NA> 00-0033438 2981846
#> 3083                                    Splendora (TX) 00-0025489   10546
#> 3084                                              <NA> 00-0034451 3939134
#> 3085                                              <NA> 00-0035063 4411188
#> 3086                                              <NA> 00-0034620 3116632
#> 3087                                              <NA> 00-0035362 3121643
#> 3088                                              <NA> 00-0034453 3123079
#> 3089                                              <NA> 00-0034143      NA
#> 3090                                              <NA> 00-0035496 4263210
#> 3091                                              <NA> 00-0034630 3053061
#> 3092                                              <NA> 00-0035421 3124087
#> 3093                                              <NA> 00-0033351 3894927
#> 3094                                     Flushing (NY) 00-0031403   16776
#> 3095 Eastdale Collegiate and Vocational Institute (ON) 00-0030132   16568
#> 3096                                              <NA> 00-0034866 3115307
#> 3097                                   Moss Point (MS) 00-0024030   16695
#> 3098                                              <NA> 00-0033711 2970137
#> 3099                                              <NA> 00-0033661 3042744
#> 3100                                              <NA> 00-0034638 4035707
#> 3101                                              <NA> 00-0034605 3053054
#> 3102                                  North Shore (TX) 00-0027684   13288
#> 3103                                       Foster (TX) 00-0031676 2575583
#> 3104                                              <NA> 00-0035682 3127341
#> 3105                                 Copper Hills (UT) 00-0028256   14441
#> 3106                                              <NA> 00-0032750 3121601
#> 3107                             Miami Carol City (FL) 00-0026502   12443
#> 3108                                     Highland (UT) 00-0024227    9598
#> 3109                                              <NA> 00-0034321 3057976
#> 3110                                  Centerville (OH) 00-0032154 2576371
#> 3111                                              <NA> 00-0030871   17253
#> 3112                                  Weatherford (TX) 00-0029894   15937
#> 3113                                              <NA> 00-0033626 2970111
#> 3114                               Roanoke Rapids (NC) 00-0033934 3039721
#> 3115                                              <NA> 00-0032034 3051674
#> 3116                                       Ruston (LA) 00-0024348    9720
#> 3117                                 Valley Forge (OH) 00-0030697   17214
#> 3118                                              <NA> 00-0031225   17428
#> 3119                                              <NA> 00-0034018 3052751
#> 3120                                              <NA> 00-0030106   15955
#> 3121                                              <NA> 00-0035618 3125300
#> 3122                                              <NA> 00-0031914 2579622
#> 3123                                              <NA> 00-0034082 3052510
#> 3124                                     Westgate (LA) 00-0029208   15460
#> 3125                                              <NA> 00-0034880 3040172
#> 3126                                              <NA> 00-0034228 3118188
#> 3127                                     Franklin (CA) 00-0030986   17285
#> 3128                                              <NA> 00-0033771 2971436
#> 3129                                              <NA> 00-0035178 3131528
#> 3130                                              <NA> 00-0034454 3128455
#> 3131                                        Vigor (AL) 00-0032116 2980071
#> 3132                                              <NA> 00-0034873 3929841
#> 3133                                              <NA> 00-0035110 3115929
#> 3134                                              <NA> 00-0031832 3042645
#> 3135                                              <NA> 00-0034583 3040516
#> 3136                              Gonzaga College (DC) 00-0029972   16398
#> 3137                                              <NA> 00-0034564 4038466
#> 3138                                   Bloomfield (NJ) 00-0031618 2515893
#> 3139                                              <NA> 00-0032529 2581513
#> 3140                                              <NA> 00-0032981 2978281
#> 3141                                     Escambia (FL) 00-0026330   11424
#> 3142                                    Charlotte (FL) 00-0032169 3043238
#> 3143                                              <NA> 00-0033037 2976317
#> 3144                                              <NA> 00-0034122 3042747
#> 3145                                              <NA> 00-0034138 3125884
#> 3146                                     Washburn (MN) 00-0031281   16744
#> 3147                                    Star City (AR) 00-0028424   14310
#> 3148                                              <NA> 00-0033513 2469470
#> 3149                                              <NA> 00-0034246 3918012
#> 3150                                     Woodland (GA) 00-0031848 3908873
#> 3151                                    Pensacola (FL) 00-0028003   14014
#> 3152                                       Wilson (WA) 00-0032061 2578408
#> 3153                                              <NA> 00-0035429 4240239
#> 3154                                     Muskogee (OK) 00-0031006    5273
#> 3155                                 Yazoo County (MS) 00-0032031 2516320
#> 3156                                   Centennial (CA) 00-0031048   16738
#> 3157                                   Enterprise (AL) 00-0029940   16127
#> 3158                                    Southeast (OK) 00-0027856   13240
#> 3159                                              <NA> 00-0034568 3116072
#> 3160                                              <NA> 00-0035501 3122924
#> 3161                                              <NA> 00-0035348 3115478
#> 3162                                              <NA> 00-0033086 2572846
#> 3163                                              <NA> 00-0033374 2978244
#> 3164                                              <NA> 00-0033719 2981212
#> 3165                                              <NA> 00-0032375 2576236
#> 3166                                              <NA> 00-0032499 2977698
#> 3167                                              <NA> 00-0033736 2513199
#> 3168                                              <NA> 00-0034237 3045222
#> 3169                                   UMS-Wright (AL) 00-0031085   16875
#> 3170                                              <NA> 00-0033967 3045472
#> 3171                                        Vigor (AL) 00-0032130 2515931
#> 3172                                         Troy (CA) 00-0029068   15351
#> 3173                                              <NA> 00-0027925   13940
#> 3174                                              <NA> 00-0034946 3136308
#> 3175                                              <NA> 00-0032745 2586700
#> 3176                                              <NA> 00-0034314 3045201
#> 3177                                       Oxford (MI) 00-0029931   16366
#> 3178                                      Hickory (NC) 00-0029729   15765
#> 3179                                       Dayton (TX) 00-0031612 2577467
#> 3180                                              <NA> 00-0034225 3116375
#> 3181                                 Reynoldsburg (OH) 00-0030741   17223
#> 3182                                Lake Brantley (FL) 00-0028581   14332
#> 3183                                              <NA> 00-0034119 3042434
#> 3184                        Tuscaloosa (AL) Northridge 00-0032068 2516316
#> 3185                                              <NA> 00-0034148 3117250
#> 3186                                              <NA> 00-0034149 3075100
#> 3187                                              <NA> 00-0032852 2578390
#> 3188                                   Port Allen (LA) 00-0031087   17467
#> 3189                             Christian County (KY) 00-0029422   15001
#> 3190                                              <NA> 00-0033389 2969018
#> 3191                                              <NA> 00-0033692 3049640
#> 3192                                       Loyola (CA) 00-0028031   14016
#> 3193                                              <NA> 00-0035522 3912991
#> 3194                                              <NA> 00-0031754 2577110
#> 3195                                              <NA> 00-0034078 4039283
#> 3196                                              <NA> 00-0033977 3051737
#> 3197                                              <NA> 00-0033675 3045206
#> 3198                                    Creekside (GA) 00-0035555 3917203
#> 3199                                              <NA> 00-0031978 2516019
#> 3200                                              <NA> 00-0032922 3053027
#> 3201                                              <NA> 00-0031070   16850
#> 3202                                  Amanda Elzy (MS) 00-0031512 2574557
#> 3203                                   O. Perry Walker 00-0027736   13404
#> 3204                                              <NA> 00-0034467 3128706
#> 3205                                              <NA> 00-0032749 2570484
#> 3206                                   Bridgeport (TX) 00-0028128   14117
#> 3207                                              <NA> 00-0033520 2977613
#> 3208                                              <NA> 00-0035561 3115379
#> 3209                                      Griffin (GA) 00-0032050 2578554
#> 3210                                    Northmont (OH) 00-0027835   13340
#> 3211                                Liberty-Eylau (TX) 00-0031059   16904
#> 3212                                      Carroll (NY) 00-0025555   10611
#> 3213                            West Orange-Stark (TX) 00-0027866   13251
#> 3214                            Bishop Hendricken (RI) 00-0024330    9701
#> 3215           Passaic County Technical Institute (NJ) 00-0022247    5893
#> 3216                                              <NA> 00-0035379 3930075
#> 3217                                              <NA> 00-0034252 2980441
#> 3218                                              <NA> 00-0035470 3915291
#> 3219                                          Lee (AL) 00-0027256   13645
#> 3220                                   Sprayberry (GA) 00-0030020   16419
#> 3221                                              <NA> 00-0033076 2971550
#> 3222                                              <NA> 00-0033274 3892785
#> 3223                               Woodland Hills (PA) 00-0030170   16206
#> 3224                                              <NA> 00-0033316 3050534
#> 3225                                              <NA> 00-0034098 3124020
#> 3226                                              <NA> 00-0029958   16450
#> 3227                                      Denbigh (VA) 00-0024421    9793
#> 3228                                   Timberview (TX) 00-0030317   16054
#> 3229                                   Washington (VA) 00-0027124   12644
#> 3230                                   North Pike (MS) 00-0027081   12716
#> 3231                                              <NA> 00-0034217 3043146
#> 3232                                  Sandy Creek (GA) 00-0031657 2510547
#> 3233                                    Alta Loma (CA) 00-0025424   10481
#> 3234                                              <NA> 00-0035508 3128688
#> 3235                                     Palm Bay (FL) 00-0025408   10465
#> 3236                                    Highlands (KY) 00-0027023   12619
#> 3237                                              <NA> 00-0033233 2971542
#> 3238                                              <NA> 00-0033486 3046342
#> 3239                                              <NA> 00-0034695 3049935
#> 3240                                   Washington (GA) 00-0027762   13395
#> 3241                                              <NA> 00-0035098 3915373
#> 3242                                              <NA> 00-0035453 3123658
#> 3243                                              <NA> 00-0034408 3122800
#> 3244                              David W. Butler (NC) 00-0029575   15079
#> 3245                                              <NA> 00-0034556 3139926
#> 3246                                              <NA> 00-0035072 4076949
#> 3247                                              <NA> 00-0034324 3125916
#> 3248                                     Beaufort (SC) 00-0028445   14297
#> 3249                                              <NA> 00-0030908   17317
#> 3250                                              <NA> 00-0033470 3043217
#> 3251                                              <NA> 00-0034443 3051706
#> 3252                                              <NA> 00-0034734 3050953
#> 3253                                              <NA> 00-0035151 4422420
#> 3254                                              <NA> 00-0035543 4243241
#> 3255                             Lincoln Way East (IL) 00-0029139   14995
#> 3256                                              <NA> 00-0034124 3908989
#> 3257                                       Dorman (SC) 00-0031305   16739
#> 3258                                              <NA> 00-0033310   17727
#> 3259                                              <NA> 00-0033391 2977770
#> 3260                                              <NA> 00-0035225 3115391
#> 3261                                              <NA> 00-0033502 3047195
#> 3262                                Dawson County (MT) 00-0028177   14070
#> 3263                                              <NA> 00-0035335 3124111
#> 3264                                              <NA> 00-0033663 2613168
#> 3265                                              <NA> 00-0032714 2971279
#> 3266                                              <NA> 00-0032827 4002060
#> 3267                                     Mariposa (CA) 00-0032247 2517252
#> 3268                                      Berkner (TX) 00-0029666   14961
#> 3269                                              <NA> 00-0033287 2976113
#> 3270                                              <NA> 00-0033301 2980036
#> 3271                                 Southern Lab (LA) 00-0029010   15276
#> 3272                                              <NA> 00-0034581 3122851
#> 3273                                              <NA> 00-0030833   17102
#> 3274                                              <NA> 00-0033618 2977653
#> 3275                                  King George (VA) 00-0025512   10568
#> 3276                                       Ripley (TN) 00-0026561   12883
#> 3277                                              <NA> 00-0033688 3115302
#> 3278                                              <NA> 00-0035563 3116094
#> 3279                                    Hillcrest (UT) 00-0027658   13261
#> 3280                                              <NA> 00-0035065 3128346
#> 3281                                              <NA> 00-0033253 2969004
#> 3282                                              <NA> 00-0030579   15871
#> 3283                                              <NA> 00-0034645 3049589
#> 3284                                              <NA> 00-0033383 2991684
#> 3285                                              <NA> 00-0032638 2986639
#> 3286                                   Greenville (TX) 00-0028738   14753
#> 3287                                              <NA> 00-0033959 2971635
#> 3288                                              <NA> 00-0034582 3057991
#> 3289                                      Salinas (CA) 00-0026784   12972
#> 3290                                Chattahoochee (GA) 00-0028039   14178
#> 3291                              Merrill F. West (CA) 00-0029254   14981
#> 3292                                              <NA> 00-0033667 3052094
#> 3293                                              <NA> 00-0033483 3120361
#> 3294                              Edward H. White (FL) 00-0031766 2582406
#> 3295                                              <NA> 00-0034448 3052023
#> 3296                                     Stamford (CT) 00-0027667   13273
#> 3297                                              <NA> 00-0035729 4239773
#> 3298                                Central Islip (NY) 00-0029661   15098
#> 3299                                      Hoggard (NC) 00-0030590   15787
#> 3300                                              <NA> 00-0035075 3059734
#> 3301                                              <NA> 00-0033942 3045153
#> 3302                                              <NA> 00-0035424 3120365
#> 3303                                              <NA> 00-0034947 3125897
#> 3304                           San Lorenzo Valley (CA) 00-0027027   12614
#> 3305                                   Sweet Home (OR) 00-0026500   12728
#> 3306                                   Bear Creek (CO) 00-0030923   17040
#> 3307                                              <NA> 00-0033005 3046434
#> 3308                                              <NA> 00-0032930 2577172
#> 3309                          St. Anne's-Belfield (VA) 00-0030441   15801
#> 3310                               Fleming Island (FL) 00-0032067 2516067
#> 3311                                              <NA> 00-0030755   17210
#> 3312                                              <NA> 00-0035333 3124550
#> 3313                                              <NA> 00-0033039 2574570
#> 3314                                              <NA> 00-0032976 2577042
#> 3315                                              <NA> 00-0031180   16859
#> 3316                                Seneca Valley (PA) 00-0028110   14208
#> 3317                                              <NA> 00-0035746 3910591
#> 3318                                              <NA> 00-0033465 2575978
#> 3319                                              <NA> 00-0034231 3046696
#> 3320                                Miami Central (FL) 00-0031182   16835
#> 3321                                              <NA> 00-0035487 3127365
#> 3322                                        Mason (OH) 00-0029992   16403
#> 3323                                              <NA> 00-0033377 3122894
#> 3324                                              <NA> 00-0032879 2577115
#> 3325                                              <NA> 00-0034644 3052887
#> 3326                                              <NA> 00-0032962 2582006
#> 3327                                    Olentangy (OH) 00-0030937   17013
#> 3328                                              <NA> 00-0034254 3056493
#> 3329                                              <NA> 00-0032503 2576355
#> 3330                                              <NA> 00-0034459 3054041
#> 3331                                       Apopka (FL) 00-0035724 3915102
#> 3332                              Madison Central (KY) 00-0030065   15870
#> 3333                                              <NA> 00-0031647 2512571
#> 3334                                              <NA> 00-0034585 3046392
#> 3335                                              <NA> 00-0033565 4081809
#> 3336                                              <NA> 00-0034546 3042907
#> 3337                                              <NA> 00-0033323 2573414
#> 3338                                              <NA> 00-0034691 3069758
#> 3339                                              <NA> 00-0035093 3121419
#> 3340                                              <NA> 00-0035502 3116735
#> 3341                                              <NA> 00-0033277 2977624
#> 3342                             DeMatha Catholic (MD) 00-0031942 2515944
#> 3343                             Beckman Catholic (IA) 00-0030149   16235
#> 3344                                              <NA> 00-0032874 2578713
#> 3345                                              <NA> 00-0032297 2470264
#> 3346                                Glendale (Ontario) 00-0029076   15347
#> 3347                                              <NA> 00-0035066 3126065
#> 3348                                              <NA> 00-0034627 3040102
#> 3349                                 Brother Rice (MI) 00-0027078   12680
#> 3350                                              <NA> 00-0035571 3929863
#> 3351                                              <NA> 00-0035690 4036407
#> 3352                                      Anamosa (IA) 00-0025473   10530
#> 3353                                              <NA> 00-0034155 3052516
#> 3354                                              <NA> 00-0034868 3892890
#> 3355                                              <NA> 00-0032646 3915883
#> 3356                                     Boardman (OH) 00-0026205   11299
#> 3357                                              <NA> 00-0034108 3051321
#> 3358                                  Rhea County (TN) 00-0030652   17095
#> 3359                           Pensacola Catholic (FL) 00-0026275   11382
#> 3360                                   Farrington (HI) 00-0027694   13283
#> 3361                                Seneca Valley (PA) 00-0029187   15409
#> 3362                                              <NA> 00-0034026 2979845
#> 3363                                 South Panola (MS) 00-0027678   13278
#> 3364                                              <NA> 00-0030017   16412
#> 3365                                              <NA> 00-0033996 3116592
#> 3366                                              <NA> 00-0034475 4294246
#> 3367                                              <NA> 00-0034579 3045217
#> 3368                                              <NA> 00-0030629   16686
#> 3369                                      Oberlin (OH) 00-0030071   15869
#> 3370                            King College Prep (IL) 00-0029524   14990
#> 3371                                              <NA> 00-0034260 2973599
#> 3372                                              <NA> 00-0033346 2978250
#> 3373                                              <NA> 00-0034212 3052709
#> 3374                                              <NA> 00-0035411      NA
#> 3375                                      Lovejoy (GA) 00-0027750   13451
#> 3376                                              <NA> 00-0035016 3914595
#> 3377                                              <NA> 00-0032979 3056472
#> 3378                                              <NA> 00-0034525 3045469
#> 3379                                              <NA> 00-0033368 2970256
#> 3380                                              <NA> 00-0034566 3045249
#> 3381                                              <NA> 00-0034905 3047235
#> 3382                                              <NA> 00-0034769 3128747
#> 3383                                              <NA> 00-0033678 2980586
#> 3384                                              <NA> 00-0034181 3046694
#> 3385                                              <NA> 00-0034190 3051458
#> 3386                                              <NA> 00-0031696 2974300
#> 3387                                              <NA> 00-0034537 3051412
#> 3388                                              <NA> 00-0034191 4334406
#> 3389                                              <NA> 00-0035198 4262186
#> 3390                                              <NA> 00-0033738 2980070
#> 3391                                              <NA> 00-0033337 3057972
#> 3392                                              <NA> 00-0034288 3052144
#> 3393                                              <NA> 00-0035458 3127302
#> 3394                                              <NA> 00-0033447 3042403
#> 3395                                              <NA> 00-0031058   16926
#> 3396                                              <NA> 00-0035158 4259349
#> 3397                                              <NA> 00-0033185 2323439
#> 3398                                              <NA> 00-0034534 3045180
#> 3399                                              <NA> 00-0033140 2986701
#> 3400                                              <NA> 00-0035497 4040893
#> 3401                                              <NA> 00-0033424 2979532
#> 3402                                              <NA> 00-0035115 3862861
#> 3403                                              <NA> 00-0034595 3129306
#> 3404                                              <NA> 00-0035326 4035474
#> 3405                                              <NA> 00-0033938 3042733
#> 3406                                              <NA> 00-0034711 3116737
#> 3407                                              <NA> 00-0031290   16924
#> 3408                                              <NA> 00-0035373 3122794
#> 3409                                              <NA> 00-0033849 3045149
#> 3410                                              <NA> 00-0034303 3128853
#> 3411                                              <NA> 00-0035052 3700080
#> 3412                                              <NA> 00-0033700 3051368
#> 3413                                              <NA> 00-0034923 4250485
#> 3414                                              <NA> 00-0032452 2585785
#> 3415                                              <NA> 00-0034872 3116052
#> 3416                                              <NA> 00-0035349 3115923
#> 3417                                              <NA> 00-0034931 3133361
#> 3418                                              <NA> 00-0034599 2974249
#> 3419                                              <NA> 00-0034232 4037632
#> 3420                                              <NA> 00-0032406 2971051
#> 3421                                              <NA> 00-0032422 2577354
#> 3422                                              <NA> 00-0034422 3052161
#> 3423                                              <NA> 00-0033494 3040065
#> 3424                                    Seabreeze (FL) 00-0019646    2148
#> 3425                                              <NA> 00-0032584 2971728
#> 3426                               Lake Highlands (TX) 00-0004091    1440
#> 3427                                         Alta Loma 00-0031112   17130
#> 3428                                              <NA> 00-0034147 3059104
#> 3429                                              <NA> 00-0035171 3128692
#> 3430                                St. Augustine (FL) 00-0030390   15918
#> 3431                                              <NA> 00-0032616 2582419
#> 3432                                      Central (SD) 00-0016919    1097
#> 3433                      Christ Church Episcopal (SC) 00-0030896   16976
#> 3434                                      Hoggard (NC) 00-0026138   11737
#> 3435                                  Bridge City (TX) 00-0020578    4333
#> 3436                                    Albemarle (VA) 00-0023096    9329
#> 3437                                    Conestoga (PA) 00-0028620   14262
#> 3438                                   Clearwater (FL) 00-0031018   16897
#> 3439                                    Brookwood (GA) 00-0031815 2577602
#> 3440                                      Bozeman (MT) 00-0030770   16983
#> 3441                                     Havelock (NC) 00-0027978   14026
#> 3442                                   John Ehret (LA) 00-0031354   16852
#> 3443                                      Seaside (CA) 00-0028022   14023
#> 3444                                    Stevenson (MI) 00-0027442   13779
#> 3445                                    La Grange (GA) 00-0025828   11609
#> 3446                                              <NA> 00-0034580 3121376
#> 3447                                    Jefferson (FL) 00-0031943 2578565
#> 3448                                 Terry Parker (FL) 00-0030119   15954
#> 3449                           State College Area (PA) 00-0029629   15040
#> 3450                                      Central (OH) 00-0031491 2265764
#> 3451                                              <NA> 00-0035354 3120075
#> 3452                              Hollywood Hills (FL) 00-0031729 2579598
#> 3453                               Cherokee Trail (CO) 00-0030160   16268
#> 3454                               King's Academy (FL) 00-0029479   15640
#> 3455                                              <NA> 00-0034518 3056831
#> 3456                                Champlin Park (MN) 00-0026672   12988
#> 3457                                       Dublin (GA) 00-0026307   11401
#> 3458                                   Wilde Lake (MD) 00-0029566   14973
#> 3459                                 Shadow Ridge (NV) 00-0029289   15112
#> 3460                                Coconut Creek (FL) 00-0028454   14387
#> 3461                                    Northwest (OH) 00-0031171   16762
#> 3462                              University City (MO) 00-0030517   16025
#> 3463                                              <NA> 00-0035741 3915778
#> 3464                           St. Mary's College (CA) 00-0023259    9424
#> 3465                                      Chatham (NY) 00-0031847 2576461
#> 3466                            Loyola Blakefield (MD) 00-0030033   16457
#> 3467                                   Churchland (VA) 00-0027777   13422
#> 3468                               Lowndes County (GA) 00-0031309   16891
#> 3469                                     Kathleen (FL) 00-0027560   13851
#> 3470                                       Curtis (NY) 00-0031425   16721
#> 3471                                       Hylton (VA) 00-0024495   10138
#> 3472                                    Silverado (NV) 00-0028698   14739
#> 3473                                              <NA> 00-0035744 3915393
#> 3474                                     Inderkum (CA) 00-0031084   16849
#> 3475                               Canon-McMillan (PA) 00-0031719 2515545
#> 3476                                 Bishop Miege (MO) 00-0032221 2577371
#> 3477                             Coatesville Area (PA) 00-0027868   13248
#> 3478                            Cimarron-Memorial (NV) 00-0029620   15002
#> 3479                                       Simeon (IL) 00-0030104   15930
#> 3480                                  Aiken South (SC) 00-0027812   13482
#> 3481                                      Bayside (NY) 00-0027245   13766
#> 3482                                              <NA> 00-0034480 2987188
#> 3483                                              <NA> 00-0034554 3056719
#> 3484                                      Skyline (TX) 00-0031350   16902
#> 3485                                    Varina HS (VA) 00-0029600   14952
#> 3486                                     Crenshaw (CA) 00-0032171 2510601
#> 3487                              Maynard Jackson (GA) 00-0031564 2576646
#> 3488                                   Centennial (CA) 00-0028912   15246
#> 3489                 University of Detroit Jesuit (MI) 00-0027022   12449
#> 3490                                   Clearfield (UT) 00-0031728 2517389
#> 3491                                 St. Ignatius (OH) 00-0031578 2515337
#> 3492                                         Waco (TX) 00-0023449    8430
#> 3493                                       Eureka (MO) 00-0031393   16937
#> 3494                                     Hamilton (AZ) 00-0022161    4468
#> 3495                            North Little Rock (AR) 00-0031945 3046428
#> 3496                                      Simmons (MS) 00-0031929 2516283
#> 3497                            Long Beach Jordan (CA) 00-0031915 2578388
#> 3498                                    Mackenzie (MI) 00-0029408   14929
#> 3499                                              <NA> 00-0034850 3045361
#> 3500                                              <NA> 00-0035440 3123941
#> 3501                                   Stephenson (GA) 00-0028006   13995
#> 3502                                       Agoura (CA) 00-0027002   12438
#> 3503                                              <NA> 00-0035014 3917286
#> 3504                                    Paulsboro (NJ) 00-0030385   15977
#> 3505                                   Hutchinson (KS) 00-0032201 2577219
#> 3506                                  Palm Desert (CA) 00-0031950 3001171
#> 3507                                  Gainesville (FL) 00-0031866 2577718
#> 3508                                              <NA> 00-0034312 3049262
#> 3509                                              <NA> 00-0035461 3917548
#> 3510                                      Carroll (TX) 00-0031902 2514468
#> 3511                                        Ayala (CA) 00-0031614 2468550
#> 3512                                        Lamar (TX) 00-0026989   12439
#> 3513                                              <NA> 00-0035627 3910330
#> 3514                                  Ocean Lakes (VA) 00-0032060 2979652
#> 3515                                   St. Mark's (TX) 00-0028041   14152
#> 3516                            Fort Walton Beach (FL) 00-0032114 2576635
#> 3517                                 Millard West (NE) 00-0031814 3085243
#> 3518                                   Verbum Dei (CA) 00-0027977   14015
#> 3519                                   Plantation (FL) 00-0031365   16727
#> 3520                          Philipsburg-Osceola (PA) 00-0023177    9276
#> 3521                          Downers Grove South (IL) 00-0034067 2980138
#> 3522                                              <NA> 00-0035205 3144792
#> 3523                                        Elder (OH) 00-0027247   13777
#> 3524                     Phillips Andover Academy (MA) 00-0025503   10560
#> 3525                                     Ensworth (TN) 00-0029879   16361
#> 3526                                              <NA> 00-0034233 3122680
#> 3527                                              <NA> 00-0032338 2516051
#> 3528                                              <NA> 00-0034727 3052422
#> 3529                                              <NA> 00-0035054 3039982
#> 3530                               Bishop Manogue (NV) 00-0035337 3914817
#> 3531                                              <NA> 00-0033115 2976115
#> 3532                                              <NA> 00-0032396 2974333
#> 3533                                              <NA> 00-0035459 3128354
#> 3534                                    Glen Oaks (LA) 00-0031620 2568060
#> 3535                                              <NA> 00-0034338 3126350
#> 3536                                              <NA> 00-0027959   13968
#> 3537                                              <NA> 00-0035128 3115258
#> 3538                                              <NA> 00-0034517 3125323
#> 3539                                              <NA> 00-0034194 3121563
#> 3540                                              <NA> 00-0035622 3932392
#> 3541                                              <NA> 00-0035053 3912362
#> 3542                                              <NA> 00-0035451 3126348
#> 3543                                              <NA> 00-0034696 4339830
#> 3544                                              <NA> 00-0035027 4408860
#> 3545                                              <NA> 00-0034665 3048672
#> 3546                                              <NA> 00-0033325 3059973
#> 3547                                              <NA> 00-0033971 3052515
#> 3548                                              <NA> 00-0035452 4243164
#> 3549                                              <NA> 00-0034520 3914155
#> 3550                                              <NA> 00-0034195 3042743
#> 3551                                              <NA> 00-0035096 3119315
#> 3552                                              <NA> 00-0035566 3122684
#> 3553                                              <NA> 00-0033998 3042478
#> 3554                                              <NA> 00-0033369 3915787
#> 3555                                              <NA> 00-0034497 3048705
#> 3556                                     Crenshaw (CA) 00-0025472   10529
#> 3557                                              <NA> 00-0034552 3128698
#> 3558                                North Clayton (GA) 00-0027236   13608
#> 3559                                              <NA> 00-0034209 3057975
#> 3560                                              <NA> 00-0035509 3918417
#> 3561                                    Red River (LA) 00-0030507   15850
#> 3562                                              <NA> 00-0034434 3917847
#> 3563                                      Grayson (GA) 00-0032761 3051886
#> 3564                                              <NA> 00-0033961 2584628
#> 3565                                              <NA> 00-0034444 3116695
#> 3566                                              <NA> 00-0033191 4081021
#> 3567                               Francis Howell (MO) 00-0035218 3921970
#> 3568                                              <NA> 00-0034719 3124544
#> 3569                                              <NA> 00-0032470 2982803
#> 3570                                              <NA> 00-0033841 2980639
#> 3571                                              <NA> 00-0032929 2471470
#> 3572                                              <NA> 00-0035469 4411196
#> 3573                                              <NA> 00-0034403 3128801
#> 3574                                              <NA> 00-0035111 4390082
#> 3575                                              <NA> 00-0035434 3124030
#> 3576                                              <NA> 00-0032751 2971032
#> 3577                                              <NA> 00-0034689 3056487
#> 3578                                              <NA> 00-0032729 3051940
#> 3579                                              <NA> 00-0033776 2971022
#> 3580                                              <NA> 00-0035122 4266934
#> 3581                                              <NA> 00-0035324 3116693
#> 3582                                              <NA> 00-0033450 3042370
#> 3583                                              <NA> 00-0034643 3050925
#> 3584                                              <NA> 00-0032491 2978064
#> 3585                                              <NA> 00-0034474 3914861
#> 3586                                              <NA> 00-0033606 3045851
#> 3587                                              <NA> 00-0031509 2515422
#> 3588                                              <NA> 00-0033794 2971565
#> 3589                                              <NA> 00-0032994 2576378
#> 3590                                              <NA> 00-0034724 3116620
#> 3591                    Trinity Christian Academy (FL) 00-0034107 3916928
#> 3592                                              <NA> 00-0035482 3121408
#> 3593                                              <NA> 00-0035392 3139626
#> 3594                                              <NA> 00-0034738 3047923
#> 3595                                              <NA> 00-0033477 2972232
#> 3596                                              <NA> 00-0034484 3118964
#> 3597                                              <NA> 00-0033423 2971373
#> 3598                                              <NA> 00-0034341 3045376
#> 3599                                              <NA> 00-0033226 2978065
#> 3600                                              <NA> 00-0033974 2576666
#> 3601                                              <NA> 00-0033234 3042361
#> 3602                                              <NA> 00-0035107 3120573
#> 3603                                              <NA> 00-0035177 3128396
#> 3604                                              <NA> 00-0032708 2978411
#> 3605                                              <NA> 00-0033657 3049574
#> 3606                                              <NA> 00-0035550 3912679
#> 3607                                              <NA> 00-0034117 3115352
#> 3608                                              <NA> 00-0035445 3128308
#> 3609                                              <NA> 00-0035506 3126363
#> 3610                                              <NA> 00-0035381 3117242
#> 3611                                              <NA> 00-0034210 3045261
#> 3612                                              <NA> 00-0034898 3124103
#> 3613                                              <NA> 00-0035747 3126478
#> 3614                                              <NA> 00-0035123 3116162
#> 3615                                              <NA> 00-0032670 2577919
#> 3616                                              <NA> 00-0035608 3917329
#> 3617                                              <NA> 00-0034460 3052451
#> 3618                                              <NA> 00-0035426 3921958
#> 3619                                              <NA> 00-0035116 4290803
#> 3620                                              <NA> 00-0031707 2515838
#> 3621                                              <NA> 00-0032799 2577203
#> 3622                                              <NA> 00-0034713 3125898
#> 3623                                              <NA> 00-0034548 3040024
#> 3624                                              <NA> 00-0035049 4251200
#> 3625                                              <NA> 00-0034776 4036493
#> 3626                                              <NA> 00-0033686 2971636
#> 3627                                              <NA> 00-0034305 3129304
#> 3628                                              <NA> 00-0034238 3045243
#> 3629                                              <NA> 00-0035581 3060799
#> 3630                                              <NA> 00-0034282 3052184
#> 3631                                              <NA> 00-0035673 3115384
#> 3632                                              <NA> 00-0030396   16573
#> 3633                                              <NA> 00-0032796 3929954
#> 3634                                              <NA> 00-0034458 3126120
#> 3635                                              <NA> 00-0032425 2567868
#> 3636                                              <NA> 00-0033741 3042536
#> 3637                                              <NA> 00-0035338 3922125
#> 3638                                              <NA> 00-0032622 2576703
#> 3639                                              <NA> 00-0031946 2520845
#> 3640                                              <NA> 00-0031616 2514799
#> 3641                                        Elida (OH) 00-0034793 3052996
#> 3642                                              <NA> 00-0033399 2975680
#> 3643                                              <NA> 00-0035626 3121578
#> 3644                                     Westlake (MD) 00-0033956 3039776
#> 3645                                              <NA> 00-0035271 4034945
#> 3646                                              <NA> 00-0034539 2976524
#> 3647                                              <NA> 00-0034069 3051712
#> 3648                                              <NA> 00-0032851 2577651
#> 3649                                              <NA> 00-0034008 2976179
#> 3650                                              <NA> 00-0032484 2574163
#> 3651                                              <NA> 00-0032905 2574558
#> 3652                                              <NA> 00-0033521 3042773
#> 3653                                              <NA> 00-0033188 2470344
#> 3654                                              <NA> 00-0031931 2517002
#> 3655                                              <NA> 00-0032674 2576660
#> 3656                                              <NA> 00-0034236 3125119
#> 3657                                              <NA> 00-0034242 3122932
#> 3658                                              <NA> 00-0034558 3039921
#> 3659                                              <NA> 00-0033922 2972820
#> 3660                                              <NA> 00-0034188 3053777
#> 3661                                              <NA> 00-0034530 3062371
#> 3662                                              <NA> 00-0033827 3916585
#> 3663                                              <NA> 00-0035152 3137842
#> 3664                                              <NA> 00-0032909 2976546
#> 3665                                              <NA> 00-0034690 3040542
#> 3666                                              <NA> 00-0034513 3928934
#> 3667                                              <NA> 00-0035364 4034773
#> 3668                                              <NA> 00-0034543 3052021
#> 3669                                              <NA> 00-0034550 3039942
#> 3670                                              <NA> 00-0031113   17390
#> 3671                                              <NA> 00-0032666 2574396
#> 3672                                              <NA> 00-0033583 2971388
#> 3673                                              <NA> 00-0034492 3059941
#> 3674                                              <NA> 00-0035736 4421448
#> 3675                                              <NA> 00-0033972 2981069
#> 3676                                              <NA> 00-0034610 3051330
#> 3677                                              <NA> 00-0034470 3844004
#> 3678                                              <NA> 00-0032867 2576443
#> 3679                                              <NA> 00-0031764 2516314
#> 3680                                              <NA> 00-0034656 3050401
#> 3681                                              <NA> 00-0031879 2514802
#> 3682                                              <NA> 00-0032885 2575636
#> 3683                                              <NA> 00-0034182 3119531
#> 3684                                              <NA> 00-0032921 2576365
#> 3685                                              <NA> 00-0035180 3116133
#> 3686                                              <NA> 00-0035582 3055604
#> 3687                                              <NA> 00-0030096   15927
#> 3688                                              <NA> 00-0033229 2974240
#> 3689                                              <NA> 00-0032155 2512704
#> 3690                                              <NA> 00-0035517 3117248
#> 3691                                              <NA> 00-0034187 3140151
#> 3692                                              <NA> 00-0034938 3128699
#> 3693                                              <NA> 00-0035477 3122934
#> 3694                                              <NA> 00-0034076 3048635
#> 3695                                              <NA> 00-0035041 3139092
#> 3696                                              <NA> 00-0033965 2970255
#> 3697                                              <NA> 00-0035578 3128311
#> 3698                                              <NA> 00-0033345 3046702
#> 3699                                              <NA> 00-0033500 2969125
#> 3700                                              <NA> 00-0034722 4037476
#> 3701                                              <NA> 00-0034924 3115977
#> 3702                                              <NA> 00-0033426 2972575
#> 3703                                              <NA> 00-0034820 3116702
#> 3704                                              <NA> 00-0034693 3919077
#> 3705                                              <NA> 00-0031646 2514505
#> 3706                                              <NA> 00-0035001 3915238
#> 3707                                 San Clemente (CA) 00-0032433 2978275
#> 3708                                        Green (OH) 00-0034250 3042468
#> 3709                                              <NA> 00-0034002 2978519
#> 3710                                              <NA> 00-0035420 4329476
#> 3711                                              <NA> 00-0035425 3924355
#> 3712                                              <NA> 00-0034940 3938130
#> 3713                                              <NA> 00-0033804 2978207
#> 3714                                              <NA> 00-0035203 3138756
#> 3715                                              <NA> 00-0034542 3046323
#> 3716                                              <NA> 00-0035055 4251009
#> 3717                                              <NA> 00-0035134 4036833
#> 3718                                              <NA> 00-0035132 3116658
#> 3719                                              <NA> 00-0032680 2974612
#> 3720                                              <NA> 00-0034259 3046693
#> 3721                                              <NA> 00-0033636 2981862
#> 3722                                              <NA> 00-0034508 3056440
#> 3723                                              <NA> 00-0032397 2573312
#> 3724                                              <NA> 00-0032723 3123982
#> 3725                                              <NA> 00-0035105 3121518
#> 3726                                              <NA> 00-0033273 2987317
#> 3727                                              <NA> 00-0031626 2576480
#> 3728                                              <NA> 00-0035611 3120858
#> 3729                                              <NA> 00-0033189 2471491
#> 3730                                              <NA> 00-0034651 3051938
#> 3731                                 East Bernard (TX) 00-0019714    2273
#> 3732                                              <NA> 00-0034576 3051820
#> 3733                                              <NA> 00-0033218 3046441
#> 3734                                      Liberty (CA) 00-0030551   16623
#> 3735                                              <NA> 00-0033364 2980123
#> 3736                                  Catholic HS (LA) 00-0022684    5749
#> 3737                                   Carrollton (GA) 00-0035433 3129309
#> 3738                  Sheldon-Williams Collegiate (SK) 00-0023742   10238
#> 3739                                              <NA> 00-0031420   17495
#> 3740                                              <NA> 00-0033201 2996095
#> 3741                                      Rutland (GA) 00-0029123   15389
#> 3742                           North Myrtle Beach (SC) 00-0029493   15616
#> 3743                                     Frontier (CA) 00-0031716 2516357
#> 3744                                      Jupiter (FL) 00-0028130   14073
#> 3745                                              <NA> 00-0034064 3050015
#> 3746                                              <NA> 00-0034950 3133168
#> 3747                               Mountain Ridge (AZ) 00-0030405   15926
#> 3748                                              <NA> 00-0035077 3128814
#> 3749                                              <NA> 00-0033098 2976299
#> 3750                                              <NA> 00-0034897 2979695
#> 3751                              West Lauderdale (MS) 00-0028957   15187
#> 3752                                     Flathead (MT) 00-0029682   14879
#> 3753                                   Midlothian (TX) 00-0031568 2466005
#> 3754                                      Artesia (NM) 00-0030524   15904
#> 3755                                              <NA> 00-0034531 3139591
#> 3756                                              <NA> 00-0034737 4290778
#> 3757                                              <NA> 00-0034574 3040134
#> 3758                            Putnam City North (OK) 00-0027854   13197
#> 3759                                              <NA> 00-0034126 3040507
#> 3760                                              <NA> 00-0034697 3059773
#> 3761                                West Scranton (PA) 00-0030419   16593
#> 3762                                              <NA> 00-0035471 3087801
#> 3763                                              <NA> 00-0033108 2977881
#> 3764                                              <NA> 00-0034416 3041097
#> 3765                                              <NA> 00-0033766 2979985
#> 3766                                   Burlington (WI) 00-0021678    5209
#> 3767                                              <NA> 00-0032462 2575910
#> 3768                                              <NA> 00-0034478 3050022
#> 3769                                              <NA> 00-0031064   16943
#> 3770                                    Scappoose (OR) 00-0023645    8627
#> 3771                               Isidore Newman (LA) 00-0022803    5526
#> 3772                                              <NA> 00-0034608 3046412
#> 3773                                              <NA> 00-0032953 3057986
#> 3774                                              <NA> 00-0034412 3052061
#> 3775                                              <NA> 00-0035723 3139487
#> 3776                                              <NA> 00-0034074 3118374
#> 3777                                              <NA> 00-0032893 2576261
#> 3778                                              <NA> 00-0034291 3931782
#> 3779                                              <NA> 00-0034144 3053315
#> 3780                                              <NA> 00-0033104 2577243
#> 3781                                Mission Viego (CA) 00-0026898   12482
#> 3782                                      Bayside (VA) 00-0030526   15803
#> 3783                              Edmond Santa Fe (OK) 00-0029677   14878
#> 3784                                              <NA> 00-0029151   15407
#> 3785                                              <NA> 00-0034219 3048030
#> 3786                              Santa Margarita (CA) 00-0021429    4459
#> 3787                                              <NA> 00-0032630 3078660
#> 3788                                              <NA> 00-0035483 4040826
#> 3789                                    Stratford (TX) 00-0029668   14874
#> 3790                                              <NA> 00-0033585 3123048
#> 3791                                   Chatsworth (CA) 00-0023662    8644
#> 3792                                              <NA> 00-0032658 2575214
#> 3793                                              <NA> 00-0035037 3115966
#> 3794                                     Heritage (WA) 00-0032148 2575660
#> 3795                             Miami Southridge (FL) 00-0031277   17452
#> 3796                                              <NA> 00-0032593 2577692
#> 3797                                              <NA> 00-0035512 3886636
#> 3798                                              <NA> 00-0033304 3918026
#> 3799                                              <NA> 00-0032048 2512191
#> 3800                                              <NA> 00-0035013 3122799
#> 3801                                        Eagan (MN) 00-0031665 2521161
#> 3802                                       Hunter (UT) 00-0028198   14360
#> 3803                               Flint Northern (MI) 00-0031897 2576237
#> 3804                                              <NA> 00-0034315 3929855
#> 3805                                              <NA> 00-0034870 3124608
#> 3806                                              <NA> 00-0032747 2971435
#> 3807                                              <NA> 00-0034890 3139485
#> 3808                                              <NA> 00-0035725 4421390
#> 3809                                              <NA> 00-0032740 2576280
#> 3810                                Bishop Gorman (NV) 00-0028009   14005
#> 3811                                              <NA> 00-0034509 3052662
#> 3812                                     Westbury (TX) 00-0031390   16749
#> 3813                                     Pearland (TX) 00-0029731   15755
#> 3814                                      Liberty (OH) 00-0031332   17465
#> 3815                                     Berkeley (SC) 00-0030287   15893
#> 3816                                              <NA> 00-0035396 3124022
#> 3817                                              <NA> 00-0033762 2974712
#> 3818                                     Memorial (TX) 00-0026213   11307
#> 3819                                              <NA> 00-0034596 3051762
#> 3820                                              <NA> 00-0034935 4422215
#> 3821                                              <NA> 00-0032371 2575408
#> 3822                                Miami Central (FL) 00-0029205   15457
#> 3823                                              <NA> 00-0034961 3843406
#> 3824                                              <NA> 00-0034200 4057659
#> 3825                                      Dekaney (TX) 00-0031531 2972282
#> 3826                                   Springhill (LA) 00-0030668   17284
#> 3827                                              <NA> 00-0032377 2576165
#> 3828                               Frisco Liberty (TX) 00-0031590 2573300
#> 3829                                              <NA> 00-0034137 4039226
#> 3830                                              <NA> 00-0032540 2972283
#> 3831                            Oakland Technical (CA) 00-0025399   10456
#> 3832                                              <NA> 00-0034427 3048924
#> 3833                        Goodpasture Christian (TN) 00-0029795   16055
#> 3834                                      Lincoln (FL) 00-0031577 2577253
#> 3835                     George Washington Carver (GA) 00-0030656   17133
#> 3836                                              <NA> 00-0034007 3049987
#> 3837                                              <NA> 00-0035569 3916451
#> 3838                                       Bruton (VA) 00-0031066   16950
#> 3839                                              <NA> 00-0033515 3128267
#> 3840                                              <NA> 00-0034900 4328969
#> 3841                                              <NA> 00-0035583 3126072
#> 3842                                      Slidell (LA) 00-0026184   11278
#> 3843                                              <NA> 00-0034221 3121583
#> 3844                                       Bethel (VA) 00-0029854   16040
#> 3845                                     Longview (TX) 00-0027531   13587
#> 3846                                              <NA> 00-0032902 2575553
#> 3847                                              <NA> 00-0034893 4034782
#> 3848                                    Irvington (CA) 00-0029273   14894
#> 3849                                              <NA> 00-0034666 3124979
#> 3850                                              <NA> 00-0035658 3914267
#> 3851                                              <NA> 00-0035691 4426310
#> 3852                                 Redemptorist (LA) 00-0031301   16803
#> 3853                                              <NA> 00-0033760 3043216
#> 3854                                              <NA> 00-0033596 3051711
#> 3855                                      Tarboro (NC) 00-0028202   14518
#> 3856                                              <NA> 00-0034156 4047769
#> 3857                                              <NA> 00-0033384 3040143
#> 3858                                              <NA> 00-0032672 2570994
#> 3859                                   Timberline (WA) 00-0026153   11247
#> 3860                                              <NA> 00-0031793 2581598
#> 3861                                              <NA> 00-0033561 3047519
#> 3862                                              <NA> 00-0033035 2580343
#> 3863                                      Olympia (FL) 00-0026164   11258
#> 3864                                       Valley (NV) 00-0030117   16024
#> 3865                                   Harrisburg (PA) 00-0031599 3043097
#> 3866                                              <NA> 00-0034786 3041102
#> 3867                                           Ellison 00-0032133 2576303
#> 3868                                              <NA> 00-0031158   17396
#> 3869                                  Franklinton (LA) 00-0031768 2577283
#> 3870                                              <NA> 00-0034624 3052163
#> 3871                                              <NA> 00-0033508 3054030
#> 3872                                 Olathe North (KS) 00-0023564    8544
#> 3873                                              <NA> 00-0032611 2974212
#> 3874                                              <NA> 00-0034632 3126113
#> 3875                             Plainfield North (IL) 00-0031102   16969
#> 3876                                    Episcopal (VA) 00-0026289   11383
#> 3877                                  Lake Gibson (FL) 00-0028064   14129
#> 3878                                   John Glenn (MI) 00-0031569 2515416
#> 3879                                 Northwestern (MD) 00-0031375   16783
#> 3880                                      Opelika (AL) 00-0031731 2515934
#> 3881                                              <NA> 00-0034201 3928461
#> 3882                                              <NA> 00-0035176 3135736
#> 3883                                              <NA> 00-0034099 3140525
#> 3884                                     Valencia (CA) 00-0027994   14017
#> 3885                                    Hahnville (LA) 00-0031075   16921
#> 3886                                              <NA> 00-0030711   16994
#> 3887                                      Armwood (FL) 00-0031939 2980105
#> 3888                                              <NA> 00-0034670 3040146
#> 3889                                              <NA> 00-0033613 2970017
#> 3890                                              <NA> 00-0034708 3127374
#> 3891                                       DeLand (FL) 00-0030433   15952
#> 3892                                              <NA> 00-0035454 3929927
#> 3893                                              <NA> 00-0034358 3843750
#> 3894                                   Sweetwater (TX) 00-0029048   15296
#> 3895                                              <NA> 00-0032964 2971289
#> 3896                                              <NA> 00-0034565 3117131
#> 3897                                              <NA> 00-0035209 3917814
#> 3898                                     La Habra (CA) 00-0029683   14895
#> 3899                                              <NA> 00-0033413 3045199
#> 3900                                              <NA> 00-0032472 2577245
#> 3901                                              <NA> 00-0032804 2576873
#> 3902                                              <NA> 00-0035086 3122842
#> 3903                             West Bakersfield (CA) 00-0027864   13204
#> 3904                                       Taylor (FL) 00-0027325   13213
#> 3905                                              <NA> 00-0035043 3895788
#> 3906                                              <NA> 00-0032298 2574474
#> 3907                                       Newton (GA) 00-0031743 2576408
#> 3908                           Lamar Consolidated (TX) 00-0028083   14193
#> 3909                                              <NA> 00-0033630 3047969
#> 3910                                              <NA> 00-0033286 3912576
#> 3911                                              <NA> 00-0033581 2968226
#> 3912                                              <NA> 00-0035299 3705353
#> 3913                                              <NA> 00-0035606 3919544
#> 3914                                   West Brook (TX) 00-0030432   15855
#> 3915                                              <NA> 00-0033975 3116690
#> 3916                                              <NA> 00-0034883 3052624
#> 3917                                              <NA> 00-0033268 2970183
#> 3918                            Trinity Episcopal (MS) 00-0028011   14028
#> 3919                                              <NA> 00-0034618      NA
#> 3920                                              <NA> 00-0033683 3930272
#> 3921                                              <NA> 00-0035212 3124074
#> 3922                                              <NA> 00-0035494 3119996
#> 3923                                     Marshall (TX) 00-0030280   15832
#> 3924                                              <NA> 00-0034876 4339834
#> 3925                                              <NA> 00-0035489 3060919
#> 3926                                       Desoto (TX) 00-0031959 2514123
#> 3927                                              <NA> 00-0034535 3123212
#> 3928                                              <NA> 00-0033348 3040644
#> 3929                                              <NA> 00-0034621 3116563
#> 3930                                 Union County (FL) 00-0027861   13203
#> 3931                                 North Platte (NE) 00-0026019   11788
#> 3932                                    Oak Grove (AR) 00-0026144   11238
#> 3933                                              <NA> 00-0034205 3129453
#> 3934                                              <NA> 00-0034679 3917846
#> 3935                                    Dutchtown (LA) 00-0030485   15848
#> 3936                                              <NA> 00-0034240 4294229
#> 3937                                              <NA> 00-0032411 2971888
#> 3938                                              <NA> 00-0034294 3042728
#> 3939                                   St. Mary's (CA) 00-0029613   14885
#> 3940                                              <NA> 00-0034136 3122761
#> 3941                                              <NA> 00-0035441 4243243
#> 3942                                              <NA> 00-0035456 3117846
#> 3943                                              <NA> 00-0034615 3128696
#> 3944                                              <NA> 00-0034224 3122442
#> 3945                                     Deep Run (VA) 00-0031267   16833
#> 3946                                              <NA> 00-0035214 3127378
#> 3947                                      Banning (CA) 00-0032069 2517248
#> 3948                                              <NA> 00-0033001 2980380
#> 3949                                     Eastlake (CA) 00-0030294   16195
#> 3950                                 Dr. Phillips (FL) 00-0031333   16735
#> 3951                                              <NA> 00-0031678 2572986
#> 3952                                              <NA> 00-0033313 2979584
#> 3953                                              <NA> 00-0034875 4339173
#> 3954                                    Dominguez (CA) 00-0028441   14274
#> 3955                                              <NA> 00-0035017 3918008
#> 3956                                    Shoemaker (TX) 00-0031755 2511832
#> 3957                                      Jackson (FL) 00-0031680 2574553
#> 3958                                     Hardaway (GA) 00-0029107   15305
#> 3959                                              <NA> 00-0032767 3043215
#> 3960                                              <NA> 00-0034671 3121433
#> 3961                                              <NA> 00-0035060 3117414
#> 3962                                              <NA> 00-0033970 3894908
#> 3963                                   Penn Hills (PA) 00-0027416   13338
#> 3964                                              <NA> 00-0034476 3123667
#> 3965                            North Miami Beach (FL) 00-0030427   16008
#> 3966                                              <NA> 00-0032479 2976308
#> 3967                                      Horlick (WI) 00-0027378   13697
#> 3968                                              <NA> 00-0035193 3921654
#> 3969                                              <NA> 00-0034926 3127305
#> 3970                                              <NA> 00-0032620 2577076
#> 3971                      Horizon Science Academy (OH) 00-0031989 3894939
#> 3972                                              <NA> 00-0033602 2973956
#> 3973                                              <NA> 00-0032776 2986767
#> 3974                                         Elko (SC) 00-0027195   13544
#> 3975                           Harding University (IL) 00-0031307   16819
#> 3976                                              <NA> 00-0032322 2470860
#> 3977                                              <NA> 00-0034841 3115472
#> 3978                                              <NA> 00-0033527 3134683
#> 3979                                              <NA> 00-0033774 2971519
#> 3980                                              <NA> 00-0034964 3931774
#> 3981                                              <NA> 00-0034600 3116423
#> 3982                                    Dutchtown (LA) 00-0030548   15809
#> 3983                                    Cathedral (CA) 00-0035576 3122173
#> 3984                                      Hubbard (OH) 00-0031919 2515405
#> 3985                                              <NA> 00-0035224 3916064
#> 3986                                  Ocean Lakes (VA) 00-0030412   15992
#> 3987                                North Clayton (GA) 00-0027676   13264
#> 3988                                 White Castle (LA) 00-0031895 2577293
#> 3989                                              <NA> 00-0033731 3957450
#> 3990                                              <NA> 00-0033339 2979535
#> 3991                                              <NA> 00-0034569 3052080
#> 3992                                              <NA> 00-0033232 3043147
#> 3993                                              <NA> 00-0031738 2574756
#> 3994                                              <NA> 00-0034063 2512591
#> 3995                                              <NA> 00-0033861 3056913
#> 3996                                              <NA> 00-0035398 3929926
#> 3997                                      Kennedy (CA) 00-0029520   15612
#> 3998                                              <NA> 00-0034919 2161946
#> 3999                                        Maury (VA) 00-0027733   13336
#>      yahoo_id rotowire_id pff_id     pfr_id
#> 1       31067       12795  45547   ColeMa02
#> 2       32011       13678  46618   GailLa00
#> 3       31865       13560  44027   MurpBy00
#> 4       24806        7509   6171   AmukPr00
#> 5       33089       14793  50465   WhitJa05
#> 6       29924       11101  11302   PeteKe01
#> 7        7773        4768   2969   JoseJo20
#> 8       26683        8645   7841   AlfoRo00
#> 9       24792        7300   6157   PetePa00
#> 10      25727        8163   7023   KirkDr00
#> 11      33287       14692     NA       <NA>
#> 12      32095       14032  30126       <NA>
#> 13      32623       14330  49116   ThomJa04
#> 14      29781       11341  11137   WashCh01
#> 15      26621        9101   8419   BanjCh00
#> 16      31970       13499  28307   MillSh00
#> 17      32081       13709  48850   DogbMi00
#> 18      26828        8964   7987   McGeSt01
#> 19      27815        9412   9003   MaurJo00
#> 20      28539       10461   9584   ParrDa00
#> 21      28488       10453   9533   BlacAn00
#> 22      32784       14712  44614   FotuLe00
#> 23      31897       13742  49605   AlleZa01
#> 24      28440       10311   9485   PhilJo01
#> 25      32061       13573  36493       <NA>
#> 26      29720       11204  11142   BricKe00
#> 27      25935        8364   7209   SweeJ.00
#> 28      32432       13845  46676   CalhSh01
#> 29      30249       11796  11891   HarlSe00
#> 30      26642        8733   7800   PughJu00
#> 31      32546       13963     NA       <NA>
#> 32      28521       10279   9566   GarcMa00
#> 33       7223        4441     NA nugenmik01
#> 34      30337       11831     NA   GonzZa00
#> 35      27369        9054     NA   MaheBr01
#> 36      31299       13210  66928   GardDe01
#> 37      27702        9377   8809   KennDe00
#> 38      28419       10355   9464   AnthSt00
#> 39      31324       13222  49167   TurnZe00
#> 40      31151       12823  48553   FittKy00
#> 41      28472       10452   9517   HickJo00
#> 42      30126       11937  11768   ReddHa00
#> 43      30308       11982  11950   VallTa00
#> 44      28446       10329   9491   GoldMa00
#> 45      30848       11987  49282   CartJa02
#> 46      29349       10935  10749   CampDe00
#> 47      25731        8140   7027   JoneCh03
#> 48      33086       15102  26885       <NA>
#> 49      30722       12445  12171   IrviIs00
#> 50      29885       11179  11181   SmitTe04
#> 51      32872       14752     NA       <NA>
#> 52      32678       14525  42451   SimmIs00
#> 53      25976        8543   7301   BrewAa00
#> 54      24058        6682   5607   PeteCo00
#> 55      32801       14717  44515   LawrRa01
#> 56       7872        5853   3068   PekoDo20
#> 57       6947        4044   1906   LeexAn20
#> 58      31833       13613  38334   MurrKy00
#> 59      32662       14587  46440   StreCh00
#> 60      28535        9706   9580   HundBr00
#> 61      29307       11002  10707   DrakKe00
#> 62      31104       12667  45851   EdmoCh00
#> 63      30355       12089  11996       <NA>
#> 64      32892       14372     NA       <NA>
#> 65      29872       11004  11214   FostD.01
#> 66      33088       15106  25859   WardJo00
#> 67      28508       10420   9553   ShawJo00
#> 68      31971       13586  25444   ThomDe06
#> 69      30149       11986  11791   BakeBu00
#> 70      32742       14584  26634   JoneJo07
#> 71      25958        8243   7229   BeacKe00
#> 72      32080       13681  29038   MileJo00
#> 73      29625       11424  11022   MurrJu00
#> 74      24850        7552   6215   GilbMa00
#> 75      28412       10259   9457   HumpD.00
#> 76      30523       11890  12122   DaniDa02
#> 77      32250       14132  47147       <NA>
#> 78      29372       11221  10772   DevaSe00
#> 79      32339       14102     NA       <NA>
#> 80      28443       10128   9488   WillMa04
#> 81      30891       12276  51842   ArnoDa00
#> 82      30487       11860  12014   HogaKr00
#> 83      32006       13628  39587   JohnKe07
#> 84      30637       12106  12251   WhitIs00
#> 85      27074        9046   8128   BrowJa03
#> 86      31894       13612  47448   IsabAn00
#> 87      26650        8619   7808   HopkDe00
#> 88      32159       14043  47896       <NA>
#> 89      33087       15111     NA       <NA>
#> 90      31607       13297  29622   GaffRi00
#> 91       6762        3730   1724   FitzLa00
#> 92      31017       12508  47546   KirkCh01
#> 93      31320       13061  48021   SherTr00
#> 94       9285        6054   4944   MackAl20
#> 95      32290       14148  46989       <NA>
#> 96      27948       10096   9234   McCrJu00
#> 97      33042       14993  83192   AbraDe00
#> 98      27552        9619   8659   DennDa00
#> 99      29653       11316  11050   NeasSh00
#> 100     32686       14526  55586   TerrAJ00
#> 101     31028       12581  50393   OlivIs00
#> 102     33058       14999  43958   HallTy01
#> 103     31943       13618  34105   ShefKe00
#> 104     27675        9609   8782   AlleRi00
#> 105     26693        8646   7851   WrehBl00
#> 106     32917       14836     NA       <NA>
#> 107     32804       14697  51423   HawkJa00
#> 108     29251       11143  10651   NealKe01
#> 109     26770        8974   7929   MeanSt00
#> 110     28391       10349   9436   FowlDa00
#> 111     31352       13087  50141   TuioJa00
#> 112     24873        7450   6238   BailAl00
#> 113     31060       12754  48815   SenaDe00
#> 114     32077       13707  48713       <NA>
#> 115     28525       10458   9570   JarrGr00
#> 116     31967       13798  88313   ComiJo00
#> 117     28542       10325   9587   DaviTy01
#> 118     32717       14540  48741   DaviMa01
#> 119     28141        9990   9302   SmitKe03
#> 120     24812        7550   6177   CarpJa00
#> 121     29355       10904  10755   BeavWi00
#> 122     32748       14408  41141   HennMa00
#> 123     31846       13808  46692   LindCh00
#> 124     30426       12292     NA   KooxYo00
#> 125     31831       13943     NA   FryxEl01
#> 126     26975        9068   8500   ReynLa00
#> 127     32789       14754  57834   WalkMy00
#> 128     29285       11080  10686   JoneDe01
#> 129     30315       11943  11957   TaumPi00
#> 130     30135       11918  11777   HarrCh03
#> 131     32234       14085  31696       <NA>
#> 132     28620       10497   9665   RobiEd00
#> 133     31170       12995  24904   OluoFo00
#> 134     26168        8553   7748   HarrJo02
#> 135     32898       14653  33541   HofrSt00
#> 136      8780        5610   4317   RyanMa00
#> 137     31336       12819  46540       <NA>
#> 138      6849        3793   1811   SchaMa00
#> 139     32559       14237  45764   BrooTo01
#> 140     28398       10147   9443   GurlTo01
#> 141     31096       12835  45932   SmitIt00
#> 142     30269       11719  11911   HillBr02
#> 143     31984       13494  45934   OlliQa00
#> 144     30262       12019  11904   KazeDa00
#> 145     29291       11045  10691   GreeT.00
#> 146     26703        8888   7861   WilcJ.00
#> 147     31343       13080  66448   GonoMa00
#> 148     27534        9248   8641   MattJa00
#> 149     27072       10073   8088   WetzJo00
#> 150     31863       13748  46912   McGaKa00
#> 151     24891        7413   6256   StocLu00
#> 152     30995       12467  47294   HursHa00
#> 153     31749       13356  31849   GrahJa01
#> 154     30996       12616  48262   RidlCa00
#> 155     32123       13833  44920   ZaccOl01
#> 156     32523       13469  42237   DortGr01
#> 157     33057       14976     NA       <NA>
#> 158     24793        7242   6158   JoneJu02
#> 159     33066       14885     NA   RowlCh00
#> 160     31347       13083  47900   BlakCh00
#> 161     31164       12992  44771   GageRu00
#> 162     29257       10739  10657   TreaLa00
#> 163     31641       13036  48036   PoweBr00
#> 164     31349       13085  48301       <NA>
#> 165     28894       10300  10019   MancGr00
#> 166     32315       14126  46219   MekaPa00
#> 167     29760       11176  11102   SkurMa01
#> 168     32997       14519  41117   ColoTr01
#> 169     28406       10407   9451   PeteMa00
#> 170     27655        9367   8762   DesiPi00
#> 171     29338       10889  10738   YounTa01
#> 172     24814        7511   6179   SmitJi03
#> 173     33012       15137  27819   DorsKh00
#> 174     31959       13654     NA   MarsIm00
#> 175     30129       12017  11771   HumpMa00
#> 176     31088       12905  50365   AverAn00
#> 177     31121       12726  37492   HarrDa05
#> 178     32199       13914  49401   WestCh03
#> 179     33004       14675     NA       <NA>
#> 180     32472       13969  49572   BrooNa00
#> 181     29478       11088  10878   KearJa00
#> 182     31160       12459  28854   ElliDe02
#> 183     29278       10891  10678   WardJi02
#> 184     32996       14725  36669   RiveCh01
#> 185     29303       11146  10703   NgakYa00
#> 186     25746        8204   7040   WolfDe00
#> 187     32741       14380  44304   MaduJu00
#> 188     33008       15140  48721   CrawAa00
#> 189     32424       14203  48665   HoyeBr01
#> 190     32840       14720  50049   WashBr01
#> 191      8827        5587   4364   CampCa99
#> 192     32309       14124     NA       <NA>
#> 193     26838        8987   7997   BohaTo00
#> 194     30592       12298  48862   RicaPa00
#> 195     24837        7527   6202   GilcMa00
#> 196     31955       13823  41482   PoweBe00
#> 197     32310       14128     NA       <NA>
#> 198     32813       14470  27305   BredBe00
#> 199     29339       11028  10739   EhinPa00
#> 200     26634        8729   7792   FlukDJ00
#> 201     32776       14685  59874   PhilTy00
#> 202     31185       12854  27934   BozeBr00
#> 203     26534        8398   7604   TuckJu00
#> 204     32304       13539  49757   AlakOt01
#> 205     33005       15141  51283   WelcKr00
#> 206     24952        7457   6317   McPhPe00
#> 207     32698       14508  57941   QueePa00
#> 208     32387       14177  20807   AdeoAa00
#> 209     31917       13468  48362   FergJa02
#> 210     30160       11961  11802   BowsTy00
#> 211     32768       14648  28081   HarrMa06
#> 212     31785       13386  49836   CrawJa01
#> 213     26370        8526   7292   FortL.00
#> 214     29380       11083  10780   JudoMa00
#> 215     31750       13353  29456   BoarCh00
#> 216     32496       13821     NA       <NA>
#> 217     24362        7075   6020   CoxxMo00
#> 218     26717        8678   7875   WillBr02
#> 219     27635        9397   8742   ElliJu01
#> 220     31143       12777  22261   TownJo01
#> 221      7952        7073   3148   KochSa20
#> 222     32993       14563  46448   HuntTy01
#> 223     31002       12561  46416   JackLa00
#> 224     25712        8023   7008   GrifRo01
#> 225     32029       13752  32819   McSoTr00
#> 226     24815        7244   6180   IngrMa01
#> 227     33006       14404     NA   WillTy01
#> 228     31424       13123  46027   EdwaGu00
#> 229     32725       14418  57366   DobbJK00
#> 230     31945       13427  45865   HillJu00
#> 231     28452       10399   9497   RichJo00
#> 232     24677        7013   6013   LeviAn00
#> 233     30299       12010  11941   ClarCh00
#> 234     31699       13336  47385       <NA>
#> 235     26786        8826   7945   MillJo02
#> 236      9270        5992   4929       <NA>
#> 237     29240       11184  10640   StanRo00
#> 238     31053       12557  46227   BrowOr00
#> 239     28613       10302   9658   RodgJa03
#> 240     32994       14628     NA       <NA>
#> 241     31056       12559  47436   AndrMa00
#> 242     33007       14375     NA       <NA>
#> 243     28658       10553   9786   TomlEr01
#> 244     28559       10252   9604   BoylNi00
#> 245     28184        9283   9092   GrimXa00
#> 246     31925       13553  48209   BoykMi00
#> 247     32317       13447  39967       <NA>
#> 248     23999        6336   5549   BryaDe01
#> 249     29341       10994  10741   MoorCh00
#> 250     32871       14415  48037   ProcJa00
#> 251     28800       10243   9697   WhitDe01
#> 252     31857       13502  61568   BrowMa04
#> 253     31155       12611  13597   CainDe00
#> 254     33001       15135     NA       <NA>
#> 255     27652        9274   8759   ThomDe05
#> 256     33040       14529     NA       <NA>
#> 257     32762       14636  40006   DuveDe00
#> 258     28026        9284   8999   SneaWi00
#> 259     28437       10273   9482   MorsMi00
#> 260     32402       13520  28300   BateRy02
#> 261     27260        9506   8268   DeveJo00
#> 262     30140       12127  11782   WhitTr01
#> 263     25853        8174   7649   NormJo01
#> 264     29808       11475  11170       <NA>
#> 265     29835       11596  11210   PittLa00
#> 266     32909       14549  32989   JackDa02
#> 267     32416       14253  49395   LewiCa00
#> 268     27716        9335   8823   GainE.00
#> 269     31603       12843  25445   WallLe00
#> 270     31124       12817  27130   NealSi00
#> 271     31091       12784  49511   JohnTa01
#> 272     32013       13819  51433   JohnJa11
#> 273     26782        8892   7941   HydeMi00
#> 274     32057       13989  37479   JohnDa10
#> 275     24006        6576   5556   HughJe99
#> 276     27575        9265   8682   MurpTr00
#> 277     32724       14501  56369   EpenAJ00
#> 278     31605       13230  48376   LoveMi00
#> 279     25147        7889   6558   AddiMa00
#> 280     30379       11910  12092       <NA>
#> 281     26637        8668   7795   LotuSt00
#> 282     29381       11069  10781   JeffQu00
#> 283     31066       12551  48690   PhilHa00
#> 284     29813       11557  11280   BryaBr00
#> 285     32575       14271     NA       <NA>
#> 286     29264       10931  10664   ButlVe00
#> 287     29559       11327  10975   ZimmJu00
#> 288     31841       13653  42200   OlivEd00
#> 289     28516       10456   9561   FeliJo00
#> 290     26695        8738   7853   WintBr00
#> 291     31599       13226  46918   BoetIk00
#> 292     32858       14609     NA   BassTy00
#> 293     31808       13496     NA   VizcTr00
#> 294     30986       12612  50905   EdmuTr01
#> 295     31204       12498  50897   SmitAn04
#> 296     32118       14025  57868   PhilDe00
#> 297     29254       11108  10654   LeexDa00
#> 298     32192       14063  29951   GoodAh00
#> 299     32411       13512  51045   DodsTy01
#> 300     26771        8942   7930   KleiAJ00
#> 301     29480       11129  10880   MataTy00
#> 302     27348       11703   8512   LaceDe00
#> 303     30276       11978  11918   MilaMa00
#> 304     29549       11321  10965   FergRe00
#> 305     31727       13323  27626   BojoCo00
#> 306     26721        8004   7880   BarkMa00
#> 307     32837       14486     NA       <NA>
#> 308     30200       11843  11842       <NA>
#> 309     30977       12483  46601   AlleJo02
#> 310     32756       14564  40341   MossZa00
#> 311     28424       10056   9469   YeldT.00
#> 312     27631        9326   8738   FreeDe00
#> 313     24912        7324   6277   JoneTa00
#> 314     31822       13930  92925       <NA>
#> 315     33359       14884  40197   WillAn03
#> 316     31906       13449  40485   SingDe00
#> 317     26841        8639   8000   PoyeJo00
#> 318     28732       10526   9966   MarlDe00
#> 319     33358       14882     NA       <NA>
#> 320     33355       14366     NA       <NA>
#> 321     31870       13498  39805   FordCo00
#> 322     30176       11788  11818   DawkDi00
#> 323     28490       10284   9535   WillDa06
#> 324     30853       12245  46319       <NA>
#> 325     26578        8560   7636   NsekTy00
#> 326     31928       13466  35883   KnoxDa00
#> 327     28473       10247   9518   KrofTy00
#> 328     32449       14208  29141   BeckNa00
#> 329     33357       14844  40951   GillRe00
#> 330     24946        7425   6311   SmitLe00
#> 331     32060       13667  47216   SweeTo00
#> 332     29973       10945  11366       <NA>
#> 333     30285       11866  11927   McKeIs00
#> 334     28974       10544   9883   KumeJa00
#> 335     28534       10133   9579   DiggSt00
#> 336     27619        9684   8726   BrowJo02
#> 337     30720       12353  12170   GentTa00
#> 338     26767        8800   7926   StilKe00
#> 339     26060        8249   7330   BeasCo00
#> 340     24063        6506   5612   RobeAn00
#> 341     32798       14359  55410   DaviGa01
#> 342     32877       14356     NA       <NA>
#> 343     27735        9694   8841   ParaMa00
#> 344     28105        9433   9304   LarsTy00
#> 345     33155       14974     NA   TeckSa00
#> 346     31025       12610  49377   JackDo02
#> 347     30212       12013  11854   DougRa00
#> 348     25775        8167   7067   JohnTr05
#> 349     32783       14581  42883   PridTr00
#> 350     30265       12014  11907   EldeCo00
#> 351     32891       14707     NA   ThomSt00
#> 352     31134       12722  50440   JameNa00
#> 353     29244       10886  10644   ApplEl00
#> 354     32822       14787  60789   RobiKe02
#> 355     33139       14968  49159   HartMy00
#> 356     31548       12923  51315   ChanSe00
#> 357     27656        9303   8763   BostTr00
#> 358     32329       13886     NA       <NA>
#> 359     32734       14623  43179   ChinJe00
#> 360     32278       13956     NA       <NA>
#> 361     31106       12841  50244   HaynMa01
#> 362     31286       13251  38754   LarkAu00
#> 363     31947       13762  50078   MillCh04
#> 364     29461       10894  10861   WeatSt00
#> 365     32707       14355  56444   GrosYe00
#> 366     31848       13439  44522   BurnBr00
#> 367     31243       13062  48459   WynnJo00
#> 368     28386       10448  10235   ObadEf00
#> 369     29873       11355  11215   HamiWo00
#> 370     27905        9637   9195   KerrZa00
#> 371     32677       13852  43883   BrowDe05
#> 372     33354       14905     NA       <NA>
#> 373     31572       13280  48759   HectBr00
#> 374     26667        8674   7825   ShorKa00
#> 375     32854       14824  25644   RoyxBr00
#> 376     30305       12208  11948   ArmaAl00
#> 377     32441       14281  25693       <NA>
#> 378     28469       10283   9514   MillJo04
#> 379     33142       14970     NA       <NA>
#> 380     32044       13790  60063   DaleDe00
#> 381     28850       10758   9830   ReedCh00
#> 382     27623        9426   8730   SchoMi00
#> 383     32384       14172     NA   SlyeJo00
#> 384     33144       14745     NA       <NA>
#> 385     25719        8198   7015   KuecLu00
#> 386     25848        8341   7135   WhitTa00
#> 387     26093        8437   7372   StanJu00
#> 388     28413       10034   9458   ThomSh01
#> 389     27940        9996   9074   GlanAd00
#> 390     31131       12988  28838   CartJe00
#> 391     32904       14743  25685   JohnCl00
#> 392     33147       14561  50653   OrrxCh00
#> 393     33248       14679     NA       <NA>
#> 394      9585        7078   4712   JansJ.00
#> 395     28292       10053   9277   PalaMi00
#> 396     33360       14652  33672   CharJo01
#> 397     27560        9245   8667   BridTe00
#> 398     30538       12371  12134   WalkPh00
#> 399     31932       13446  38265   GrieWi00
#> 400     32910       14527  28301   StevTo01
#> 401     31302       13233  47542   BonnRe00
#> 402     31174       12997  66446   CannTr00
#> 403     33153       14435  26306       <NA>
#> 404     30121       11690  11763   McCaCh01
#> 405     28514       10083   9559   DaviMi01
#> 406     33137       14931  43580   FranSa00
#> 407     29352       10929  10752   BurrJu00
#> 408     31687       13059  24481   ScotTr01
#> 409     31869       13448  46254       <NA>
#> 410     30177       11812  11819   MotoTa00
#> 411     23981        6539   5531   OkunRu20
#> 412     32175       14051  94359   KaskMa00
#> 413     31071       12858  42130   ThomIa00
#> 414     30740       12375  12239   ThomCo03
#> 415     32921       14570  40411   SullSt00
#> 416     33151       14785     NA   RiccGi00
#> 417     28365       10033  10211   ManhCh00
#> 418     30219       11852  11861   DarbAm00
#> 419     30279       11721  11921   GibsSh00
#> 420     33132       14585     NA       <NA>
#> 421     30959       12533  66438   ZylsBr00
#> 422     29351       10823  10751   CoopPh00
#> 423     31832       13967  28621   HymaIs00
#> 424     29785       11191  11254   AndeRo04
#> 425     30153       11710  11795   SamuCu00
#> 426     32556       14236  47959   BryaVe00
#> 427     30994       12477  48267   MoorD.00
#> 428     31517       13019  48017   KirkKe00
#> 429     29540       11501  10980   MichMa00
#> 430     29290       10897  10690   WhitCo03
#> 431     32259       14150  13026   MustSa01
#> 432     24924        7623   6289   SkriBu00
#> 433     32037       13986  49569   ShelDu00
#> 434     29925       11506  11310       <NA>
#> 435     32027       13430  50326   CrawXa00
#> 436     27542        9272   8649   FullKy00
#> 437     32720       14627  56259   JohnJa13
#> 438     29259       10928  10659   BurnAr00
#> 439     30495       12029  12021       <NA>
#> 440     31660       12780  66576       <NA>
#> 441     32833       14706  49346   VildKi00
#> 442     30166       12052  11808   TaboTe00
#> 443     26372        8567   7288   GipsTa00
#> 444     29358       10930  10758   BushDe00
#> 445     29401       11223  10801   ChriMa00
#> 446     29419       11060  10819   HousDe00
#> 447     33176       14979     NA       <NA>
#> 448     24801        7418   6166   QuinRo00
#> 449     32258          NA     NA       <NA>
#> 450     28423       10450   9468   EdwaMa01
#> 451     29920       11356  11341   RobeRo00
#> 452     32047          NA  39527       <NA>
#> 453     27662        9415   8769   UrbaBr00
#> 454     25799        8350   7090   HickAk00
#> 455     33175       15052     NA       <NA>
#> 456     31009       12565  45576   DaniJa01
#> 457     33173       15167     NA   EiseDi00
#> 458     29265       11062  10665   IfedGe00
#> 459     32897       14830     NA       <NA>
#> 460     32247       13840  47018   BarsAl01
#> 461     26793        9109   7952   KushEr00
#> 462     32896       14815  60003   HambAr00
#> 463     28227        9633   8932   SantCa01
#> 464     31482       12582     NA   PineEd00
#> 465     30978       12644  50892   SmitRo07
#> 466     32825       14680  35241   GipsTr00
#> 467     31085       12640  51221   IyieJo00
#> 468     26629        8708   7787   MingBa00
#> 469     28934       10850   9934   VaugJa01
#> 470     25898        8285   7177   TrevDa00
#> 471     31753       13361  49023   WoodJo02
#> 472     27533        9251   8640   MackKh00
#> 473     29417       10912  10817   BondDe00
#> 474     26661        8693   7819   TeoxMa00
#> 475     25370       10021   6508   ScalPa00
#> 476     26705        8672   7863   JenkJo00
#> 477     31115       12711  28451   NichBi00
#> 478     28427       10067   9472   GoldEd00
#> 479     27743        9394   8849   McCuDa00
#> 480     27719        9769   8826   ODonPa00
#> 481     30115       11709  11757   TrubMi00
#> 482     25798        8066   7089   FoleNi00
#> 483     27170        8621   8440   BrayTy00
#> 484     31662       12513  45753   NallRy00
#> 485     33179       14881  45749   PierAr00
#> 486     30232       11758  11874   CoheTa00
#> 487     31905       13556  45719   MontDa01
#> 488     26817        8625   7975   WareSp00
#> 489     30225       11993  11867   JackEd01
#> 490     24120        6732   5667   McMaSh99
#> 491     29438       11120  10838   LucaJo00
#> 492     30718       12469  12168   CowaRa00
#> 493     29282       11181  10682   SpriJa00
#> 494     27774        9631   8880   LenoCh00
#> 495     25822        8304   7112   MassBo00
#> 496     33181       15168     NA       <NA>
#> 497     32663       14467     NA       <NA>
#> 498     29666       11364  11062   HoltJ.01
#> 499     32713       14436  60995   KmetCo00
#> 500     32576       13639  91465   HorsJe00
#> 501     24070        6532   5619   GrahJi00
#> 502     27174        9847   8524   HarrDe03
#> 503      8263        5214   3625   GinnTe00
#> 504     28947       10234   9859   CartDe02
#> 505     31592       12653  48162   WeahJe01
#> 506     31958       13531  47933   RidlRi00
#> 507     31194       12627  41406   WimsJa00
#> 508     30827       12146  48079       <NA>
#> 509     30283       11844  11925   AdamRo01
#> 510     32843       14510  48236   MoonDa00
#> 511     24963        7385   6328   HarrDw00
#> 512     32256       14130  47906       <NA>
#> 513     31021       12763  48160   MillAn02
#> 514     27589        9264   8696   RobiAl02
#> 515     26652        8792   7810   PattCo00
#> 516     28023        9961   9276   HopkTr01
#> 517     28665       10281   9875   FinnB.01
#> 518     30991       12881  46795   PricBi01
#> 519     28399       10028   9444   WaynTr00
#> 520     32053       13780  49431       <NA>
#> 521     29741       11278  11197       <NA>
#> 522     29287       10880  10688   AlexMa01
#> 523     31671       12906  49255       <NA>
#> 524     31140       12774  49507   PhilDa02
#> 525     29258       11067  10658   JackWi02
#> 526     31534       13263  50431   DaviJa06
#> 527     29391       11175  10791   SimsLe00
#> 528     32938       14407     NA       <NA>
#> 529     30320       12211  11962   WilsBr01
#> 530     31024       12564  49162   BateJe00
#> 531     30229       11926  11871   LawsCa00
#> 532     32601       14294  48374   AkinFr01
#> 533     31047       12495  48457   HubbSa00
#> 534     32817       14684  42993   KareKh00
#> 535     32420       14200  42782   BledAm01
#> 536     28815       10675   9809   WillXa00
#> 537     25842        8324   7132   DaniMi00
#> 538     24095        6589   5643   AtkiGe99
#> 539     26676        8659   7834   HuntMa00
#> 540     31168       12571  62935   McKeKa00
#> 541     29063       10303  10110   SpaiQu00
#> 542     32850       14604  45419   AdenHa00
#> 543     29709       11116  11113   RedmAl01
#> 544     31222       12939     NA       <NA>
#> 545     32470       13720  46035   SuthKe00
#> 546     31968       13544  28021       <NA>
#> 547     27561        9436   8668   Sua-Xa00
#> 548     32002       13812     NA   SeibAu00
#> 549     25871        8222     NA   BullRa00
#> 550     32777       14661  34788   DaviAk01
#> 551     31904       13436  29407   PratGe00
#> 552     25358        7740   6503   ByneJo00
#> 553     32885       14736  49681   BailMa01
#> 554     31218       13014  50198       <NA>
#> 555     33174       15066     NA   JoneKe03
#> 556     30306       12186  11947   EvanJo01
#> 557     32735       14647  29623   WilsLo00
#> 558      8497        5308   3859   HarrCl20
#> 559     32480       13803     NA       <NA>
#> 560     30586       12183  12093   TupoJo00
#> 561     29400       11114  10800   ReadD.00
#> 562     31957       13740  48953   WrenRe00
#> 563     28604       10333   9649   CoviCh00
#> 564      9406        7087   5066   HubeKe20
#> 565     32366       13663  29110       <NA>
#> 566     32671       14442  28022   BurrJo01
#> 567     31936       13750  46426   FinlRy00
#> 568     29396       11058  10796   HogaKe00
#> 569     29435       10882  10835   AlleBr00
#> 570     32014       13548  45775   WillTr06
#> 571     32669       13964     NA       <NA>
#> 572     30227       11698  11869   PeriSa00
#> 573     30161       11707  11803   MixoJo00
#> 574     26660        8622   7818   BernGi00
#> 575     26707        8777   7865   WillSh02
#> 576     29295       10905  10695   BellVo00
#> 577     31562       12791  51394   HendTr01
#> 578     32034       13783  47019   PrinIs00
#> 579     31843       13585  41651       <NA>
#> 580     28614       10297   9659   HartBo00
#> 581     32169       13688  46951   JohnFr01
#> 582     32465       13723  46157       <NA>
#> 583     30577       11889  47149   CartCe00
#> 584     30364       12224  12007   SchrMa00
#> 585     28545       10462   9590   UzomC.00
#> 586     31884       13809  47259   SampDr00
#> 587     33171       14634     NA   WilcMi01
#> 588     24791        7241   6156   GreeA.00
#> 589     32469       13877  48110   MorgSt02
#> 590     31223       12569  48192   TateAu00
#> 591     33168       14588     NA       <NA>
#> 592     32703       14506  61211   HiggTe00
#> 593     29703       11257  11107   EricAl01
#> 594     29288       10822  10689   BoydTy00
#> 595     29440       11076  10840   ThomMi04
#> 596     32438       13626  48080   IrwiTr00
#> 597     30122       11699  11764   RossJo00
#> 598     26745        8706   7904   TretJC00
#> 599     32078       13535     NA   PattJa00
#> 600     32830       14552  46752   HarrNi01
#> 601     29752       11242  11094   FabiAn00
#> 602     31370       13411  28990   JackRo00
#> 603     31878       13485  43254   WillGr00
#> 604     27782        9332   8888   MitcTe00
#> 605     30286       12008  11928   AlleBr01
#> 606     30974       12572  49558   WardDe02
#> 607     33306       14716  50394   GreeAJ00
#> 608     31295       13252  52165   OlumDo00
#> 609     31023       12836  49397   StewM.00
#> 610     28404       10449   9449   JohnKe04
#> 611     31321       13219  66931   ThomTa01
#> 612     32714       14507     NA       <NA>
#> 613     30224       12004  11866   ThomTe00
#> 614     24759        7214   6118   SendAn00
#> 615     31951       13537  50458   RedwSh00
#> 616     30644       12057  50587   MalvCa00
#> 617     32492       13859  50290   GustPo01
#> 618     31997       13523  44615   JackJo02
#> 619     32834       14409     NA       <NA>
#> 620     32503       13851  38297   DaviJa08
#> 621     30114       11914  11756   GarrMy00
#> 622     33311       15134     NA       <NA>
#> 623     25782        8146   7074   VernOl00
#> 624     24807        7417   6172   ClayAd00
#> 625     32758       14353  56734   ElliJo02
#> 626     26636        8670   7794   RichSh00
#> 627     30307       11944  11949   TaylVi00
#> 628     30341       12051  11984   IvieJo00
#> 629     29337       11019  10737   DayxSh00
#> 630     30178       11933  11820   OgunLa00
#> 631     31510       13182  46441   StanJo02
#> 632     29410       11068  10810   JanoAn00
#> 633     27563        9421   8670   BitoJo00
#> 634     32516       14232  41421       <NA>
#> 635     31136       12798  46131   TellWy00
#> 636     31183       12850  46673   GossCo00
#> 637     33157       14422     NA       <NA>
#> 638     31310       12712     NA   McCrMa00
#> 639     27911        9943   9030   ParkCo03
#> 640     31987       13609  43190   WilsMa03
#> 641     25029        7606   6394   SmitMa02
#> 642     30345       12151  11987   LeexEl00
#> 643     32767       14517  57942   PhilJa01
#> 644     31175       12962  18413   YounTr00
#> 645     31912       13614  12666   TakiSi00
#> 646     29343       11043  10743   GoodB.00
#> 647     31552       13276  26296   DaviTa00
#> 648     26068       10024   7336   HughCh01
#> 649     29356       10907  10756   BillAn00
#> 650     32277       14147  63303   GillJa00
#> 651     31078       12818  46452   LaulKy00
#> 652     26483        8065   7323   KeenCa00
#> 653     30971       12619  46518   MayfBa00
#> 654     31145       12555  34761   KellJo00
#> 655     32569       13443     NA       <NA>
#> 656     31005       12886  45783   ChubNi00
#> 657     32608       12678  45734   JohnDE04
#> 658     30199       11739  11841   HuntKa00
#> 659     33310       15062  34207   MoffJo01
#> 660     31459       13145  34845   MeanMo00
#> 661     33301       15132     NA   BentEl00
#> 662     31063       12625  49206   HarrRo02
#> 663     29248       11082  10648   JoseKa00
#> 664     32680       14456  58467   WillJe04
#> 665     26909        9575   8051   HubbCh00
#> 666     32414       13995  46301   HancBl00
#> 667     33305       15038     NA       <NA>
#> 668     28892       10644  10017   LammKe00
#> 669     30902       12290  39676   DunnMi01
#> 670     33312       14694     NA   TaylAl02
#> 671     32021       13915  28671   ForbDr00
#> 672     29242       10977  10642   ConkJa00
#> 673     32785       14576  26394   BryaHa00
#> 674     29315       10748  10715   HoopAu00
#> 675     32273       14131  94365   CarlSt00
#> 676     30142       11734  11784   NjokDa00
#> 677     31561       13247  47206   FranJo03
#> 678     33044       14377     NA       <NA>
#> 679     30531       12359  12739   NatsJo00
#> 680     30185       11880  11827   TaylTa00
#> 681     31462       13138  48345       <NA>
#> 682     30246       11879  11888   SwitRy00
#> 683     27540        9255   8647   BeckOd00
#> 684     31769       13418  26104   HodgKh00
#> 685     27591        9454   8698   LandJa00
#> 686     30023       11517  11440   HallMa02
#> 687     32857       14457  61439   PeopDo00
#> 688     29406       10830  10806   HiggRa00
#> 689     32143       14049  63664   HollAl00
#> 690     33302       14571  27003   BradJa01
#> 691     29849       11504  11228       <NA>
#> 692     32816       14485  41178   BiadTy00
#> 693     26654        8631   7812   FredTr00
#> 694     29608       11426  10915   RedmAd00
#> 695     25827        8291   7117   LoonJo01
#> 696     29443       10936  10843   CanaMa00
#> 697     32542       14307  56123   HallKe01
#> 698     32721       14389  41817   DiggTr00
#> 699     29423       10921  10823   BrowAn02
#> 700      8906        5878   4454   CarrBr99
#> 701     30450       12649  47970   BurtDe00
#> 702     30173       12009  11815   AwuzCh00
#> 703     28289        9842   9243   GoodC.00
#> 704     30205       12024  11846   LewiJo01
#> 705     29367       11164  10767   RobiRa00
#> 706     32097       13589  44429   SmitSa02
#> 707     30304       12007  11946   WoodXa00
#> 708     31733       13342  51220   ParkSt00
#> 709     29305       10957  10705   ThomDa05
#> 710     32793       14708     NA   RobiRe00
#> 711     24794        7446   6159   SmitAl04
#> 712     33103       14920  36346   CartRo02
#> 713     27562        9344   8669   LawrDe00
#> 714     32849       14582  43982   AnaeBr00
#> 715     28448       10168   9493   GregRa00
#> 716     31086       12548  48557   ArmsDo00
#> 717     25791        8144   7083   CrawTy00
#> 718     25721        8153   7017   PoexDo00
#> 719     30792       12358  48856   AnkoEl00
#> 720     31890       13514  44519   HillTr00
#> 721     29950       10942  11332   WoodAn02
#> 722     28771       10592   9732       <NA>
#> 723     32515       14231  56733   PalmWa01
#> 724     32752       14451  28094   GallNe00
#> 725     26535        8497   7572   OlawJa00
#> 726     27544        9266   8651   MartZa00
#> 727     31922       13509  41714       <NA>
#> 728     31020       12458  46216   WillCo00
#> 729     25881        8179   7163   ZuerGr00
#> 730     29098       10646  10065   MarcJu00
#> 731     30989       12479  50950   VandLe00
#> 732     29268       10801  10668   SmitJa05
#> 733     32205       14068  50675   GiffLu00
#> 734     28089       10091   9272       <NA>
#> 735     33105       14610  44722   BernFr01
#> 736     33106       14744     NA       <NA>
#> 737     24030        6601   5580   LeexSe99
#> 738     33104       14723     NA       <NA>
#> 739      7512        7095     NA       <NA>
#> 740        NA       15206  29601   NiswJa00
#> 741     25431        8021   6798       <NA>
#> 742     30788       11841  12324   RushCo00
#> 743     24822        7355   6187   DaltAn00
#> 744     32901       14832  34311   DiNuBe00
#> 745     29369       11008  10769   PresDa01
#> 746     27742        9776   8848   GilbGa01
#> 747     31960       13590  27126   PollTo00
#> 748     33100       14657  40693   DowdRi01
#> 749     33099       14658     NA   OlonSe01
#> 750     29238       10736  10638   ElliEz00
#> 751     32045       13890  49408   WilsDo01
#> 752     32202       13873  25018   KnigBr01
#> 753     30651       12301  46987       <NA>
#> 754     31182       12702  34397   SenaGr00
#> 755     32160       13467  37023       <NA>
#> 756     33183       14946     NA       <NA>
#> 757     32207       13865  46233       <NA>
#> 758     28407       10264   9452   ErviCa00
#> 759     24796        7349   6161   SmitTy00
#> 760     31437       13115  31454   LighAl00
#> 761     28854       10260   9719   CollLa01
#> 762     33093       14693  39461   SteeTe01
#> 763     30784       12179  12320   JarwBl00
#> 764     31107       12514  47304   SchuDa00
#> 765     28505       10248   9550   BellBl00
#> 766     33101       14478  42266   McKeSe01
#> 767     30559       11891  12276   HikuCo00
#> 768     31777       13378  48078   TurnMa00
#> 769     31651       12952  29726   LacyCh00
#> 770     31178       12773  48170   WilsCe01
#> 771     30352       11849  11993   BrowNo00
#> 772     28392       10055   9437   CoopAm00
#> 773     31051       12810  26075   GallMi00
#> 774     32687       14411  61570   LambCe00
#> 775     33094       14441     NA       <NA>
#> 776     32200       13912  48082       <NA>
#> 777     33095       14642     NA       <NA>
#> 778     32753       14515  41924   CushLl00
#> 779     31413       13104  46084   MorrPa00
#> 780     27707        9442   8814   HalaJo00
#> 781     28705       10429  10000   CallBr00
#> 782     33293       14599  42189   MotlPa00
#> 783     29090       10775  10057   BausDe00
#> 784     32932       14738  45258   BassEs01
#> 785     32747       14711  50327   OjemMi00
#> 786     30271       12016  11913   HairNa00
#> 787     23995        6622   5545   JackKa99
#> 788     31667       12597  49348   ToliKe00
#> 789     27337        9070   8110   BouyA.00
#> 790     31026       12782  51576   DawsDu00
#> 791     29453       11237  10853   ParkWi01
#> 792     32164       14198  51189   LockPJ00
#> 793     32218       13863  38567   HoldAl01
#> 794     29332       11174  10732   SimmJu00
#> 795     27763        9785   8869   HarrSh00
#> 796     30164       11950  11806   WalkDe03
#> 797     32254       14144  94361   HarrJo05
#> 798     30975       12877  48526   ChubBr00
#> 799     32578       14287  94382   SizeDe00
#> 800     31903       13451  28075   JoneDr00
#> 801     28982       10793   9891   WillDe04
#> 802     26651        8675   7809   WillSy00
#> 803     27576        9290   8683   JernTi00
#> 804     32425       14204  26229   MackIs00
#> 805     29630       11428  11027   PekoKy00
#> 806     28591       10485   9636   KilgDa01
#> 807     32765       14602  43069   AgimMc00
#> 808     24864        7469   6229   CaseJu00
#> 809     32851       14624  41339   MutiNe00
#> 810     31382       13954  30097   SchlAu00
#> 811     31873       13545  47008   RisnDa00
#> 812     29329       11042  10729   GlasGr00
#> 813     27120        9948   8437   McMaBr01
#> 814        NA       15225     NA   RussTa00
#> 815     25717        8197   7013   BarrMa00
#> 816     28600       10331   9645   ChicAn00
#> 817     32220       13907  48567   ReedMa01
#> 818     24789        7421   6154   MillVo00
#> 819     32848       14757     NA   StrnJu00
#> 820     32134       13973  49805   PatrNa00
#> 821     27578        9343   8685   AttaJe00
#> 822     25815        8215   7105   BradNi00
#> 823     31076       12968  50720   JeweJo00
#> 824     30785       12454  12321   JoneJo05
#> 825     32222       14081  49722       <NA>
#> 826     32923       14731  37724   TuszDe00
#> 827     31792       13391  15267       <NA>
#> 828     30568       12232  50640   CaliAu00
#> 829     32666       13699  30352   BobeJa00
#> 830     27217        9935   8530   PurcMi00
#> 831     26788        9022   7947   MartSa01
#> 832     31874       13736  39517   LockDr00
#> 833     29441       11026  10841   DrisJe00
#> 834     32221       13620  46487   RypiBr00
#> 835     32502       13559  27436   CrocDa01
#> 836     32926       14656  45854   BellLe02
#> 837     31379       12715  12660   LindPh00
#> 838     32541       14003  46004   CoxxJe00
#> 839     28403       10064   9448   GordMe00
#> 840     31041       12892  45747   FreeRo00
#> 841     31367       13410  28870       <NA>
#> 842     31381       12684  49154   MarsTr00
#> 843     32188       14065  46669   BailQu00
#> 844     30826       12449  46238   WilkEl00
#> 845      9574        9134   5410   DotsDe00
#> 846     32224       13601  46247   AndeCa00
#> 847     30133       11779  11775   BollGa00
#> 848     27547        9423   8654   JameJa01
#> 849     33117       14963     NA       <NA>
#> 850     31126       12808  47333   FumaTr00
#> 851     31852       13426  42388   FantNo00
#> 852     30258       11888  11900   ButtJa00
#> 853     32788       14369  41933   OkwuAl00
#> 854     29328       10949  10728   VannNi00
#> 855     32191       14062  30778       <NA>
#> 856     32225       13713  47121   BeckAn01
#> 857     30263       11893  11905   LeggJo00
#> 858     31010       12586  48164   SuttCo00
#> 859     30901       12291  23172   BrowFr01
#> 860     32685       14458  61103   JeudJe00
#> 861     31083       12654  45416   HamiDa01
#> 862     30511       12061  12087   PatrTi00
#> 863     32929       14593  34045   HintKe00
#> 864     32189       13919  94356   BensTr00
#> 865     32922       14621  42134   ClevTy00
#> 866     32716       14462  61590   HamlKJ00
#> 867     28279       13530  91248   SpenDi00
#> 868     30956       11823  22917       <NA>
#> 869     30990       12888  39137   RagnFr00
#> 870     27639        9444   8746   BodiRu00
#> 871     31978       13744  50533   OruwAm00
#> 872     32673       14424  55674   OkudJe00
#> 873     28635       10427   9680   RobeDa00
#> 874     29729       11446  11149   HawkJo00
#> 875     24578        7140   5903   BrocTr00
#> 876     26645        8641   7803   TrufDe00
#> 877     29962       11656  11358   McRaTo00
#> 878     31634       13195  50535   FordMi01
#> 879     28835       10430   9892   ColeJu01
#> 880     33190       14849     NA   PricBo00
#> 881     29345       11091  10745   KillMi00
#> 882     32171       14187  43823   MyreAl00
#> 883     33189       14699     NA       <NA>
#> 884     31052       12747  51266   WalkTr01
#> 885        NA          NA  26617   MoorCJ01
#> 886     32737       14448  44152   OkwaJu00
#> 887     29794       11055  11162   HeatJo00
#> 888     32905       14833     NA       <NA>
#> 889     31949       13843  36248   BryaAu00
#> 890     29867       11156  11250   OkwaRo01
#> 891     31084       12821  48386   HandDa00
#> 892     31649       13188  39383   HerrFr00
#> 893     28489       10323   9534   FlowTr00
#> 894     31523       13420  28474   McCrRo00
#> 895     24075        6572   5624   GrifEv99
#> 896     31647       12910  49918   AtkiJo01
#> 897     32509       13864  36862   HuggAl01
#> 898     32867       14719  57037   PeniJo00
#> 899     28400       10310   9445   ShelDa01
#> 900     32461       14213  48981   StroKe00
#> 901     26846        8969   8006   WillNi01
#> 902     31547       13272  38709   BrowEv00
#> 903     32745       14668  37070   JackJo03
#> 904     26764        8730   7923   AbouOd00
#> 905     29385       10987  10785   DahlJo00
#> 906     32791       14678     NA   StenLo00
#> 907      8565        5051   3471   PratMa20
#> 908     32174       14189     NA   WrigMa00
#> 909     32457       14211  94372   PittAn01
#> 910     30237       11980  11879   ReevJa00
#> 911     31480       12662  50714   CabiJa00
#> 912     31875       13885  51055   TavaJa00
#> 913     31167       12907  49706   DionSh00
#> 914     26675        8715   7833   CollJa00
#> 915     30134       11966  11776   DaviJa01
#> 916     29275       11109  10675   RaglRe00
#> 917     27612        9410   8719   MartKa00
#> 918     27839        9384   9020   JoneCh05
#> 919      7120        6405   2130   MuhlDo20
#> 920     32358       13715  34735   FoxxJa01
#> 921      9265        5971   4924   StafMa00
#> 922      9678        6162   5214   DaniCh00
#> 923     32272       13630  46508   BlouDa00
#> 924     31013       12525  34455   JohnKe06
#> 925     32705       14394  57212   SwifDA00
#> 926     32054       13454  26392   WhytKe00
#> 927      8261        5215   3623   PeteAd01
#> 928     31620       13293  39541   DawkDa01
#> 929     31207       12828  27413   BawdNi00
#> 930     26714        8906   7872   HarmDu00
#> 931     31913       13805  51336   HarrWi02
#> 932     31258       12725  49166   IgweGo00
#> 933     30870       11820  12307   SkipDa00
#> 934     29398       10951  10798   VaitHa00
#> 935     32455       14210  48584   NelsMa00
#> 936     29250       11020  10650   DeckTa00
#> 937     31123       12803  38897   CrosTy00
#> 938     28893       10503  10018   LeexKh00
#> 939     29418       10876  10818   AdamJe01
#> 940     28548       10150   9593   JameJe00
#> 941     32063       13527  39770       <NA>
#> 942     33186       14364  61072   BryaHu02
#> 943     31840       13610  40912   HockTJ00
#> 944     30278       12205  11920   AgneJa00
#> 945     32561       14246  94379   KennTo01
#> 946     25793        8026   7084   SanuMo00
#> 947     25876        8223   7158   JoneMa02
#> 948      9037        5813   4717   AmenDa00
#> 949     32836       14466  29614   CephQu00
#> 950     30550       11846  12269   BoldVi00
#> 951     29719       10884  11141   AlliGe01
#> 952     30209       11857  11851   GollKe00
#> 953     27689        9702   8796   LinsCo00
#> 954     32878       14666     NA       <NA>
#> 955     31149       12958  50511   NickPa00
#> 956     31589       12832  49349   SullCh00
#> 957     30146       12020  11788   KingKe01
#> 958     29308       11166  10708   RussKe00
#> 959      8212        5861   3558   WillTr99
#> 960     30988       12549  49350   AlexJa00
#> 961     32017       13729  49446   HollKa00
#> 962     31015       12530  50417   JackJo01
#> 963     32268       14104  26015       <NA>
#> 964     28530       10390   9575   AmosAd00
#> 965     33222       15070  25687   BlacHe00
#> 966     32906       14779  43076   ScotVe00
#> 967     31433       13111  24750   GreeRa02
#> 968     33231       14405  55893   SamuSt01
#> 969     29371       11119  10771   LowrDe00
#> 970     25915        8160   7190   WinnBi00
#> 971     33232       15031     NA       <NA>
#> 972     30206       11752  11848   AdamMo00
#> 973     33225       15072  50275   GaleTi01
#> 974     31982       13538  48718   KekeKi00
#> 975     32408       14018  56895   RushAn00
#> 976     33230       15073     NA       <NA>
#> 977     26153        8486   7355   HarrDa03
#> 978     29747       11566  11157       <NA>
#> 979     27360        9104   8365   TaylLa01
#> 980     30676       11780  23112   BradBe00
#> 981     26791        8739   7950   WagnRi00
#> 982     33227       15114     NA       <NA>
#> 983     31876       13669  46298   JenkEl00
#> 984     30018       11453  11435   PatrLu00
#> 985     32862       14471  36661   RunyJo00
#> 986     32879       14594     NA       <NA>
#> 987      8447        5363   3809   CrosMa20
#> 988     33321       14553     NA   HarrDe10
#> 989     28426       10316   9471   SmitPr00
#> 990     31844       13651  42905   GaryRa00
#> 991     32912       14365  56703   GarvJo00
#> 992     31058       12919  50203   BurkOr00
#> 993     32058       13883  30242   SummTy00
#> 994     28510       10328   9555   SmitZa00
#> 995     33221       14572  42548   BarnKr00
#> 996     32845       14385  12744   MartKa01
#> 997     32276       14106  39094   RamsRa00
#> 998     29822       11646  11202   BurgJa01
#> 999     27599        9375   8706   KirkCh00
#> 1000    31209       12660  23250   BradHu00
#> 1001    29261       10973  10661   ClarKe01
#> 1002    31436       13114  48604   LancTy00
#> 1003    31670       12941     NA   WinsRy00
#> 1004    31142       12822  38809   ScotJK00
#> 1005     7200        4307   2241   RodgAa00
#> 1006    31431       13109  21956   BoylTi00
#> 1007    32696       14371     NA   LoveJo03
#> 1008    32364       14184  94371   LoveJo02
#> 1009    32026       13670  45913   WillDe07
#> 1010    32050       13456     NA       <NA>
#> 1011    33235       14573     NA       <NA>
#> 1012    30295       11763  11937   JoneAa00
#> 1013    29353       10995  10753   ErviTy00
#> 1014    32732       14370  57165   DillAJ00
#> 1015    30247       11777  11889   WillJa06
#> 1016    31853       13810  34247   SavaDa00
#> 1017    29302       11117  10702   RedmWi00
#> 1018    32458       13725  32587       <NA>
#> 1019    27595        9696   8702   TurnBi00
#> 1020    32275       13879  60822       <NA>
#> 1021    26732        8736   7891   BakhDa00
#> 1022    24044        6545   5594   VeldJa20
#> 1023     7777        4891   2973   LewiMa00
#> 1024    31907       13495  47081   SterJa00
#> 1025    33367       15181  62825   DafnDo00
#> 1026    32764       14629  47034   DeguJo00
#> 1027    32056       13528  47119   NautIs00
#> 1028    29304       11087  10704   KaufBr01
#> 1029    30777       12389  12193   TonyRo00
#> 1030    32270       14109     NA       <NA>
#> 1031    27581        9455   8688   AdamDa01
#> 1032    32488       14002  94375   TaylMa01
#> 1033    32664       14472  20052   BegeRe00
#> 1034    31177       12560  47967   St.BEq00
#> 1035    31464       13064  48100       <NA>
#> 1036    28214       10112   9079   RobeSe00
#> 1037    32378       13924  29347   ShepDa00
#> 1038    31268       12628  48135   LazaAl00
#> 1039    26631        8793   7789   AustTa00
#> 1040    31144       12934  47809   ValdMa00
#> 1041    32019       13664  38275   WinfJu00
#> 1042    28429       10138   9474   FuncDe00
#> 1043    29283       11126  10684   MartNi00
#> 1044    33249       14489     NA       <NA>
#> 1045    32450       13580  46801   BenzBe01
#> 1046    31318       13218  66930   OwenJo01
#> 1047    29245       11052  10645   HargVe00
#> 1048    32811       14710  49381   ReidJo00
#> 1049    31886       13820  55615   JohnLo01
#> 1050    32357       13646  49394       <NA>
#> 1051    27559        9329   8666   RobyBr00
#> 1052    31179       12999  50351   ArmsCo00
#> 1053    27615        9710   8722   GainPh00
#> 1054    27103        9216  10726   WillBr07
#> 1055    31213       13012  49454   CrosKe00
#> 1056    30137       12011  11779   ConlGa00
#> 1057    29340       11141  10740   MurrEr00
#> 1058    31652       13189  51146   MoorA.00
#> 1059    32889       14474  55967   StonGe00
#> 1060    31156       12990  50152   MartJa02
#> 1061    31993       13791  50612   OmenCh00
#> 1062    30255       11951  11897   WatkCa00
#> 1063    24798        7323   6163   WattJ.00
#> 1064    32709       14406  44526   BlacRo00
#> 1065    31027       12728  31211   HallP.00
#> 1066    24805        7463   6170   LiugCo00
#> 1067    29366       11056  10766   HenrWi00
#> 1068    30201       11948  11843   VandEd00
#> 1069    33156       14853  79271   AlufAu00
#> 1070    31950       13856  44959   FrohHj00
#> 1071    25861        8305   7144   KeleSe00
#> 1072    27721        9451   8828   FultZa00
#> 1073    29792       11031     NA   FairKa01
#> 1074    30799       12410  24304   ColeDy00
#> 1075    32266       14103  39043       <NA>
#> 1076    28431       10354   9476   McKiBe00
#> 1077    32206       13860  51497   HallNa01
#> 1078    31184       12964  50089   KalaPe00
#> 1079    30170       11965  11812   CunnZa00
#> 1080    25736        8134   7031   MercWh00
#> 1081    29111       10835  10140   AdamTy00
#> 1082    32760       14550  48407   GreeJo04
#> 1083    31146       12933  39256   EjioDu00
#> 1084    31356       13090  50893   ElleEm00
#> 1085    29807       11474  11169   ScarBr00
#> 1086    28541       10359   9586   EmanKy00
#> 1087    30632       12562     NA       <NA>
#> 1088    24662        7107   5800   WeekJo00
#> 1089    27835        9817   9262   DunnBr00
#> 1090    31128       12865  49636   BrowAn05
#> 1091    25780        8251   7072   AngeBr00
#> 1092    30125       11712  11767   WatsDe00
#> 1093    27692        9319   8799   McCaA.00
#> 1094     5967        2513   1085   McCoJo01
#> 1095    31457       13135  45691   HillDo00
#> 1096    31537       13185  12888   HoweGr00
#> 1097    28474       10148   9519   JohnDa08
#> 1098    33161       14659  83711   PhilSc01
#> 1099    28465       10084   9510   JohnDu00
#> 1100    32052       13988  38844   GillCu00
#> 1101    26265        8825   7279       <NA>
#> 1102    31038       12606  49048   ReidJu00
#> 1103    27864       10144   8921   QvalBr01
#> 1104    31855       13743  25472   HowaTy00
#> 1105    30273       11800  11915   JohnRo06
#> 1106    31887       13811  46961   SchaMa01
#> 1107    29247       10964  10647   TunsLa00
#> 1108    32796       14667  36501   HeckCh00
#> 1109    33119       14921     NA       <NA>
#> 1110    31068       12568  47050   AkinJo00
#> 1111    30627       11887  12247   BrowPh01
#> 1112    26612        9758   8549   FellDa01
#> 1113    31918       13478  37213   WarrKa00
#> 1114    24851        7256   6216   CobbRa00
#> 1115    31391       12951  47508   MitcSt02
#> 1116    30254       11702  11896   HansCh00
#> 1117    31073       12484  47698   CoutKe00
#> 1118    31148       12989  48182   RatlDa00
#> 1119    32841       14537  55307   CoulIs00
#> 1120    31103       12811  48316   MoorJM00
#> 1121    29255       10818  10655   FullWi01
#> 1122    30432       11722  12044       <NA>
#> 1123    27548        9260   8655   CookBr00
#> 1124    29252       11089  10652   KellRy00
#> 1125    29449       11235  10849   HuntJo00
#> 1126    31153       12552  38935   JoneSa00
#> 1127    27747       11514   8853   CarrTr00
#> 1128    32552       14267  51405   TeamRo00
#> 1129    31166       12994  28196   SmitTr04
#> 1130    31866       13474  49564   Ya-SRo00
#> 1131    31080       12527  28495   NelsNi00
#> 1132    26648        8637   7806   RhodXa00
#> 1133    32463       14216     NA   ChesAn00
#> 1134    32881       14828  27069   RodgIs00
#> 1135    30669       12431  51596   MoorKe03
#> 1136    31976       13764  49217   TellMa00
#> 1137    31573       12922  51194   ChacAn00
#> 1138    28503       10404   9548   CampIb00
#> 1139    33234       14939     NA       <NA>
#> 1140    32755       14704  49434   BlacJu01
#> 1141    31373       13094  31342   OdumGe00
#> 1142    30128       11695  11770   HookMa00
#> 1143    31034       12800  48475   LewiTy00
#> 1144    28266        9746   8982   AutrDe00
#> 1145    31022       12799  21702   TuraKe00
#> 1146    24857        7476   6222   HousJu00
#> 1147    30309       11930  11951   MuhaAl00
#> 1148    31881       13761  26554   BanoBe00
#> 1149    33220       15025     NA       <NA>
#> 1150    33212       15021  28668   ClinKa00
#> 1151    31526       13170  48935   StalTa00
#> 1152    32863       14613  28310   WindRo01
#> 1153    29241       10925  10641   BuckDe00
#> 1154    28522       10276   9567   GlowMa00
#> 1155    30976       12503  12954   NelsQu00
#> 1156    32819       14691  47339   PintDa00
#> 1157    30371       12599  12204   EldrJa00
#> 1158    33211       14437     NA   BlanRo03
#> 1159    31006       12845  49684   LeonDa00
#> 1160    31191       13000  38526   AdamMa00
#> 1161    30274       11983  11916   WalkAn01
#> 1162    25850        8317   7137   GoodNa00
#> 1163    31372       12967  21605   MoorSk00
#> 1164    31921       13782  50954   OkerBo00
#> 1165    32883       14799     NA   GlasJo00
#> 1166    31163       12924  49825   CoviCh01
#> 1167    31996       13984  94351   SpeeEJ00
#> 1168    31205       13010  49834   FranZa00
#> 1169    29588       11414  10940   RhodLu00
#> 1170    30257       12202  11899   StewGr00
#> 1171    30597       12496     NA       <NA>
#> 1172    30534       12390     NA   SancRi00
#> 1173    27219        8903   8242   AlleRy01
#> 1174    29325       10919  10725   BrisJa00
#> 1175    30366       12225  12008   KellCh00
#> 1176    32792       14401     NA       <NA>
#> 1177     6763        3766   1725   RivePh00
#> 1178    31074       12630  48103   HineNy00
#> 1179    31139       12942  26618   WilkJo01
#> 1180    33098       14565     NA       <NA>
#> 1181    32711       14455  57488   TaylJo02
#> 1182    30256       11765  11898   MackMa00
#> 1183    29383       10804  10783   PerkPa00
#> 1184    29450       11190  10850   JackDa01
#> 1185    31941       13760  51304   WillKh00
#> 1186    25758        8209   7051   WilsTa00
#> 1187    29933       11374  11303   MillRo03
#> 1188    29316       10974  10716   ClarLe01
#> 1189    33216       15022     NA       <NA>
#> 1190    24809        7432   6174   CastAn00
#> 1191    32611       13917     NA       <NA>
#> 1192    30270       11797  11912   HoldWi00
#> 1193    28479       10278   9524   GreeCh02
#> 1194    31007       12937  46794   SmitBr06
#> 1195    31618       13300  46887   NkanEl00
#> 1196    24194        6794   5741   WebbJM20
#> 1197    31181       12697  42062   ThomJo05
#> 1198    31325       12693  47198       <NA>
#> 1199    27299        9081   8520   DoylJa00
#> 1200    30112       12196  12078   AlieMo00
#> 1201    32970       14843  47282   TogiNo00
#> 1202    27789        9490   9185   BurtTr01
#> 1203    33214       14908  47033   GreeFa00
#> 1204    32882       14643  48329   PatmDe00
#> 1205    31891       13525  47940   CampPa00
#> 1206    33215       15020  84418       <NA>
#> 1207    28547       10244   9592   NelsJJ00
#> 1208    31129       12672  48181   FounDa00
#> 1209    32292       13854  91479   DuliAs00
#> 1210    31952       13635  48331   JennGa00
#> 1211    30502       11868  12303   PascZa00
#> 1212    25802        8098   7092   HiltT.00
#> 1213    32704       14378  29049   PittMi01
#> 1214    29362       10911  10762   BoehEv00
#> 1215    26635        8879   7793   HaydDJ00
#> 1216    30477       12406  12068   MabiGr00
#> 1217    27041        9135   8334   MelvRa00
#> 1218    32145       14155  50353   MeadNa00
#> 1219    32102       15221  51088   WatsBr01
#> 1220    32807       14413  55634   ScotJo00
#> 1221    30156       11905  11798   JoneSi00
#> 1222    33115       14950  83079   BarcLu00
#> 1223    31270       12614  38566   MeekQu00
#> 1224    32679       14367  55593   HendCJ00
#> 1225    32893       14829  76692   ClayCh02
#> 1226    31262       13040  50380   HernTr00
#> 1227    32105       13768  49268   WingAn01
#> 1228    29798       11459  11262   MiddDo01
#> 1229    33002       14810     NA   NursJo00
#> 1230    29297       11044  10697   GotsAd00
#> 1231    29727       11445  11147   GilbRe01
#> 1232    31839       13642  50235   AlleJo03
#> 1233    32690       14523  57945   ChaiKL00
#> 1234    30181       11942  11823   SmooDa00
#> 1235    28504       10455   9549   GuntRo00
#> 1236    26887        8723   8159   McCrLe01
#> 1237    24098        6714   5646   WoodAl99
#> 1238    31454       13142  48874   EkuaDa00
#> 1239    30999       12470  48753   BryaTa00
#> 1240    27104        9107   8177   JoneAb00
#> 1241    33122       14951  44473   CostDo00
#> 1242    27686        9395   8793   ReidCa00
#> 1243    30802       12455  51592   RossDa02
#> 1244    28501       10321   9546   WrigGa00
#> 1245    24998        7505   6363   MillBr02
#> 1246    27880        9971   9257   ShatTy00
#> 1247    28455       10267   9500   CannA.00
#> 1248    27942        9449   9126   NorwAn01
#> 1249    27621        9443   8728   LindBr00
#> 1250    33145       14959     NA   WallTr01
#> 1251     9066        5935   4655   HausSt00
#> 1252    29915       11738     NA       <NA>
#> 1253    28685       10438  10133   LambJo00
#> 1254    29949       11403  11331   RosaAl00
#> 1255    32911       14755  38876   RussCh00
#> 1256    32810       14747  51048   QuarSh00
#> 1257    29333       10968  10733   SchoJo00
#> 1258    31930       13982  49779   WillQu01
#> 1259    32091       13492  39382   GileJo01
#> 1260    32083       13831  30076   AlleDa01
#> 1261    29276       10982  10676   CorrKa00
#> 1262    31200       12723  44980   JacoLe00
#> 1263    29270       11064  10670   JackMy00
#> 1264    33125       14412     NA       <NA>
#> 1265    27678        9345   8785   LyncAa00
#> 1266    33129       14956  34710   MatiRo00
#> 1267    32743       14714  28072   HamiDa02
#> 1268    32067       13542  48638   RussDo00
#> 1269    32650       14348     NA   NiziCa00
#> 1270    31216       13013  29214   CookLo00
#> 1271    32859       14562  17287   LutoJa00
#> 1272    26696        8745   7854   GlenMi00
#> 1273    32010       13741  41401   MinsGa00
#> 1274    32390       13624  45903   OzigDe01
#> 1275    31972       13473  45810   ArmsRy00
#> 1276    26777        8773   7936   ThomCh03
#> 1277    33123       14773  45980   CottNa00
#> 1278    33138       14660  22425   RobiJa00
#> 1279    32596       13960  94383   ReynCr00
#> 1280    30860       11768  12329   OgunDa00
#> 1281    29514       11483  10902   WilsJa00
#> 1282    32827       14687  42544   ThomDa07
#> 1283    30174       11998  11816   JoneJo06
#> 1284    32574       14272     NA   McGhGa01
#> 1285    32786       14544  84236   BartBe00
#> 1286    31269       12687  29035   McDeKC01
#> 1287    31099       12635  46980   RichWi01
#> 1288    32051       13857  46335   GrayDe01
#> 1289    30147       11815  11789   RobiCa00
#> 1290    33133       14958     NA       <NA>
#> 1291    31867       13480  41665   TaylJa02
#> 1292    30287       11897  11929   SaubEr00
#> 1293    28561       10249   9606   O'ShJa00
#> 1294    31400       13102  47298   FlanMa00
#> 1295    26644        8782   7802   EifeTy00
#> 1296    33124       14864  27766   ElleBe00
#> 1297    32876       14827  47743   DaviTy02
#> 1298    31901       13786  47083   OlivJo00
#> 1299    32069       13619  47946   GodwTe00
#> 1300    30396       12388  51593   ColeKe00
#> 1301    32101       14005  48213   WalkMi00
#> 1302    32471       14214  61737   WillDa11
#> 1303    33127       14784     NA       <NA>
#> 1304    30223       11808  11865   WestDe00
#> 1305    32712       14358  61220   ShenLa00
#> 1306    31031       12820  47702   CharDJ00
#> 1307    28464       10210   9509   ConlCh00
#> 1308    30526       11862  12125       <NA>
#> 1309    32835       14545  47808   JohnCo01
#> 1310    24950        7614   6315   KilgDa00
#> 1311    32951       14695     NA       <NA>
#> 1312    28610       10494   9655   ReitAu00
#> 1313    29957       11518  11353   HamiAn01
#> 1314    32609       14316  28605       <NA>
#> 1315    27630        9648   8737   BreeBa00
#> 1316    32907       14579  43467   KeyeTh00
#> 1317    32808       14688  40588   SneeLJ00
#> 1318    32033       13703  49329   FentRa00
#> 1319    31359       13017  49368   LammCh00
#> 1320    31293       13257  43034   WardCh01
#> 1321    31862       13475  33356   BakeDe00
#> 1322    31895       13824  50426   ThorJu00
#> 1323    28036        9680   9253   SoreDa01
#> 1324    32955       14700     NA       <NA>
#> 1325    26726        8656   7885   OkafAl00
#> 1326    32351       14153  48467   WardTi00
#> 1327    30141       11908  11783   CharTa00
#> 1328    28451       10322   9496   ClarFr01
#> 1329    31256       13285  48452   HarrDe06
#> 1330    30172       11924  11814   KpasTa00
#> 1331    32847       14823  48415   DannMi00
#> 1332    33052       14997  89210   EdwaAu00
#> 1333    31916       13746  31534   SaunKh00
#> 1334    33203       15003     NA       <NA>
#> 1335    32952       15077  40292   WharTe00
#> 1336    29271       11074  10671   JoneCh09
#> 1337    28205        9964   8995   WitzBr00
#> 1338    25770        8210   7062   OsemKe00
#> 1339    24835        7441   6200   WisnSt01
#> 1340    27728        9770   8834   DuveLa00
#> 1341    27216        9182   8277   OmamPa00
#> 1342    32048       13682  39268   AlleNi00
#> 1343    30346       11783  11988   ButkHa00
#> 1344    31070       12847  51487   ODanDo00
#> 1345    32733       14520  57987   GayJWi00
#> 1346    28515       10374   9560   WilsDa02
#> 1347    27647        9643   8754   HitcAn00
#> 1348    31495       13179  51099   NiemBe00
#> 1349    31354       13063     NA   SmitEm01
#> 1350    32359       14180  29188   HarrDa07
#> 1351    32953       15075  42867   CobbOm00
#> 1352    27494       10606   8580   WincJa00
#> 1353    28085        9661   9316   PennMi00
#> 1354    31045       12971  49970   NnadDe00
#> 1355     7275        4442   2316   ColqDu20
#> 1356    32960       14574  33007   TownTo01
#> 1357    30123       11839  11765   MahoPa00
#> 1358     8544        5432   4018   MoorMa01
#> 1359     8834        5685   4371   HennCh01
#> 1360    32642       13629  60453       <NA>
#> 1361    28115        9644   9205   WillDa05
#> 1362    24923        7560   6288   SherAn00
#> 1363    32046       13476  83791   ThomDa06
#> 1364    30301       11766  11943   McGuEl00
#> 1365    31500       12839  13014   WillDa10
#> 1366    26671        8617   7829   BellLe00
#> 1367    32702       14514  57279   EdwaCl00
#> 1368    31094       12781  51264   WattAr00
#> 1369    26692        8593   7850   MathTy00
#> 1370    25983        9180   7431   RemmMi00
#> 1371    30518       12609  12333   WyliAn00
#> 1372    26624        8727   7783   FishEr00
#> 1373    32766       14534     NA   NianLu00
#> 1374    32949       14664  59878   DuraYa01
#> 1375    31050       12885  46333   RankMa00
#> 1376    25747        8205   7041   SchwMi00
#> 1377    32880       14449     NA   WanoTe00
#> 1378    31519       13022  29556   YeldDe00
#> 1379    30494       11876  12020   SealRi00
#> 1380    26686        8783   7844   KelcTr00
#> 1381    30420       12405  12037   CulkSe00
#> 1382    30795       12308  23652   BaylEv00
#> 1383    31427       13126  66940   KeizNi00
#> 1384    29360       11163  10760   RobiDe01
#> 1385    32944       14943     NA       <NA>
#> 1386    29374       11003  10774   SharTa00
#> 1387    27532        9249   8639   WatkSa00
#> 1388    30211       12113  11853   WillCh05
#> 1389    32600       14306  94384   FortJo01
#> 1390    31075       12468  48101   CallAn00
#> 1391    31888       13532  42683   HardMe00
#> 1392    30679       12184  12163   DietGe00
#> 1393    31496       12504  42345   PrinBy00
#> 1394    29399       11222  10799   HillTy00
#> 1395    30682       12446  12137   KempMa00
#> 1396    29482       10909  10882   BlytAu00
#> 1397    31081       12656  46104   AlleBr02
#> 1398    28972       10423   9881   HillTr01
#> 1399    31911       13508  27377   LongDa02
#> 1400    29846       11528  11242   DeayDo01
#> 1401    29239       11111  10639   RamsJa00
#> 1402    31422       13132  55724   WillDa09
#> 1403    33296       15130  49545   HughJu00
#> 1404    30204       11997  11847   JohnJo10
#> 1405    32075       13958  49012   ScotNi01
#> 1406    32869       14698  45326   FullJo01
#> 1407    33135       14689     NA       <NA>
#> 1408    33257       15089     NA       <NA>
#> 1409    30196       11938  11838   RiveDe00
#> 1410    29714       11571  11184   FoxxMo00
#> 1411    33263       14980     NA   WillJo10
#> 1412    25724        8152   7020   BrocMi00
#> 1413    33247       15015     NA   BankEr00
#> 1414    27541        9391   8648   DonaAa00
#> 1415    29280       11162  10680   RobiAS00
#> 1416    33252       15087     NA   HoecMi00
#> 1417    32130       14014  38540   CopeMa01
#> 1418    31162       12890  31982   DembJa00
#> 1419    31390       13413  46167       <NA>
#> 1420    31059       12848  46249   NoteJo00
#> 1421    32001       13497  35941   EdwaDa01
#> 1422    31003       12853  46290   CorbAu00
#> 1423    31393       12701  39316   ShelCo00
#> 1424    25648        7544   6860   ForbKa00
#> 1425    32667       14354     NA       <NA>
#> 1426    31977       13673     NA   GayxMa00
#> 1427    31092       12689  51029   YounKe03
#> 1428    32665       14497     NA   MoncDe00
#> 1429    32135       14013  38268   ReedTr01
#> 1430    31130       12788  50130   OkorOg00
#> 1431    29243       11034  10643   FloyLe00
#> 1432    31117       12846  50879   KiseMi00
#> 1433    31214       12716  50592   LawlJu00
#> 1434    31988       13773  48498   HollJu00
#> 1435    30238       12201  11880   EbukSa00
#> 1436    33261       15090     NA       <NA>
#> 1437    32754       14390  42845   LewiTe00
#> 1438    31900       13493  44383   PoliJa00
#> 1439    31201       13008  50959   HowaTr00
#> 1440    33193       14611     NA       <NA>
#> 1441    30326       12213  11968   HolbCo00
#> 1442    25549        7990   6586   McQuJa00
#> 1443    31966       13802  48706   GainGr00
#> 1444    31165       12993  49935   JoseSe00
#> 1445    33149       14954     NA   WrigBr00
#> 1446    26350        8381   7252   HekkJo00
#> 1447    31803       13403  46454   WolfJo00
#> 1448    32581       13566  29838   HodgDe00
#> 1449    27531        9277   8638   BortBl00
#> 1450    33258       14429     NA       <NA>
#> 1451    29235       10729  10635   GoffJa00
#> 1452    32722       14383  57206   AkerCa00
#> 1453    32915       14625     NA   CalaRa00
#> 1454    33297       14925     NA   JoneXa00
#> 1455    31902       13450  41193   HendDa00
#> 1456    28990       10202   9902   BrowMa03
#> 1457    31893       13507  51172   RappTa00
#> 1458    32603       14310  49103   GervJa00
#> 1459    32774       14702  45255   BurgTe00
#> 1460    28445       10270   9490   HaveRo00
#> 1461    32126       14016  13976   BrewCh01
#> 1462    32920       14606  41813   AnchTr00
#> 1463     7804        5005   3000   WhitAn20
#> 1464    31929       13574  36800   EvanBo00
#> 1465    30157       11737  11799   EverGe00
#> 1466    32806       14586  47338   HopkBr01
#> 1467    29344       10854  10744   HigbTy00
#> 1468    32125       13711  47311   BlanKe01
#> 1469    30373       12316  12206   MundJo00
#> 1470    26664        8628   7822   WoodRo02
#> 1471    32727       14430  47447   JeffVa00
#> 1472    33253       14402     NA       <NA>
#> 1473    33254       14926     NA       <NA>
#> 1474    30182       11863  11824   KuppCo00
#> 1475    30230       11871  11872   ReynJo00
#> 1476    32137       14012  48107   WebsNs00
#> 1477    24802        7548   6167   PounMi00
#> 1478    29404       10961  10804   ToneCo00
#> 1479    31810       13555  91247   CampTe00
#> 1480    31676       12669  50564   FacyBr00
#> 1481    30422       12357  12040   DaviMi03
#> 1482    25772        8172   7064   HaywCa00
#> 1483    25189        7924   6457   HarrCh01
#> 1484    31892       13668  33880   AddeNa00
#> 1485    26917        9105   8117   AddaJa00
#> 1486    32976       15079  43000   BranJo00
#> 1487    32992       15086     NA       <NA>
#> 1488    30987       12464  51368   JameDe00
#> 1489    32985       15083  82302   LemoJe00
#> 1490    29237       10914  10637   BosaJo00
#> 1491    25728        8133   7024   IngrMe00
#> 1492    30338       11939  11980   RochIs00
#> 1493    32982       15065  27949   GaziJo01
#> 1494    31018       12844  50084   NwosUc00
#> 1495    31860       13757  49949   TillJe00
#> 1496    32991       14770     NA       <NA>
#> 1497    31054       12785  48940   JoneJu03
#> 1498    32074       13706  38524   BrouCo00
#> 1499    30184       11793  11826   FeenDa00
#> 1500    31125       12797  23918   QuesSc00
#> 1501    32983       15082     NA       <NA>
#> 1502    27836        9448   9221   GroyRy00
#> 1503    27620        9357   8727   TurnTr01
#> 1504    30151       11801  11793   LampFo00
#> 1505    31488       13175  46904   HuntRy00
#> 1506    31366       12775     NA   BadgMi00
#> 1507    31962       13814  51276   TranDr00
#> 1508    31048       12506  50884   JeffMa00
#> 1509    31089       12787  44485   WhitKy00
#> 1510    32693       14434  58099   MurrKe00
#> 1511    29321       10948  10721   VigiNi00
#> 1512    28436       10356   9481   PerrDe00
#> 1513    32977       15080  43856   ChriCo00
#> 1514    32032       13855  45378   EgbuEm00
#> 1515    30539       12434  12097   BellB.00
#> 1516    31827       13938  22508   MazzCo01
#> 1517    24021        6681   5571   JoseLi99
#> 1518    27056        9118   8042   SquaDa00
#> 1519    32980       15081  49589   FehoBr01
#> 1520    29469       11027  10869   EdwaLa01
#> 1521    28861       10849   9728   LongTy00
#> 1522    24967        7357   6332   TaylTy00
#> 1523    31998       13627  29466   SticEa00
#> 1524    32676       14446  28237   HerbJu00
#> 1525    32782       14494  13750   KellJo01
#> 1526    30423       12401  12164   EkelAu00
#> 1527    32975       14919     NA   BradDa00
#> 1528    30061       11642  11473   PopeTr00
#> 1529    31100       12786  45741   BallKa00
#> 1530    32987       15093  40117   NabeGa00
#> 1531    31221       12724  29539   JackJu01
#> 1532    32856       14521  41662   GilmAl00
#> 1533    27629        9366   8736   WatkJa01
#> 1534    30226       11994  11868   JenkRa00
#> 1535    30303       11821  11945   TeviSa00
#> 1536    31923       13659  91462   PipkTr00
#> 1537    30772       12437  12188   NortSt00
#> 1538    23998        6540   5548   BulaBr20
#> 1539    32232       13684  46252   StLoTy01
#> 1540    29269       10735  10669   HenrHu00
#> 1541    32456       13602  91014   ParhDo00
#> 1542    24991        7416   6356   GreeVi00
#> 1543    32551       13686  47123   SokoMa00
#> 1544    29789       10885  11160   AndeSt01
#> 1545    33295       14877     NA       <NA>
#> 1546    32511       13615  34427   JohnTy03
#> 1547    32547       13999  91472       <NA>
#> 1548    26699        8627   7857   AlleKe00
#> 1549    32890       14414  28025   HillKJ00
#> 1550    32978       14922     NA       <NA>
#> 1551    32821       14428  40221   ReedJo03
#> 1552    32201       13575  34164   GuytJa01
#> 1553    30120       11885  11762   WillMi07
#> 1554    30561       12436  12280   MagnEr00
#> 1555    24842        7439   6207   HudsRo00
#> 1556    32345       13652  47058   JameAn01
#> 1557    32348       13701  56167   NixoKe00
#> 1558    32809       14709  55619   RobeAm00
#> 1559    27569        9327   8676   JoynLa00
#> 1560    29412       10896  10812   WhitD.00
#> 1561    29311       10941  10711   WorlDa00
#> 1562    32689       14547  28080   ArneDa00
#> 1563    30664       12421  49453       <NA>
#> 1564    31872       13572  41968   MullTr00
#> 1565    31961       13793  48233   JohnIs02
#> 1566    27661        9612   8768   LawsNe00
#> 1567       NA       14941     NA       <NA>
#> 1568    33318       14902  28987   WhitJa04
#> 1569    31723       13318  49120   LeavDa00
#> 1570    29224       10858  10346   HarrEr00
#> 1571    29299       11142  10699   NassCa00
#> 1572    30778       12312  12194   ValoJe00
#> 1573    29096       10341  10063   IrviDa00
#> 1574    30139       11928  11781   McKiTa00
#> 1575    27687        9409   8794   SmitCh03
#> 1576    31836       13649  25955   FerrCl00
#> 1577    31057       12545  50201   KeyxAr00
#> 1578    31938       13459  26316   CrosMa00
#> 1579    32031       13818  50228       <NA>
#> 1580    26649        8660   7807   JoneDa03
#> 1581    31110       12878  38563   HursMa00
#> 1582    26672        8669   7830   HankJo00
#> 1583    31420       14560  48993   VickKe00
#> 1584    29301       10976  10701   CollMa00
#> 1585    32344       13806  34934   IngoAl01
#> 1586    28643       10512   9688   GoodDe01
#> 1587    27609        9437   8716   JackGa00
#> 1588     7257        4532   2298   IncoRi20
#> 1589    32341       14114  46085   CottLe00
#> 1590    32779       14626  41715   SimpJo00
#> 1591    33352       14903     NA       <NA>
#> 1592    31137       12842  28121   CarlDa00
#> 1593    28396        9261   9441   BeasVi00
#> 1594    30633       12428  51674   MorrNi00
#> 1595    29347       11098  10747   KwiaNi00
#> 1596    32770       14690     NA       <NA>
#> 1597    30167       11977  11809   McMiRa02
#> 1598    29718       11113  11190   LittCo01
#> 1599    25823        8224   7113   WilbKy00
#> 1600    30296       12207  11938   EligUk00
#> 1601    30428       12356  12039   OnwuJa00
#> 1602    31251       13128  27036   SiegTr00
#> 1603    31334       13423  66935   ScotNi00
#> 1604    32386       14171  36038   ColeAJ01
#> 1605    27564        9317   8671   CarrDe02
#> 1606    30822       12363  12180       <NA>
#> 1607    30284       11840  11926   PeteNa00
#> 1608    28390       10074   9435   MariMa01
#> 1609    29370       10913  10770   BookDe00
#> 1610    31856       13582  45953   JacoJo01
#> 1611    30000       11522  11395   RichJa01
#> 1612    26822        8763   7980   RiddTh00
#> 1613    27345        9064   8396   HeatJe00
#> 1614    31055       12550  51241   GaulRa00
#> 1615    31859       13546  34646   AbraJo01
#> 1616    31035       12852  34693   ParkBr01
#> 1617    33326       15145     NA       <NA>
#> 1618    28632       10285   9677   BrowTr02
#> 1619    31583       12679  46843   JoneJa09
#> 1620    30985       12526  47013   MillKo00
#> 1621    24155        6756   5702   YounSa21
#> 1622    33315       14869     NA       <NA>
#> 1623    28582       10250   9627   OLeaNi00
#> 1624    28592       10215   9637   WallDa01
#> 1625     6405        3086   1384   WittJa00
#> 1626    26416        9203   7406   CarrDe00
#> 1627    31969       13822  47043   MoreFo00
#> 1628    31404       13100     NA       <NA>
#> 1629    30322       11853  11964   DaviRo00
#> 1630    32682       14473  61102   RuggHe00
#> 1631    31226       12493  38276   QuinTr00
#> 1632    28691       10552  10154   WillTy00
#> 1633    30150       11751  11792   JoneZa00
#> 1634    29791       10998  11259   MarsJa01
#> 1635    31981       13749  47509   RenfHu00
#> 1636    31198       12825  23670   AtemMa00
#> 1637    32751       14577  28486   EdwaBr01
#> 1638    28408       10132   9453   AghoNe00
#> 1639    32342       13479  48143   DossKe00
#> 1640    30418       12450  12227   TomxCa00
#> 1641    32229       14087  46788       <NA>
#> 1642    31910       13581  38554   DeitMi00
#> 1643    29455       11238  10855   KarrTe00
#> 1644    30716       12930  12259   WiltJo01
#> 1645    28415       10412   9460   JoneBy00
#> 1646    28637       10509   9682   KingAk00
#> 1647    32700       14713  61155   IgbiNo00
#> 1648    32443       14077  50356   NeedNi00
#> 1649    29272       11061  10672   HowaXa00
#> 1650    28533       10422   9578   McCaBo01
#> 1651    32740       14696  43049   JoneBr06
#> 1652    32919       14620     NA       <NA>
#> 1653    29446       11036  10846   FrazKa00
#> 1654       NA       14721     NA       <NA>
#> 1655    31754       15178  51427   HollNa00
#> 1656    33111       14961     NA       <NA>
#> 1657    31208       13011  66917   SielZa00
#> 1658    33320       14398     NA       <NA>
#> 1659    33243       15029     NA   RendTy00
#> 1660    31845       13758  50293   WilkCh00
#> 1661    29266       11155  10666   OgbaEm00
#> 1662    32824       14730  48547   StroJa02
#> 1663    32440       13787  18645   LedbJo01
#> 1664    31823       13932  92926       <NA>
#> 1665    33239       14715  44035   JoneBe03
#> 1666    32459       13939  49948       <NA>
#> 1667    32065       13991  45629   CoxxCh01
#> 1668    30616       12073  12114   PankAd00
#> 1669    28397       10263   9442   FlowEr00
#> 1670    32781       14476  41471   KindSo00
#> 1671    31199       13007  29578   SandJa00
#> 1672    31983       13887  30267   VanGAn00
#> 1673    29253       11106  10653   LawsSh00
#> 1674    30221       11959  11863   BiegVi00
#> 1675    29442       11233  10842   GrugKa00
#> 1676    30736       12383  12236   MunsCa00
#> 1677    27568        9262   8675   VanNKy00
#> 1678    31815       13561  15301   EguaSa00
#> 1679    33238       14891     NA       <NA>
#> 1680    31043       12596  28091   BakeJe00
#> 1681    29448       11234  10848   RobeEl00
#> 1682    30622       12422  51589   PaynDo00
#> 1683    33361       15170     NA       <NA>
#> 1684    32855       14651  35517   FergBl00
#> 1685    32726       14538  44582   DaviRa03
#> 1686    30291       11916  11934   GodcDa00
#> 1687    30641       12402  12212   HaacMa00
#> 1688    29425       11228  10825   RudoJa00
#> 1689    32675       14465  60326   TagoTu00
#> 1690    33279       14846     NA       <NA>
#> 1691     7426        4385   2467   FitzRy00
#> 1692    32439       13913  28219   LairPa00
#> 1693    33265       14453  57472   AhmeSa01
#> 1694    30552       12289  12271   BreiMa00
#> 1695    32066       13505  45914   GaskMy00
#> 1696    32916       14504  46513   PerrMa00
#> 1697    29377       10893  10777   WashDe00
#> 1698    31986       13510  39258   ScarJo00
#> 1699    32750       14460  61361   BowdLy00
#> 1700    29479       11244  10879   FejeCl00
#> 1701    28435       10416   9480   RoweEr00
#> 1702    32708       14589  46139   HuntRo01
#> 1703    33237       15026     NA       <NA>
#> 1704    30243       11787  11885   DaveJu00
#> 1705    32688       14513  60816   JackAu00
#> 1706    28709       10802   9989   DaviJe00
#> 1707    31093       12807  47257   SmytDu00
#> 1708    30158       11898  11800   ShahAd00
#> 1709    32442       14282  47358   MyarCh00
#> 1710    31012       12764  47153   GesiMi00
#> 1711    28046        9491   8943   WilsAl02
#> 1712    33242       14861  35096   MerrKi00
#> 1713    30231       11861  11873   HollMa00
#> 1714    29420       10990  10820   GranJa00
#> 1715    28402       10152   9447   ParkDe01
#> 1716    27874        9485   8931   HurnAl01
#> 1717    30430       12539  12043   PattAn00
#> 1718    30350       11717  11991   FordIs00
#> 1719    32447       13445  38855   WillPr01
#> 1720    31850       13785  46013   BradGa00
#> 1721    28376       10667  10247   JoneBr04
#> 1722    32759       14363  42472   DantCa00
#> 1723    31000       12590  34057   HughMi00
#> 1724    32839       14522  55576   HandHa00
#> 1725    32701       14548  50471   GladJe00
#> 1726    31233       12462  50414   HillHo00
#> 1727    32346       14116  51496   MabiDy00
#> 1728    30601       12598  12152       <NA>
#> 1729    31636       13196  49339       <NA>
#> 1730    30210       12033  11852   TankCo00
#> 1731    32092       14031  35173   HayeTa00
#> 1732    32049       13797  34222   BoydKr00
#> 1733    25877        8335   7159   IlokGe00
#> 1734    28838       10389   9895   HarrAn01
#> 1735    29062       10658  10109   RileCu00
#> 1736    33029       14598     NA       <NA>
#> 1737    32875       14479  43395   MeteJo00
#> 1738    33107       14907     NA       <NA>
#> 1739    30333       11932  11975   OdenIf00
#> 1740    28476       10318   9521   HuntDa01
#> 1741    31072       12812  48400   HolmJa01
#> 1742    29636       11432  11033   YarbEd01
#> 1743    31657       13237  32708   AndeAb00
#> 1744    32895       14732     NA       <NA>
#> 1745    32787       14612  44550   WonnDJ00
#> 1746    32800       14499  56962   LyncJa00
#> 1747    31235       12499  48931   MataHe00
#> 1748    30222       11921  11864   JohnJa09
#> 1749    29951       11599  11347   HamxC.00
#> 1750    32476       13441  46082       <NA>
#> 1751    31946       13794  45376   SamiDr00
#> 1752    27665        9438   8772   DoziDa00
#> 1753    32728       14518  41973   ClevEz00
#> 1754    32925       14838     NA       <NA>
#> 1755    25427        7546   6796   BailDa00
#> 1756    29712       11568     NA       <NA>
#> 1757    31538       13266     NA   JoseGr00
#> 1758    31994       13813  50739   SmitCa01
#> 1759    30583       11979  50712       <NA>
#> 1760    28433       10353   9478   KendEr00
#> 1761    33034       14906  47621   LyncBl00
#> 1762    30233       11972  11875   GedeBe00
#> 1763    30448       12360  38587   WilsEr00
#> 1764    31975       13847  49840   ConnRy00
#> 1765    27537        9247   8644   BarrAn00
#> 1766    32085       13435  29695   BraiJo00
#> 1767    28312        9998   9007   DaviTo01
#> 1768    32802       14740  28251   DyexTr00
#> 1769    32082       13993  41350   CuttAu00
#> 1770    26583        9967   7633   DePaAn00
#> 1771    27748        9400   8854   StepSh00
#> 1772    29759       11313  11101   PierMi00
#> 1773    32022       13776  27844   WattAr01
#> 1774     9769        7192   5192   ColqBr00
#> 1775    32138       13504  46401       <NA>
#> 1776    25812        8057   7102   CousKi00
#> 1777    32914       14566     NA       <NA>
#> 1778    28477       10176   9522   MannSe00
#> 1779    28442       10126   9487   AbduAm00
#> 1780    33021       15109  47044   BargJa00
#> 1781    31228       13067  31615   BoonMi00
#> 1782    30154       11700  11796   CookDa01
#> 1783    31934       13477  45817   MattAl01
#> 1784    25739        8202   7641   SmitHa00
#> 1785    29509       11470  11369   HillRa01
#> 1786    25733        8119   7029   ReifRi00
#> 1787    31032       12476  46854   ONeiBr00
#> 1788    32025       13645  28394   UdohOl01
#> 1789    32873       14825     NA   BranBl00
#> 1790    32142       14001  91468   DillBr00
#> 1791    24830        7246   6195   RudoKy00
#> 1792    31882       13583  42060   SmitIr01
#> 1793    32295       14094  47150   HentHa00
#> 1794    31127       12809  47124   ConkTy00
#> 1795    31508       13164  21528   BeebCh00
#> 1796    32846       14641     NA   OsboKJ00
#> 1797    27277        8986   8288   ThieAd00
#> 1798    32079       13867  47882   JohnOl00
#> 1799    33023       14889     NA   ChisDa00
#> 1800    32692       14509  61398   JeffJu00
#> 1801    30330       11804  11972   LeviCo00
#> 1802    32900       14831     NA       <NA>
#> 1803    28195       10139   9258   FereJa00
#> 1804    28983       10674   9948   AndrDa00
#> 1805    27598        9434   8705       <NA>
#> 1806    25887        8306   7654   BethJu00
#> 1807    32223       14080  27732       <NA>
#> 1808    25720        8165   7016   GilmSt00
#> 1809    31990       13704  50437   JackMi01
#> 1810     9467        6221   5127   McCoJa99
#> 1811    29875       11081  11217   JoneJo03
#> 1812    31877       13482  29113   WillJo13
#> 1813    31650       12578  42781   JackJ.00
#> 1814    30794       12409  21515   VirgDe00
#> 1815    32710       14542  90621   DuggKy00
#> 1816    33319       14703  43336   BryaMy01
#> 1817    24002        6621   5552   McCoDe99
#> 1818    31726       13320  49607   ThurNi00
#> 1819    26752        8711   7911   SimoJo01
#> 1820    30244       11954  11886   WiseDe00
#> 1821    31909       13655  48523   WinoCh00
#> 1822    30427       11903  50170   BoweTa00
#> 1823    33322       14909     NA       <NA>
#> 1824    30655       12141  12214   ButlAd00
#> 1825    25020        7472   6385   GuyxLa00
#> 1826    33365       15180     NA       <NA>
#> 1827    26723        8676   7882   SpenAk00
#> 1828    31991       13753  50588   CowaBy00
#> 1829    29431       10947  10831   VitaDa00
#> 1830    31826       13931  32565   JohnJa12
#> 1831    28519       10292   9564   MasoSh01
#> 1832    32326       13961  46142       <NA>
#> 1833    32853       14674  27357   OnweMi00
#> 1834    30762       12435  12266   RoosJo00
#> 1835    31387       13417  46833   ToraNa00
#> 1836     8432        5365     NA   FolkNi20
#> 1837    32829       14822     NA       <NA>
#> 1838    29293       10878     NA   AguaRo00
#> 1839    32230       13861  51107   HallTe01
#> 1840    32757       14742  25449   JennAn00
#> 1841    28987       12194   9952   KingBr02
#> 1842    32874       14826  43524   MaluCa00
#> 1843    29309       10933  10709   CalhSh00
#> 1844    32730       14477  27379   UcheJo00
#> 1845    31113       12766  50966   BentJa00
#> 1846    25735        8201   7030   HighDo01
#> 1847    27259        9806   8378   CopeBr00
#> 1848    28554       10467   9599   CardJo00
#> 1849    28478       10313   9523   DaviCa01
#> 1850    27752        9779   8858   AlleBe00
#> 1851    31995       13817     NA   BailJa00
#> 1852    24788        7257   6153   NewtCa00
#> 1853     9547        6140   5277   HoyeBr00
#> 1854    32464       13925  61944       <NA>
#> 1855    31965       13438  13725   StidJa00
#> 1856    27658        9524   8765   WhitJa02
#> 1857    31001       12880  27589   MichSo00
#> 1858    26813        8765   7971   BurkRe00
#> 1859    31919       13636  35134   HarrDa06
#> 1860    26389        8077   7469   BoldBr00
#> 1861    33028       14459  25512   TaylJJ01
#> 1862     9298        6095   4957   ChunPa99
#> 1863    27105        9173   8458   DaviCo02
#> 1864    28303       10002   9177   PhilAd00
#> 1865    27607        9298   8714   BrooTe00
#> 1866    32865       14554  46271   HerrJu00
#> 1867    31933       13763     NA       <NA>
#> 1868    31224       13015  38555   CunnKo00
#> 1869    30272       11792  11914   ElueJe00
#> 1870    29312       10960  10712   ThunJo00
#> 1871    24925        7438   6290   CannMa00
#> 1872    29382       10906  10782   BeneCa00
#> 1873    30993       12855  46048   WynnIs00
#> 1874    31283       12692  34985       <NA>
#> 1875    32771       14559  61068   KeenDa00
#> 1876    28875       10727   9840   LaCoMa00
#> 1877    32761       14425  40294   AsiaDe00
#> 1878    31220       12529  47327   IzzoRy00
#> 1879    33026       14930     NA       <NA>
#> 1880    33024       14851  28071   BerrRa01
#> 1881    30512       11845  12085   AdebQu00
#> 1882    28730       10524   9964   ByrdDa00
#> 1883    32231       13517  47468   MeyeJa01
#> 1884    33020       14862  26884   ZubeIs00
#> 1885     9496        6141   5156   EdelJu00
#> 1886    28425       10209   9470   SmitDe04
#> 1887    31625       13302  47687       <NA>
#> 1888    32612       14318  95015   OlszGu00
#> 1889    33349       15163  28729   WilkKr00
#> 1890    27618        9276   8725   MoncDo00
#> 1891     8930        5786   4467   SlatMa00
#> 1892    27567        9453   8674   LeexMa00
#> 1893    31864       13425  48297   HarrNK00
#> 1894    31215       12637  39386   ClapWi00
#> 1895    31880       13541  37347   McCoEr01
#> 1896    24007        6620   5557   RobiPa99
#> 1897    25749        8164   7043   JenkJa03
#> 1898    31555       12675  50473   HaleGr00
#> 1899    30124       12023  11766   LattMa01
#> 1900    30811       12442  18348   HardJu01
#> 1901    29842       10986  11224   CrawKe02
#> 1902    26366        8562   7374   BadeJo00
#> 1903    28466       10409   9511   WillP.00
#> 1904    30155       12199  11797   WillMa06
#> 1905    33121       14964     NA       <NA>
#> 1906    26680        8690   7838   SweaDJ00
#> 1907    29696       11601  11409   LaniAn00
#> 1908    27616        9411   8723   ClarWi00
#> 1909    30216       11919  11858   HendTr00
#> 1910    29273       11180  10673   SpenNo00
#> 1911    24811        7447   6176   JordCa00
#> 1912    30984       12863  50291   DaveMa00
#> 1913    32490       13784  48500   GranCa01
#> 1914    33011       15136     NA       <NA>
#> 1915    33118       14726  50191   RoacMa01
#> 1916    32497       14286  37279   TuttSh00
#> 1917    32374       14164  27753       <NA>
#> 1918    30251       11915  11893   GlasRy00
#> 1919    29436       10887  10836   ZettAn00
#> 1920    29354       11219  10754   OnyeDa00
#> 1921    28598       10486   9643   RingCh00
#> 1922    29246       11112  10646   RankSh00
#> 1923    28420       10058   9465   BrowMa01
#> 1924    28556       10468   9601   BurtMi00
#> 1925    28401       10258   9446   PeatAn00
#> 1926       NA       14285  46090   KellDe01
#> 1927    32694       14468  59857   RuizCe00
#> 1928    27980        9424   9001   HursJa00
#> 1929    28950       10648   9861   EastNi00
#> 1930    25885        8177   7167   WalsBl00
#> 1931    29754       11309  11096   LutzWi00
#> 1932    32212       13765  51448   HansCh02
#> 1933    25787        8213   7079   DaviDe00
#> 1934    32744       14374  34632   BaunZa00
#> 1935    30189       11957  11831   AnzaAl00
#> 1936    25689        8531   7003   RobeCr00
#> 1937    32076       13953  51485   ElliKa00
#> 1938    28512       10360   9557   AlexKw00
#> 1939    32208       14067     NA   DoweAn00
#> 1940     7467        6999   2561   DennJo20
#> 1941    30015       11673  11414   WoodZa00
#> 1942    33112       14868     NA   GillBl00
#> 1943     9428        6301   5088   MorsTh00
#> 1944    28389       10037   9434   WinsJa00
#> 1945     5479        2178    802   BreeDr00
#> 1946    30614       12063  12112   HillTa00
#> 1947    28638       10483   9683   SiemTr00
#> 1948    28482       10216   9527   MontTy01
#> 1949    33114       14423  40498   JoneTo04
#> 1950    30180       11732  11822   KamaAl00
#> 1951    32493          NA     NA       <NA>
#> 1952    26804        8772   7962   MurrLa00
#> 1953    29470       10737  10870   WashDw00
#> 1954    31411       13106  51495   GrayJ.00
#> 1955     9278        6086   4937   JenkMa99
#> 1956    31937       15189  49371   GardCh00
#> 1957    32491       13683  29118   GreeEt00
#> 1958    33120       14543     NA   ThroCa01
#> 1959    30145       12198  11787   RamcRy00
#> 1960    26698        8827   7856   ArmsTe00
#> 1961    32775       14541 109795   TrauAd00
#> 1962    26950        9071   8200   HillJo02
#> 1963    31627       12743  47173       <NA>
#> 1964    29783       11347  11139   WickCo00
#> 1965     9353        5981   5012   CookJa02
#> 1966    30024       11502  11439   GrifGa00
#> 1967    29806       11585  11266   VandJa00
#> 1968    29281       10759  10681   ThomMi05
#> 1969    27826        9353   8914   FowlBe00
#> 1970    31061       12567  48228   SmitTr03
#> 1971    32398       14191  91470   HarrDe07
#> 1972    32323       14070  48004       <NA>
#> 1973    32494       13565  42247   HumpLi01
#> 1974    30656       12228  12215   CarrAu00
#> 1975    29854       11508  11231   LewiTo00
#> 1976    33113       14630  28305   JohnJu02
#> 1977    24057        6523   5606   SandEm00
#> 1978    33109       14556  42295   CallMa01
#> 1979    30002       11276  11391   LampJa00
#> 1980    31554       12502  29476   GateNi00
#> 1981    29527       11487  10998   PullSp00
#> 1982    27902        9664   9132   HarrJo03
#> 1983    31069       12778  49355   YiadIs00
#> 1984    31764       13359  13822   BealSa00
#> 1985    30491       12929  12017   LewiRy01
#> 1986    30159       12037  11801   WilsQu01
#> 1987    32780       14535  56247   HolmDa01
#> 1988    29296       10916  10696   BradJa00
#> 1989    33090       15103     NA   WillJa09
#> 1990    30342       12041  11983   ColbAd00
#> 1991    31940       13533  51081   LoveJu00
#> 1992       NA       14904  49537   HarpMa00
#> 1993    26706        8640   7864   RyanLo00
#> 1994    32706       14617  55775   McKiXa00
#> 1995    31016       12585  48727   SpeaBr00
#> 1996    31109       12589  48873   McInR.00
#> 1997    33051       15006 106295   LaloNi00
#> 1998    31849       13568  25991   LawrDe03
#> 1999    24824        7452   6189   SheaJa00
#> 2000    28394       10307   9439   WillLe02
#> 2001    31039       12815  49894   HillB.00
#> 2002    33035       15117     NA       <NA>
#> 2003    29906       11297  11300   PennEl00
#> 2004    28899       10649  10024   SladCh01
#> 2005    31004       12804  46180   HernWi00
#> 2006    25737        8125   7032   ZeitKe00
#> 2007    32820       14669  28149   LemiSh00
#> 2008    25227        9204   6471   WiggKe00
#> 2009     9526        6045   5443   GanoGr44
#> 2010    28557       10469   9602   MayoDa00
#> 2011    32852       14596  42516   BrowCa01
#> 2012    31036       12921  50126   CartLo01
#> 2013    31648       13187  48575   HarrTr01
#> 2014    32924       14839  35774   CrowTa00
#> 2015    32888       14580  43498   CougCa00
#> 2016    31927       13891  48538   XimiOs00
#> 2017    31195       13004  49842   DownDe00
#> 2018    29365       11127  10765   MartBl01
#> 2019    30499       12043  12081   GracJe00
#> 2020    32908       14834  44198   BrunTJ00
#> 2021    29322       11030  10722   FackKy00
#> 2022    26979        8904   8043   TinkCa00
#> 2023    28130       11214   8959   KreiCa00
#> 2024    29277       11071  10677   JohnAu01
#> 2025    30168       11946  11810   TomlDa00
#> 2026    31643       13526     NA   SantRy00
#> 2027    29462       11022  10862   DixoRi00
#> 2028    31838       13491  39395   JoneDa05
#> 2029    24060        6444   5609   McCoCo00
#> 2030    24175        6674   5722   WebbJo00
#> 2031    31999       13513  46501       <NA>
#> 2032    26547        8402   7610   TannAl00
#> 2033    33188       14949     NA       <NA>
#> 2034    24936        7364   6301   LewiDi00
#> 2035    30253       11761  11895   GallWa00
#> 2036   900125       12231  45675   MizzTa00
#> 2037    31280       12734  45727   ChunJo00
#> 2038    28718       10630   9996       <NA>
#> 2039    30972       12507  45791   BarkSa00
#> 2040    25883        8089   7165   MorrAl00
#> 2041    30138       11714  11780   PeppJa00
#> 2042    25907        8244   7193   EbneNa00
#> 2043    32435       13770  49390   HartMo01
#> 2044    32769       14676  46179   PearMa00
#> 2045    32072       13721  46978       <NA>
#> 2046    31416       13739  44891       <NA>
#> 2047    32674       14360  59701   ThomAn02
#> 2048    27668        9362   8775   FlemCa00
#> 2049    33050       14673     NA       <NA>
#> 2050    24804        7434   6169   SoldNa00
#> 2051    30136       11805  11778   EngrEv00
#> 2052    32008       13516  40973   SmitKa00
#> 2053    33041       15068     NA       <NA>
#> 2054    26756        8789   7915   ToilLe00
#> 2055    31460       13136  39588   ScotDa02
#> 2056    24035        6389   5585   TateGo00
#> 2057    29958       11059  11354   HoltJo00
#> 2058    30513       12443  12088   BoarC.00
#> 2059    33039       14546  28070   MackAu01
#> 2060    32003       13522  25578   SlayDa01
#> 2061    32124       13911  47996   BachAl00
#> 2062    32418       13634  34579       <NA>
#> 2063    31014       12884  48113   PettDa00
#> 2064    29433       10981  10833   CoreCo00
#> 2065    29274       10988  10674   ShepSt00
#> 2066    29249       10817  10649   ColeCo00
#> 2067    29378       11133  10778       <NA>
#> 2068    30770       12519  12187       <NA>
#> 2069    31494       13178  54483       <NA>
#> 2070    32522       14223  49466   BrowKy00
#> 2071    29655       11319  11052   PoolBr01
#> 2072    32012       13795  83833   BallCo00
#> 2073    30415       12026  12224   MaulAr00
#> 2074    32028       13471  50434   AustBl00
#> 2075    29574       11292  10953   FarlMa00
#> 2076       NA       15112     NA       <NA>
#> 2077    32828       14445  42313   HallBr02
#> 2078    30152       12001  11794   MayeMa00
#> 2079    33333       14454  56262   GuidJa01
#> 2080    33336       14583  50532       <NA>
#> 2081    27715        9671   8822   JackBe00
#> 2082    32009       13702  49037   HampSa00
#> 2083    31451       13139  49190   CampEl00
#> 2084    32530       13708  36340   PhilKy00
#> 2085    31105       12972  50088   FranJo02
#> 2086    32749       14734  26449   ZuniJa00
#> 2087    33335       15035  27128   HuffBr00
#> 2088    28481       10324   9526   AndeHe00
#> 2089    31150       12670  38558   FatuFo00
#> 2090    29751       11305  11093   ColeTr01
#> 2091    30302       11941  11944   SmarTa00
#> 2092    31042       12814  24614   ShepNa00
#> 2093    27785        9799   9068   AndrJo01
#> 2094    30183       11791  11825   ElflPa00
#> 2095    26569        8607   7746   VanRGr00
#> 2096       NA        9844     NA   CastSe00
#> 2097    32417       14254     NA   McLaCh00
#> 2098    30038       11610     NA   FickSa00
#> 2099    26653        8695   7811   OgleAl00
#> 2100    30904       12295  51599   ShelBr01
#> 2101    27040        9044   8141   WorrPa00
#> 2102    29758       11311  11100   OnwuPa00
#> 2103    27545        9380   8652   MoslC.00
#> 2104    28935       10673   9836   HewiNe00
#> 2105    31989       13846  35413   CashBl00
#> 2106    30193       11902  11835   BashTa00
#> 2107    32557       14305  35771   DawkNo00
#> 2108    29317       11070  10717   JenkJo01
#> 2109    31503       13159  51028   LuvuFr00
#> 2110    30666       11925  50118   LangHa00
#> 2111    28612       10382   9657   HageBr00
#> 2112    31615       13296  50221   FincSh00
#> 2113    30525       12391  12124   HennTh00
#> 2114    31835       13584  44216   WillQu00
#> 2115    32861       14654     NA   MannBr01
#> 2116    31828       12824     NA       <NA>
#> 2117    27711        9318   8818   FaleDa00
#> 2118    31141       12826  46453       <NA>
#> 2119     8795        5648   4332   FlacJo00
#> 2120    32795       14531     NA       <NA>
#> 2121    30973       12490  29048   DarnSa00
#> 2122    32018       13587  45769   JohnTy02
#> 2123    33366       14782     NA       <NA>
#> 2124    32790       14427  26408   PeriLa00
#> 2125    32528       13641     NA       <NA>
#> 2126     7241        4400   2282   GoreFr00
#> 2127    31567       12563  45662   AdamJo03
#> 2128    32280       14133  94366   HassJT00
#> 2129    32738       14447  49560   DaviAs00
#> 2130    27180        9111   8220   McDoBr01
#> 2131    32799       14622     NA       <NA>
#> 2132    29364       11110  10764       <NA>
#> 2133    30324       11810  11966   McDeCo00
#> 2134    29815       11559  11282   FantGe00
#> 2135    32681       14391  59818   BectMe00
#> 2136    31924       13801  46232   EdogCh00
#> 2137    29208       10837  10320   TravRo00
#> 2138    31077       12899  47164   HernCh00
#> 2139    31953       13828  42018   WescTr00
#> 2140    33362       15172     NA   DaviCo04
#> 2141    26824        8911   7982   GrifRy00
#> 2142    28493       10224   9538   CrowJa00
#> 2143    31180       12771  47961   BerrBr00
#> 2144    30241       11697  11883   MaloJo00
#> 2145    32283       14129  55003       <NA>
#> 2146    29256       10852  10656   DoctJo00
#> 2147    32533       13934  48055   SmitJe03
#> 2148    32729       14539  47800   MimsDe00
#> 2149    31102       12776  48097   ScotJa02
#> 2150    33329       14597  34914   CageLa01
#> 2151    25178        8469   6468   HogaCh00
#> 2152    31588       12979  66957   SmitVy00
#> 2153    29102       10713  10144   BrowDa04
#> 2154    28414       10069   9459   PerrBr02
#> 2155    32965       14876  29571   JuriLu00
#> 2156    24978        7585   6343   KelcJa00
#> 2157    31985       13540  46815   PierRo00
#> 2158    26659        8647   7817   SlayDa00
#> 2159    29452       11170  10852   SeymKe00
#> 2160    27007        8651   8483   RobeNi00
#> 2161    29876       11362  11218   LeBlCr01
#> 2162    31509       13181  26360   JameCr01
#> 2163    31095       12683  50543   MaddAv00
#> 2164    32964       14875  47826   JacqMi00
#> 2165    32959       14614     NA       <NA>
#> 2166    26356        8509   7271   McLeRo00
#> 2167    32371       14162  33464   TaylSh00
#> 2168    32968       14498  44440   RileEl01
#> 2169    32797       14686  42467   WallKV00
#> 2170    32961       14491  43528   ArnoGr01
#> 2171    33308       15133  25642   HousJa00
#> 2172    31101       12546  50120   SweaJo00
#> 2173    23988        6571   5538   GrahBr99
#> 2174    25769        8139   7061   CurrVi00
#> 2175    33184       14948     NA       <NA>
#> 2176    31578       12708  48487   OstmJo00
#> 2177    30127       11901  11769   BarnDe01
#> 2178    32973       14722  27300   WillRa03
#> 2179    25722        8154   7018   CoxxFl00
#> 2180    29323       11051  10723   HargJa00
#> 2181    29350       11160  10750   RidgHa00
#> 2182    25847        8150   7647   JackMa02
#> 2183    29114       10660  10156   McGiT.00
#> 2184    30357       11920  11999   HestTr00
#> 2185    29313       11169  10713   SeumIs00
#> 2186    25786        8127   7078   BrooBr00
#> 2187    32405       13464  28844   HerbNa01
#> 2188    28460       10277   9505   BrowJa04
#> 2189    31176       12998  46647   PryoMa00
#> 2190    32406       13880  45110   OpetIo00
#> 2191    30266       12203  11908   ElliJa03
#> 2192    31120       12916  49699   AverGe00
#> 2193    32403       13460  30737   EdwaTJ02
#> 2194    32866       14737  42632   BradSh00
#> 2195    29409       11225  10809   BrowJa05
#> 2196    30188       11981  11830   RileDu00
#> 2197    33180       15096  43811   SmitRa02
#> 2198    28716       10811   9994   SingAl00
#> 2199    32773       14751  81991   TaylDa01
#> 2200    30297       11990  11940   GerrNa00
#> 2201    33108       14735  43250   BachJo01
#> 2202    28698       10600  10007   LovaRi00
#> 2203    30711       11829  12255   JohnCa02
#> 2204    33192       14748     NA   SipoAr01
#> 2205    29421       11187  10821   SudfNa00
#> 2206    32723       14416  40291   HurtJa00
#> 2207    29236       10856  10636   WentCa00
#> 2208    32404          NA     NA       <NA>
#> 2209    29384       10815  10784   HowaJo00
#> 2210    32148       13534  40065   HolyEl00
#> 2211    31885       13521  40555   SandMi01
#> 2212    32966       14396  42425   KillAd00
#> 2213    31171       12996  39462   ScotBo02
#> 2214    30707       11750  12253   ClemCo00
#> 2215    32842       14796  45693   HuntJa01
#> 2216    32023       13985  51391   EppsMa00
#> 2217    30321       11989  11963   FordRu00
#> 2218    29467       11137  10867   MillJa02
#> 2219    29430       11231  10830   CounBl00
#> 2220    26627        8728   7786   JohnLa01
#> 2221    31203       13009  66916   MailJo00
#> 2222    32649       12696  46848   TothBr00
#> 2223    32815       14663  27064   DrisJa00
#> 2224    31854       13671  29250   DillAn00
#> 2225     7122        3874   2148   PeteJa21
#> 2226    26658        8781   7816   ErtzZa00
#> 2227    29654       11317  11051   PerkJo02
#> 2228    32415       13551  46481       <NA>
#> 2229    30594       12082  12145   CrooJa00
#> 2230    31019       12860  47272   GoedDa00
#> 2231    32086       13444  38305   WilsCa00
#> 2232    31935       13564  47928   ButlHa00
#> 2233    27626        9559   8733   RodgRi00
#> 2234    26701        8807   7859   GoodMa00
#> 2235    30715       11883  12258   WardGr02
#> 2236    31624       12602  47477   BurnDe00
#> 2237    32016       13735  48023   FulgTr00
#> 2238    32691       14421  61697   ReagJa00
#> 2239    32035       13979  47662       <NA>
#> 2240    32870       14464  61664   WatkQu00
#> 2241    31889       13529  35014   ArceJJ00
#> 2242    25755        8029   7048   JeffAl00
#> 2243     8826        5581   4363   JackDe00
#> 2244    32838       14567  84142   HighJo00
#> 2245    23993        6563   5543   PounMa20
#> 2246    31342       13025  45600       <NA>
#> 2247    31915       13455  40160   LaynJu00
#> 2248    29534       11494  11004   WillTr05
#> 2249    30207       12031  11850   SuttCa00
#> 2250    23982        6617   5532   HadeJo99
#> 2251    29510       11473  10898   HiltMi01
#> 2252    32939       14439  60649   PierJa01
#> 2253    32070       13966     NA       <NA>
#> 2254    28486       10419   9531   NelsSt01
#> 2255    32868       14595  49751   BrooAn00
#> 2256    29292       11018  10692   DaviSe00
#> 2257    31118       12768  49263   AlleMa03
#> 2258    30187       11955  11829   WormCh00
#> 2259    27636        9414   8743   MarsCa00
#> 2260    31518       13390  48889   MondHe00
#> 2261    32024       13755  56503   BuggIs00
#> 2262    23985        6590   5535   AluaTy99
#> 2263    27574        9257   8681   TuitSt00
#> 2264    32937       15011     NA       <NA>
#> 2265    24818        7449   6183   HeywCa01
#> 2266    32902       14681  48662   DaviCa03
#> 2267    32041       13662     NA       <NA>
#> 2268    29432       11232  10832   WattDe00
#> 2269    32805       14749  46735   DotsKe00
#> 2270    30293       11798  11933   IsidDa00
#> 2271    25734        8123   7640   DeCaDa00
#> 2272    28188        9646   8990   BoswCh00
#> 2273    31484       12574  50154   AdenOl00
#> 2274    31708       13306  50918   SpilRo00
#> 2275    26829        8970   7988   WillVi01
#> 2276    28410       10351   9455   DuprAl00
#> 2277    31410       12704  50819   ScalTe00
#> 2278    31842       13461  27375   BushDe01
#> 2279    30143       11984  11785   WattT.00
#> 2280    27679        9640   8786   WillAv00
#> 2281    30954       12977  20035   KuntCh02
#> 2282    32772       14724  43507   HighAl02
#> 2283    32039       13632  50810   GilbUl00
#> 2284    28075        9955   9336   ElliJa02
#> 2285    29566       11287  10949   CanaKa00
#> 2286    28388       10172  10236   BerrJo00
#> 2287    32942       15012     NA       <NA>
#> 2288    30248       11834  11890   DobbJo00
#> 2289     6770        3764   1732   RoetBe00
#> 2290    31046       12629  46569   RudoMa00
#> 2291    31847       13558  41897   HaskDw00
#> 2292    31135       12779  47297   SamuJa00
#> 2293    32794       14357  57289   McFaAn00
#> 2294    31954       13453  45954   SnelBe00
#> 2295    30850       12433  38329   EdmuTr00
#> 2296    29387       10806  10787   SmalWe00
#> 2297    30218       11691  11860   ConnJa00
#> 2298    27000        9578   8468   DangJo00
#> 2299    30998       12613  51334   EdmuTe00
#> 2300    32521       13841     NA       <NA>
#> 2301    30981       12624  51206   FitzMi00
#> 2302    30431       11785  12049   CollAv00
#> 2303    30250       11756  11892   BannZa00
#> 2304    31577       13258     NA       <NA>
#> 2305    29357       11054  10757   HawkJe00
#> 2306    30735       11922  12235       <NA>
#> 2307    28194        9677   9289   FeilMa00
#> 2308    31062       12805  46302   OkorCh00
#> 2309    27528        9762   9091   VillAl00
#> 2310    33325       14866     NA       <NA>
#> 2311    32195       14066  46859       <NA>
#> 2312    27538        9210   8645   EbroEr00
#> 2313    26678        8785   7836   McDoVa00
#> 2314    31441       13119  30887   RadeKe00
#> 2315    31973       13511  36049   GentZa00
#> 2316    32261       13440  35985       <NA>
#> 2317    32565       14248  47186   JoneCh10
#> 2318    32719       14433  42312   ClayCh01
#> 2319    31898       13472  33441   JohnDi01
#> 2320    32482       13788  41706       <NA>
#> 2321    31030       12838  47792   WashJa00
#> 2322    32948       14495     NA       <NA>
#> 2323    31157       12570  47895   McClRa00
#> 2324    30175       11877  11817   SmitJu00
#> 2325    30171       11814  11813   PociEt00
#> 2326    31475       12682  45578   LundBr00
#> 2327    32120       14027  48212   StanJa00
#> 2328    31576       13282  49132   NealRy00
#> 2329    30203       12015  11845   GrifSh00
#> 2330    29077       10706  10073   DunbQu00
#> 2331    32004       13876  49515   MillJo05
#> 2332    26122        8584   7716   ThorNe00
#> 2333    31116       12671  49059   FlowTr01
#> 2334    31879       13796  56263   BlaiMa01
#> 2335    33283       15123     NA       <NA>
#> 2336    28588       10433   9633   DiggQu00
#> 2337    31964       13839  49352   AmadUg00
#> 2338    31112       12505  26940   ReedD.00
#> 2339    28418       10387   9463   RandDa00
#> 2340    31415       12699  38426   StepLi00
#> 2341    32718       14649     NA   TaylDa00
#> 2342    32818       14727  56857   RobiAl03
#> 2343    29999       11065  11394   JackBr04
#> 2344    29306       10926  10706   BullJo00
#> 2345    31049       12632  48731   GreeRa01
#> 2346    24029        6570   5579   DunlCa99
#> 2347    31861       13751  48822   CollLJ00
#> 2348    27413        9126   8196   MayoBe00
#> 2349    26704        8654   7862   MoorDa01
#> 2350    33285       15124     NA       <NA>
#> 2351    29289       11217  10683   ReedJa02
#> 2352    25295        7504   6515   BellNi01
#> 2353    23992        6553   5542   IupaMi20
#> 2354    32739       14670  81532   LewiDa05
#> 2355    26633        8701   7791   WarmCh00
#> 2356    31956       13862  29244   HaynPh00
#> 2357    30356       12221  11998   FullKy01
#> 2358    30634       12105  46744   SimmJo00
#> 2359     9649        7138   5372   BoonAl21
#> 2360    28378       10157     NA   MyerJa00
#> 2361    31974       13844  50967   BurrBe00
#> 2362    32697       14739  50851   BrooJo01
#> 2363    31920       13733  50727   BartCo00
#> 2364    31111       12829  50657   GrifSh01
#> 2365    27287        9072   8271   ArmsRa01
#> 2366    32000       13737  39140   WalkDA02
#> 2367    25757        8208   7050   WagnBo00
#> 2368    30191       11952  11833   WillTi00
#> 2369    25725        8199   7021   IrviBr00
#> 2370    24886        7483   6251   WrigK.00
#> 2371    28221       10155   9174   OttxTy00
#> 2372    32336       14099  38461   MoneBr00
#> 2373    31477       12492  48875   FordPo00
#> 2374    31119       12481  35381   DickMi00
#> 2375    31190       13003  46420       <NA>
#> 2376    26662        8743   7820   SmitGe00
#> 2377    31189       12950  23519       <NA>
#> 2378    25785        8043   7077   WilsRu00
#> 2379    31206       12617  45731   ScarBo01
#> 2380    30997       12830  27414   PennRa00
#> 2381    29405       10803  10805   CollAl00
#> 2382    27585        9516   8692   HydeCa00
#> 2383    33281       14857     NA       <NA>
#> 2384    32814       14410  55632   DallDe00
#> 2385    32036       13484  45859   HomeTr00
#> 2386    30362       11784  12004   CarsCh00
#> 2387    30119       11985  11761   AdamJa00
#> 2388    30208       11992  11849   HillDe02
#> 2389    31138       12938  46226   JoneJa08
#> 2390    30879       11825  12240   WheeCh00
#> 2391    28409       10262   9454   OgbuCe00
#> 2392     8803        5773   4340   BrowDu20
#> 2393    33268       15118     NA       <NA>
#> 2394    29392       11171  10792   ShelBr00
#> 2395    32527       13921  46948       <NA>
#> 2396     8285        5206   3647   OlseGr00
#> 2397    33286       14928     NA   MabrTy00
#> 2398    26781        8907   7940   WillLu00
#> 2399    32803       14463  52266   ParkCo02
#> 2400    31090       12986  30762   DissWi00
#> 2401    30661       12271  12051   HollJa03
#> 2402    28457       10161   9502   LockTy00
#> 2403    32068       13470  26586   UrsuJo00
#> 2404    33267       14638     NA       <NA>
#> 2405    32884       14644  26448   SwaiFr00
#> 2406    32293       13616  13534   HartPe01
#> 2407    31722       13321  23254   KidsDa00
#> 2408    30899       12287  31892   LenoLa00
#> 2409    30339       12216  11981   MoorDa03
#> 2410    31896       13424  47864   MetcDK00
#> 2411    28417       10208   9462   DorsPh00
#> 2412    32367       13490  48152       <NA>
#> 2413    26561        8415   7618   GordJo02
#> 2414    29627       11427  11024   NearAa00
#> 2415    24380        8427   5839   GarlBe00
#> 2416    27571        9431   8678   RichWe00
#> 2417    29887       10918  11117   BrenJa01
#> 2418    27606        9447   8713   LongSp00
#> 2419    28459       10274   9504   GrasHr00
#> 2420    32030       13692  49512   HarrTi01
#> 2421    24941        7600   6306   SherRi00
#> 2422    30179       12038  11821   WithAh00
#> 2423    31386       13422  50430   MoseEm00
#> 2424    32084       13889  12955   WebsKe00
#> 2425    26677        8644   7835   TaylJa01
#> 2426    28265        9953   9332   WillKW00
#> 2427    27553        9330   8660   VerrJa00
#> 2428    31762       13354  13612   AlexAd00
#> 2429    27657        9301   8764   JohnDo02
#> 2430    33201       14780     NA   MaydJa01
#> 2431    30169       12002  11811   MeliOb00
#> 2432    31065       12985  49178   MoorTa00
#> 2433    29507       10910  10903   BoddBr01
#> 2434    27558        9308   8665   WardJi01
#> 2435    30186       11953  11828   WillJo09
#> 2436    28405       10309   9450   ArmsAr01
#> 2437    31098       12752  48404   StreKe00
#> 2438    30116       11945  11758   ThomSo00
#> 2439    26628        8657   8094   AnsaEz00
#> 2440    30766       12426  12183   BarrAl00
#> 2441    31834       13421  42741   BosaNi00
#> 2442    26626        8658   7785   JordDi00
#> 2443    29376       10908  10776   BlaiRo00
#> 2444    27862        9403   9045   HydeKe01
#> 2445    27551        9342   8658   FordDe00
#> 2446    30190       11917  11832   HallDa01
#> 2447    32936       14705  44361   CoatJo01
#> 2448    32684       14444  56834   KinlJa00
#> 2449    33195       14551  48659   DaniDa04
#> 2450    30310       12209  11953   JoneD.01
#> 2451    32321       13519  28308   GiveKe01
#> 2452    26753        8930   7912   JuszKy00
#> 2453    28416       10269   9461   TomlLa01
#> 2454    25805        8310   7095   BergTo00
#> 2455    30449       11781  34807   BrunDa00
#> 2456    30058       11634  11467       <NA>
#> 2457     7520        4686   2607 gouldrob01
#> 2458    28624       10385   9669   NzeoMa00
#> 2459    26669        8698   7827   AlonKi00
#> 2460    31040       12769  51222   WarnFr00
#> 2461    33197       15013     NA   GrifJo01
#> 2462    29485       11247  10885   WalkJo01
#> 2463    32318       13829  49792   AlShAz00
#> 2464    31980       13804  51503   GreeDr00
#> 2465    30088       11740  11748   PeppTa00
#> 2466    25291        9186   6428   NelsKy00
#> 2467    29413       11085  10813   KaseDr00
#> 2468    31942       13816  44663   WishMi00
#> 2469     8937        5653   4474   JohnJo05
#> 2470    30563       12511  12282   MullNi00
#> 2471    27590        9320   8697   GaroJi00
#> 2472    30980       12489  35460   RoseJo01
#> 2473    30217       11833  11859   BeatC.00
#> 2474    33200       14988     NA       <NA>
#> 2475    27624        9529   8731   McKiJe00
#> 2476    27732        9526   8838       <NA>
#> 2477    31394       12932  29413   WilsJe01
#> 2478    28654       10604   9783   MostRa00
#> 2479    32383       14170  45038   WaltAu00
#> 2480    28461       10081   9506   ColeTe01
#> 2481    33199       14392  25582   HastJa02
#> 2482    31154       12636  51408   HarrMa03
#> 2483    32319       14074  49231   FlanDe00
#> 2484    29997       11516  11392       <NA>
#> 2485    28434       10451   9479   TartJa00
#> 2486    30548       12090  12102   NacuKa00
#> 2487    26656        8778   7814   CyprJo00
#> 2488    23979        6541   5529   WillTr21
#> 2489    32214       13981  42414       <NA>
#> 2490    32015       13679  38951   SkulJu00
#> 2491    30979       12882  46275       <NA>
#> 2492    29310       10975  10710   ColeSh00
#> 2493    32622       14201  46284       <NA>
#> 2494    25903        8339   7181   CompTo00
#> 2495    32823       14671  29314   McKiCo00
#> 2496    31447       13154  66937   ShepDa01
#> 2497    32543       13685  47307   HelmDa01
#> 2498    31329       13030  20994   DwelRo00
#> 2499    33198       14767     NA       <NA>
#> 2500    26708        8615   7866   ReedJo02
#> 2501    32860       14608  42257   WoerCh00
#> 2502    30259       11892  11901   KittGe00
#> 2503    30290       11881  11932   TaylTr02
#> 2504    31899       13631  45752       <NA>
#> 2505    32325       13588  25513       <NA>
#> 2506    30551       11847  12270   BourKe00
#> 2507    27570        9273   8677   MattJo00
#> 2508    31868       13429  48274   SamuDe00
#> 2509    32887       14376     NA   JennJa00
#> 2510    33236       14914     NA   ColeMa03
#> 2511    25810        8111   7100   BenjTr00
#> 2512    28395       10151   9440   WhitKe00
#> 2513    31225       13016  48223       <NA>
#> 2514    31210       12579  28991   JameRi00
#> 2515    30955       12447  47417   CracRi00
#> 2516    32695       14386  84109   AiyuBr00
#> 2517    30861       12260  12330       <NA>
#> 2518     9490        6215   5150   ShipA.20
#> 2519    26826        8981   7985   JensRy00
#> 2520    31871       13648  25891   BuntSe00
#> 2521    29342       11178  10742   SmitRy00
#> 2522    32628       13730  27582   WilkMa00
#> 2523    31926       13483  34918   DeanJa00
#> 2524    31033       12531  49335   DaviCa02
#> 2525    27637        9655   8744   CockRo00
#> 2526    33273       14916     NA       <NA>
#> 2527    32396       14192  50480   MillHe01
#> 2528    31931       13789  51282   EdwaMi01
#> 2529    32715       14484  42475   WinfAn00
#> 2530    30363       12223  12005   OConPa00
#> 2531    33277       14913  50195   PotoBe00
#> 2532    23977        6537   5527   SuhxNd99
#> 2533    23990        6568   5540   PierJa99
#> 2534    32062       13990  37468   BellQu00
#> 2535    26749        8664   7908   GholWi00
#> 2536    30317       11927  11960   LedbJe00
#> 2537    33346       15162     NA       <NA>
#> 2538    32864       14682  48988   DaviKh00
#> 2539    28605       10339   9650   NuneRa00
#> 2540    32585       13577     NA       <NA>
#> 2541    33275       14672     NA       <NA>
#> 2542    31619       13303  28653   StinAa00
#> 2543    28449       10272   9494   MarpAl00
#> 2544    33292       14915     NA       <NA>
#> 2545    26739        9092   7898   WatfEa00
#> 2546    24181        6567   5728   LarsTe20
#> 2547    31064       12851  66578   CappAl00
#> 2548     9520        6150   5180   SuccRy44
#> 2549    31172       12528  50787   CichJa00
#> 2550    26668        8694   7826   MintKe00
#> 2551    27555        9271   8662   BucaDe00
#> 2552    31939       13562  48405   NelsAn01
#> 2553    27820        9995   9000   BarrSh00
#> 2554    33272       14917  33560   GillCa00
#> 2555    31837       13611  43089   WhitDe02
#> 2556    25768        8184   7060   DaviLa00
#> 2557     9537        6932   5430   SanbGa00
#> 2558    30096       12538     NA   TrinZa00
#> 2559     9673        7168   5232   McLeSt00
#> 2560    30982       12500  48956   VeaxVi00
#> 2561    28553       10466   9598   PiniBr00
#> 2562    31809       11830     NA       <NA>
#> 2563    28738       10532     NA   WileMa01
#> 2564    26949        8923   7983       <NA>
#> 2565     8297        5251   3659   StanDr00
#> 2566    24797        7248   6162   GabbBl00
#> 2567     5228        1350    698   BradTo00
#> 2568    31008       12566  34001   JoneRo01
#> 2569     9317        5970   4976   McCoLe01
#> 2570    32746       14557  45866   VaugKe00
#> 2571    32629       13599  34669       <NA>
#> 2572    30117       11687  11759   FourLe00
#> 2573    26805        8762   7963   BarnKe00
#> 2574    29324       10738  10724   ProsC.00
#> 2575    30292       11764  11935   LogaT.00
#> 2576    31087       12641  49196   WhitJo03
#> 2577    29841       11527  11240   AdamAn00
#> 2578    30163       11988  11805       <NA>
#> 2579    28422       10271   9467   SmitDo02
#> 2580    27882        9965   8968   WellJo02
#> 2581    30349       12218  11992       <NA>
#> 2582    32683       14616  64818   WirfTr00
#> 2583    29389       11049  10789   HaegJo00
#> 2584    30132       11806  11774   HowaO.00
#> 2585    31257       13286  66924   HudsTa00
#> 2586    30468       12230  24606   AuclAn00
#> 2587    28267       10008   9207   BratCa00
#> 2588    24017        6443   5567   GronRo00
#> 2589    31732       13341  66966   McElCo00
#> 2590    29978       11213  11371   MickJa01
#> 2591    30111       12121  12077   GrayCy01
#> 2592    30197       11718  11839   GodwCh00
#> 2593    33294       14778     NA       <NA>
#> 2594    24171        6454   5718   BrowAn04
#> 2595    31712       13207  25576   FranJo04
#> 2596    33274       14892     NA       <NA>
#> 2597    32831       14432  48054   JohnTy00
#> 2598    27535        9253   8642   EvanMi00
#> 2599    32040       13987  47481   MillSc01
#> 2600    31114       12746  66915   WatsJu01
#> 2601    25809        8129   7099   JoneBe01
#> 2602    29133       10716  10174   MunyDa00
#> 2603    33338       14897  46014       <NA>
#> 2604    31609       12720  51203   KaluJo00
#> 2605    30264       11999  11906   KingDe01
#> 2606    30623       12097  39398   BordBr00
#> 2607    28244        9944   9040   ButlMa01
#> 2608    32731       14443  42894   FultKr00
#> 2609    32913       14835  42512   JackCh01
#> 2610    29607       11420  10914   MiltCh00
#> 2611    28558       10470   9603   SmitTy01
#> 2612    32589       14297  50513   OrrxKa00
#> 2613    30131       12018  11773   JackAd00
#> 2614    31948       13550  51378   HookAm00
#> 2615    30652       12149  51190       <NA>
#> 2616    29298       11218  10698   ByarKe01
#> 2617    27529        9243   8636   ClowJa00
#> 2618    32287       13881  50115   RayxWy01
#> 2619    28439       10317   9484   OrchNa00
#> 2620    31851       13465  43742   SimmJe01
#> 2621    33347       14985  82261   TartTe00
#> 2622    31992       13607  48933   MackDa00
#> 2623    31193       13002  48684   TaylJu00
#> 2624    25868        8148   7151   CrawJa00
#> 2625    32844       14718  57004   MurcLa00
#> 2626    31612       12973  49601   DickMa00
#> 2627    32140       13998  44889   BlasKh00
#> 2628    24008        6554   5558   SaffRo20
#> 2629    26799        8829   7957   QuesDa00
#> 2630    31914       13800  46808   DaviNa01
#> 2631    28502       10294   9547   DougJa00
#> 2632    26264        8835     NA   TaveGi00
#> 2633    33343       14860     NA       <NA>
#> 2634    32918       14837     NA   SlomSa00
#> 2635     7867        4932   3063   GostSt20
#> 2636    32427       13774  30462   RobeDe01
#> 2637    28679       10684  10127   DzubNi00
#> 2638    27203        9924   8308   CompWi00
#> 2639    31011       12883  48600   LandHa00
#> 2640    27166        9073   8077   BateDa00
#> 2641    31571       12911  50116       <NA>
#> 2642    32582       14293  44583   SkipTu00
#> 2643    30992       12879  50213   EvanRa01
#> 2644    24829        7451   6194   ReedBr00
#> 2645    30268       11963  11910   BrowJa06
#> 2646    32020       13486  29367   LongDa04
#> 2647    32306       14127  94369   OrzeMa00
#> 2648    26016        8532   7418   BrinBe00
#> 2649     9803        8517   6979   OverMa00
#> 2650    27640        9393   8747   JoneDa04
#> 2651    32155       14044  37161   BrowMi01
#> 2652     9070        6315   4580   KernBr20
#> 2653    31579       12925  38843   DaniTr00
#> 2654    25718        8040   7014   TannRy00
#> 2655    30165       11692  11807   KizeDe00
#> 2656    31219       12949  46517   WoodLo00
#> 2657    32763       14400  40692   EvanDa02
#> 2658    30275       11767  11917   McNiJe00
#> 2659    29279       10819  10679   HenrDe00
#> 2660    30202       11685  11844   ForeDO00
#> 2661    28223        9872   9035   PerrSe00
#> 2662    26638        8684   7796   VaccKe00
#> 2663    31122       12731  25546   CruiDa00
#> 2664    32699       14395  59704   WilsIs00
#> 2665    27539        9256   8646   LewaTa00
#> 2666    24145        6744   5692   NewhMa20
#> 2667    33342       15161     NA       <NA>
#> 2668    25863        8314   7146   KellDe00
#> 2669    32233       13718  46846       <NA>
#> 2670    28447       10275   9492   SambTy00
#> 2671    33344       15156     NA       <NA>
#> 2672    28531       10251   9576   PruiMy00
#> 2673    32588       14295  48369   HessPa00
#> 2674    28634       10507   9679   SwaiGe00
#> 2675    30571       12235  51837   FirkAn00
#> 2676    33064       14632     NA       <NA>
#> 2677    30213       11807  11855   SmitJo01
#> 2678    33340       15159     NA       <NA>
#> 2679    30118       11733  11760   DaviCo03
#> 2680    31623       13206  47669   BatsCa00
#> 2681    30940       12367  38044   DaviRa01
#> 2682    29609       11256  10918   RogeCh02
#> 2683    31883       13432  48327   BrowAJ00
#> 2684    29678       11534  11074   JohnMa07
#> 2685    33348       14750     NA   WestNi00
#> 2686    29070       10680  10075   HumpAd00
#> 2687    29631       11429  11028   RaymKa00
#> 2688    30660       12926  12052   HollCo00
#> 2689    30312       11816  11954   RoulCh00
#> 2690    32826       14662  41878   IsmaKe00
#> 2691    28438       10408   9483   DarbRo00
#> 2692    30194       11970  11836   MoreFa00
#> 2693    27642        9337   8749   ColvAa00
#> 2694    31211       12751  49354   StroGr00
#> 2695    31158       12991  51583   ThomSi00
#> 2696    30646       12040  49357   McTyTo00
#> 2697    31402       12834  49379   JohnDa09
#> 2698    32059       13603  28704   MoreJi00
#> 2699    29318       11038  10718   FullKe00
#> 2700    32886       14381  55800   CurlKa00
#> 2701    32055       13547  49407       <NA>
#> 2702    31582       12827  50406   ReavJe00
#> 2703    31079       12914  49260   ApkeTr00
#> 2704    30381       12091  50361   LukeCo00
#> 2705    30162       11956  11804   AndeRy00
#> 2706    32899       14729  48455   SmitJa08
#> 2707    31858       13745  27271   SweaMo00
#> 2708    32903       14753  38472   ToohCa00
#> 2709    32198       13625  48922       <NA>
#> 2710    32180       14057  36551   BeexRy00
#> 2711    32672       14452  56436   YounCh04
#> 2712    30298       11904  11939   BranCa00
#> 2713    24803        7448   6168   KerrRy00
#> 2714    32073       13807  48426       <NA>
#> 2715    29386       11063  10786   IoanMa01
#> 2716    33185       14947     NA   BadaDa00
#> 2717    30983       12618  48698   PaynDa00
#> 2718    31133       12544  48966   SettTi00
#> 2719    30412       12173  12222   LawrDe02
#> 2720    30130       11900  11772   AlleJo01
#> 2721    28911       10836   9818   LiedMi00
#> 2722    29429       11230  10829   SchwWe00
#> 2723    31963       13983  46087   MartWe00
#> 2724    28393       10257   9438   ScheBr00
#> 2725    29262       11041  10662   GarnJo00
#> 2726    26800        8896     NA   HopkDu00
#> 2727    31421       13131     NA   VedvKa00
#> 2728    26673        8696   7831   BostJo00
#> 2729    30343       11991  11985   HarvJo01
#> 2730    29505       11149  11011   NorrJa00
#> 2731    30144       11746  11786   FostRe00
#> 2732    32151       14257  38548   KunaJo00
#> 2733    32832       14480  49073   HudsKh00
#> 2734    32204       13903  49677   PhilJu00
#> 2735    32005       13700  49753   HolcCo00
#> 2736    25756        8207   7049   KendMy00
#> 2737     7190        4455   2231   DaviTh20
#> 2738    27660        9712   8767   PierKe00
#> 2739     9771        7973   5512   SundNi00
#> 2740    26945        9832   8358   WayxTr00
#> 2741    28839       10179   9896   HeinTa00
#> 2742    31301       12623  26152   AlleKy00
#> 2743    33207       14393     NA       <NA>
#> 2744     7177        4306   2218   SmitAl03
#> 2745    25807        8008   7097   MillLa01
#> 2746    31944       13458     NA       <NA>
#> 2747    29650       11312  11047   McKiJ.00
#> 2748    29390       10851  10790   WillJo07
#> 2749    29560       10902  10927   BarbPe01
#> 2750    32736       14639  78050   GibsAn00
#> 2751    28421       10057   9466   CollLa00
#> 2752    28785       10701   9940   EverDe01
#> 2753    31097       12987  44802       <NA>
#> 2754    31044       12575  46375   ChriGe01
#> 2755    32778       14516  59820   CharSa00
#> 2756    31544       13270  46936   SteiDa00
#> 2757    30242       11818  11884   SharDa02
#> 2758    27594        9418   8701   MoseMo00
#> 2759    28000        9429   9025   LucaCo01
#> 2760    31403       12940  31698   ParrTi00
#> 2761    31478       12901  47131   BaugMa02
#> 2762    33208       14524     NA       <NA>
#> 2763    30267       11899  11909   SpriJe00
#> 2764    27648        9323   8755   ThomLo00
#> 2765    31161       12920     NA       <NA>
#> 2766    29411       11009  10811   HemiTe00
#> 2767    30763       12049  12267   SwooTy00
#> 2768    32812       14568  39993   GandAn00
#> 2769    31626       13304  38435       <NA>
#> 2770    31908       13536  48229   McLaTe00
#> 2771    31405       13101  47908   SimsCa00
#> 2772    33303       14603  48344       <NA>
#> 2773    32038       13428  47931   HarmKe00
#> 2774    32253       13515  39533       <NA>
#> 2775    25120        7659   6597   InmaDo00
#> 2776    31601       12909  48230   FostRo01
#> 2777    33209       14503  40113   WrigIs01
#> 2778    32187       14055  48341   SimsSt00
#> 2779    31227       12739  48309   BadeJe00
#> 2780    29397       11014  10797   DaviTr03
#> 2781    27778        9789   8884   RhanDe00
#> 2782    29788       11455  11257       <NA>
#> 2783     8313        5294   3675   KaliRy20
#> 2784    29212       10774  10345   EdisCo00
#> 2785    27592        9427   8699   BritJu00
#> 2786    31721       13339  21865   DunnCa00
#> 2787    32526          NA     NA       <NA>
#> 2788    32099       13680  28746       <NA>
#> 2789    31801       12709  45591       <NA>
#> 2790    32133       14017  25158       <NA>
#> 2791    25808        8330   7098   GradGi00
#> 2792    32489       13949  91475       <NA>
#> 2793    28077        9658   9148   StonJa02
#> 2794    31617       13295  45599       <NA>
#> 2795    26874        9574   8034   JohnTJ00
#> 2796    31108       12801  46953       <NA>
#> 2797    29093       10605  10060   EastAn01
#> 2798    32117       14028  26727       <NA>
#> 2799     8964        6404   4501   SullJo24
#> 2800    27701        9428   8808   JohnWe00
#> 2801    31535       13264     NA       <NA>
#> 2802    27604        9430   8711   SwanTr00
#> 2803    31260       12655  46610       <NA>
#> 2804    32562       14247  30032       <NA>
#> 2805    28722       10866   9794       <NA>
#> 2806    31476       12857     NA       <NA>
#> 2807    30521       12432  12120   BondDe01
#> 2808    32144       13717  45568       <NA>
#> 2809    32407       14022  46763       <NA>
#> 2810    30385       11786  12058       <NA>
#> 2811    32554       14268  29378       <NA>
#> 2812    26730        8634   7889   SchwBr00
#> 2813    31767          NA  26384       <NA>
#> 2814    30397       12982  22381       <NA>
#> 2815    31522       13384     NA       <NA>
#> 2816    29669       12362  11065       <NA>
#> 2817    27733        9772   8839   BowaLu00
#> 2818    32240       14086  28134       <NA>
#> 2819    31432       13110  39377       <NA>
#> 2820     9313        6055   4972   UngeMa20
#> 2821    30329       12035  11971       <NA>
#> 2822    24918        7518   6283   HousDa00
#> 2823    30865       12317  12338   HatfDo00
#> 2824    26875        9082   8035   CoopMa00
#> 2825    29483       11246  10883   IworPr00
#> 2826    29487       11248  10887   ReedKa00
#> 2827    25776        8211   7068   RobiJo01
#> 2828    26674        8643   7832   AmerDa00
#> 2829    30316       12210  11959   JoneDe02
#> 2830    24685        7236   6017   SherMa20
#> 2831    27596        9316   8703   SoutDe00
#> 2832    31524       12707  49365       <NA>
#> 2833    25825        8320   7115   SensCo00
#> 2834    26691        8649   7849   McFaLe00
#> 2835     9289        5984   4948   DaviVo99
#> 2836    26082        8440   7362   BlakAn00
#> 2837    32252       13503  49433       <NA>
#> 2838    28468       10417   9513   CartAl01
#> 2839       NA       14264  26516       <NA>
#> 2840    28630       10437   9675   McDoDe02
#> 2841    29589       11301  10961       <NA>
#> 2842    26571        8566   7624   LewiCh01
#> 2843    30607       12453  12105   BrowDo02
#> 2844    31418       13371  49361       <NA>
#> 2845    31690       13205  66956       <NA>
#> 2846    25994        8596   7450   SheaDe00
#> 2847       NA          NA  42965       <NA>
#> 2848    30569       12233  12242   ColeXa00
#> 2849    31756       12873  68148       <NA>
#> 2850     8607        5848   3589   GrimBr20
#> 2851    28639       10505   9684   NixoTa00
#> 2852    29079       10795  10080   DixoTr01
#> 2853    28544       10227   9589   LippTo00
#> 2854    30859       12259  12328       <NA>
#> 2855     8909        5810   4457   ScanOr99
#> 2856    32379       14159  34280       <NA>
#> 2857    26939        9874   8359   HursDe00
#> 2858    30549       12030  12095       <NA>
#> 2859    29723       11442  11145   DorlMa00
#> 2860       NA       14107  94364       <NA>
#> 2861       NA       13563  50541       <NA>
#> 2862    29771       11328  11129   BarnAd01
#> 2863    31152       12767  50451       <NA>
#> 2864    27708        9768   8815   AckeKe00
#> 2865    28204       10001   9115       <NA>
#> 2866    30846       12347  37997   HillJa01
#> 2867    25716        8162   7012   ClaiMo00
#> 2868       NA       12380  12063       <NA>
#> 2869       NA       13594     NA       <NA>
#> 2870    31297       13208  43029       <NA>
#> 2871    24960        7603   6325   MaxwBy00
#> 2872    29896       11373  11126   McKiJe01
#> 2873    30348       12170  11990   HolsJo01
#> 2874    28570       10475   9615       <NA>
#> 2875    31385       12580  50450       <NA>
#> 2876    30732       14511  51223       <NA>
#> 2877     6341        3008   1321   NewmTe20
#> 2878    29684       11538  11080   SmitC.00
#> 2879    32365       14185  50342       <NA>
#> 2880    30282       12012  11924   DecoTr00
#> 2881    32331       13849     NA       <NA>
#> 2882    30620       12282  12118       <NA>
#> 2883    25401        7937   6871   MoorSt00
#> 2884    31236       13150  50445       <NA>
#> 2885    29916       10934  11337   CalhTa01
#> 2886    29536       11493     NA       <NA>
#> 2887    31632       13269  66952       <NA>
#> 2888    29956       11515  11352   DurdKe00
#> 2889    30335       12027  11977   MyriJa00
#> 2890    31521       13415  50549       <NA>
#> 2891    30239       12036     NA       <NA>
#> 2892    30619       12404  12117   PipkLe00
#> 2893    30744       12399  12287       <NA>
#> 2894    30014       11407  11418   ElliJa01
#> 2895    31368          NA  49372       <NA>
#> 2896    30628       14605  49137       <NA>
#> 2897    27989        9960   9252   SeamSa00
#> 2898    31814       13570     NA       <NA>
#> 2899       NA       14167  56047       <NA>
#> 2900    26737        8830   7896   WebbBW00
#> 2901    27725        9699   8832   GoodDe00
#> 2902    25833        8166   7123   BoykBr00
#> 2903       NA       14298  39342       <NA>
#> 2904    26713        8905   7871   WebsKa00
#> 2905     8424        6211   3786   GayxWi99
#> 2906    31703       13313  49337       <NA>
#> 2907    28509       10421   9554   GranDo00
#> 2908    27608        9690   8715   McDoDe00
#> 2909    31273       13044  42401   ReavC.00
#> 2910    26043        8170   7385   JohnLe03
#> 2911    29848       11529  11243   HuntMi00
#> 2912    31406          NA  49351       <NA>
#> 2913    24876        7517   6241   WrigSh00
#> 2914    28656       10685   9784   RiceDe00
#> 2915    29564       11285     NA       <NA>
#> 2916    30776       12465  12192       <NA>
#> 2917     8797        5591   4334   TaliAq99
#> 2918    28959       10832   9974   DaniRo01
#> 2919     7182        4457   2223       <NA>
#> 2920    28430       10405   9475   CollJa02
#> 2921    31192       13001     NA       <NA>
#> 2922    26962        9162   8142   BurlMa00
#> 2923    28270        9830   9135   PatmTy00
#> 2924    28471       10418   9516   MageCr00
#> 2925    32286       14143  94367       <NA>
#> 2926     9480        6242   5140   MunnCa99
#> 2927    31658       12955     NA       <NA>
#> 2928    31672       13045  39373       <NA>
#> 2929    28715       10840  10294   ReedTr00
#> 2930    29847       11053  11227       <NA>
#> 2931    30093       11704  11517   RichJe02
#> 2932    32500       13690  50439       <NA>
#> 2933    31600       13227  50416       <NA>
#> 2934    29439       11136  10839   MillHa00
#> 2935    29294       11075  10694   JoneCy00
#> 2936    27676        9618   8783   BenwBe00
#> 2937    28237        9952   8989   NelsRo00
#> 2938    32269       14105     NA       <NA>
#> 2939     8272        5348   3634   HallLe98
#> 2940    26666        8638   7824   BankJo00
#> 2941    31314       12758  50381   NichDe00
#> 2942    27586        9381   8693   JeanSt00
#> 2943     8793        5749   4330   RodgDo99
#> 2944    30683       12021  12138       <NA>
#> 2945    28450       10410   9495   RollQu00
#> 2946    31631          NA  51138       <NA>
#> 2947    32112       14026  49482       <NA>
#> 2948    28552       10425   9597   DossLo00
#> 2949    29407       11224  10807   CaldTr00
#> 2950    31755       13362  49414       <NA>
#> 2951    30821       12107  49551   RiosMa00
#> 2952    31499       12833  50418       <NA>
#> 2953    31409       13107  51231       <NA>
#> 2954    28136       10445   9198   PhilDa00
#> 2955    28925       10396   9925   GuntLa00
#> 2956    29724       11575  11189       <NA>
#> 2957    24508        7017   5943   ShieSa00
#> 2958    30479       12535     NA       <NA>
#> 2959    29706       11377  11110   HillDa02
#> 2960    30443       12887  49554       <NA>
#> 2961    30913       12534  51668       <NA>
#> 2962    27698        9611   8805   ReasKe00
#> 2963    31630       13191  50446       <NA>
#> 2964    24079        6635   5628   VernAl99
#> 2965       NA       13380  29427       <NA>
#> 2966    32550       14266  34739       <NA>
#> 2967    32397       14193  49054       <NA>
#> 2968    31498       13066  50449       <NA>
#> 2969    31261       12666  31078   DelaDe00
#> 2970       NA       14245  27015       <NA>
#> 2971    32333       14100     NA       <NA>
#> 2972    32568       14250  94381       <NA>
#> 2973    31375       12960  49378       <NA>
#> 2974    32618       14322  33053       <NA>
#> 2975    31675       13047  12727       <NA>
#> 2976    32594       14303  26748       <NA>
#> 2977    32535       14019  94373       <NA>
#> 2978    24828        7470   6193   JenkJa01
#> 2979    31710       13308  66964       <NA>
#> 2980    30880       12761  25967       <NA>
#> 2981    31645       12554  48510       <NA>
#> 2982    30076       11669  11487       <NA>
#> 2983    24790        7462   6155   DareMa00
#> 2984    29415       11226  10815   HolmTy01
#> 2985     8779        5608   4316   LongCh99
#> 2986    32110       14024  37171       <NA>
#> 2987    31738       13345  28341       <NA>
#> 2988     8843        5726   4380   LangKe98
#> 2989     9334        6061   4993   JohnMi98
#> 2990    31449       13155  43695       <NA>
#> 2991     7840        5030   3036   RuckFr99
#> 2992    31776       13376  30458       <NA>
#> 2993    31353       13089  48833       <NA>
#> 2994    31307       12721  48941       <NA>
#> 2995    28097        9359   9109       <NA>
#> 2996    25759        8159   7052   ReyeKe00
#> 2997     8880        5869   4417   HayeWi99
#> 2998    29335       10954  10735   TappCh00
#> 2999     9296        6067   4955   HoodEv99
#> 3000    28784       10699   9939   DelaRy00
#> 3001    24665        7222   6112   JohnGe00
#> 3002    31668       13243  50589       <NA>
#> 3003    28551       10465   9596   RussRy00
#> 3004    27726        9682   8833   MoorZa00
#> 3005    25761        8156   7054   WortJe00
#> 3006    31371       13738  48946       <NA>
#> 3007    29029       10745  10048   CapiNo00
#> 3008    30405       11935  48353   PhilCa00
#> 3009    32147       14157  48465       <NA>
#> 3010    28587       10335   9632   WaltLe00
#> 3011    30507       12523  12304       <NA>
#> 3012    26663        8661   7821   CarrCo00
#> 3013    27554        9340   8661   SmitMa03
#> 3014    28485       10338   9530   GrisGe00
#> 3015    27588        9407   8695   EalyKo00
#> 3016    30386       12593  12059       <NA>
#> 3017    31489       13176  48818       <NA>
#> 3018    31765       13373  50300       <NA>
#> 3019    31791       13392  28766       <NA>
#> 3020     5888        2528   1010   PeppJu99
#> 3021    30497       12537  12023   TasiPa00
#> 3022    30376       12765  12209       <NA>
#> 3023    29856       11684  11232   LoewMi00
#> 3024    28432       10357   9477   KikaHa00
#> 3025    32320       14073  56886       <NA>
#> 3026    29687       11541  11083   VaeaDe01
#> 3027    32410       13617  49917       <NA>
#> 3028    26297        8470   7400   ShelDe00
#> 3029    30917       12329  48586       <NA>
#> 3030    29460       11241  10860   WoodJo00
#> 3031    30615       12595  12113       <NA>
#> 3032    29596       10874  10926       <NA>
#> 3033    31824       13935  28584       <NA>
#> 3034    27923        9378   9011   EdebKa00
#> 3035    30327       11936  11969   QualEl00
#> 3036    28242        9962   9063   McCaCh00
#> 3037    31807       13955  49643       <NA>
#> 3038    26300        8151   7401   SmitJa01
#> 3039     9691        5975   4907   WakeCa00
#> 3040    30708       12607  48891       <NA>
#> 3041    26085        8442   7365       <NA>
#> 3042    31188       12915  48606       <NA>
#> 3043    31266       12965  27010       <NA>
#> 3044    32534       14229  50033       <NA>
#> 3045    27093        9079   8484   HortWe00
#> 3046    31602       13225  26657       <NA>
#> 3047    32484       14221  48531       <NA>
#> 3048    32116       14007  50218       <NA>
#> 3049    30823       12540  48816       <NA>
#> 3050    30546       13314  12104       <NA>
#> 3051    31784          NA  48525       <NA>
#> 3052    32161       13591  48368       <NA>
#> 3053    30934       11911  23592   DaviKe03
#> 3054    29767       11552  11273       <NA>
#> 3055    31315       13215  48964       <NA>
#> 3056     9568        6381   5273       <NA>
#> 3057    32592       14301  48952       <NA>
#> 3058    27762        9784   8868   FedeTe00
#> 3059     9513        7202   5173   McDoCl99
#> 3060    30535       11940  12131   SickGa00
#> 3061    24817        7464   6182   WilkMu00
#> 3062    30504       12456  12299       <NA>
#> 3063    32255       14136  49588       <NA>
#> 3064    29799       11273  11165   LeexEr00
#> 3065    29424       11035  10824   ForrJo00
#> 3066    32285       14141  48427       <NA>
#> 3067    31355       12963  48552       <NA>
#> 3068    24451        7319   6031   UnreMi00
#> 3069    32385       14174     NA       <NA>
#> 3070    26840        8951   7999   BryaAr00
#> 3071    31702          NA  49638       <NA>
#> 3072    31678       13050  49584       <NA>
#> 3073    30280       11929  11922   MossAv00
#> 3074    31507       13163  66951       <NA>
#> 3075    26862        8968   8022   KingDa00
#> 3076    31037       12749  48565   ThomCh06
#> 3077    28051        9691   8938   WynnKe00
#> 3078    25947        8143   7221   JohnCa01
#> 3079    30948       12384  51981       <NA>
#> 3080    32399       14194  56885       <NA>
#> 3081    31520       13289  66925       <NA>
#> 3082    30626       11906  12246   BrowFa00
#> 3083     8356        5319   3718   RobiBr98
#> 3084    31539       13267  66923       <NA>
#> 3085    32248       13567  91464       <NA>
#> 3086    31277       13291  48436       <NA>
#> 3087    32089       14039  49991       <NA>
#> 3088    31541       13268  12893       <NA>
#> 3089    31357       13091  66932   JarvRi00
#> 3090    32519       14290  56643       <NA>
#> 3091    31586       13260  49983       <NA>
#> 3092    32203       13705  48652       <NA>
#> 3093    30608       12515  12106       <NA>
#> 3094    27602        9404   8709   BromJa00
#> 3095    27298        9193   8387   CharSt00
#> 3096    31774       12974  49906       <NA>
#> 3097    24778        9761   3378   JohnTo01
#> 3098    30730       12413  12230       <NA>
#> 3099    30787       12124  12323   NealLe00
#> 3100    31633       13194  44610       <NA>
#> 3101    31669       13244  50627       <NA>
#> 3102    24056        6683   5605   MitcEa99
#> 3103    28826       10720   9772   MbuxJo01
#> 3104    32619       14324  50085       <NA>
#> 3105    25225        7805   6483   SiliSe00
#> 3106    29581       11413  10937   LambDa01
#> 3107     9508        7141   5168   JeanRi99
#> 3108     7761        4743   2957   NgatHa20
#> 3109    31527       12665  48826       <NA>
#> 3110    28568       10312   9613   BennMi01
#> 3111    28109       10101   9310   SmitGa01
#> 3112    26823        8984   7981   LewiKa00
#> 3113    30605       13401  12157       <NA>
#> 3114    30215       11923  11857   JoneNa00
#> 3115    29050       10808  10101   JohnTo02
#> 3116     7883        5152   3079   WillKy20
#> 3117    27983       10025   8940   MedeJa00
#> 3118    28233       10443   8993   WarmJu00
#> 3119    30921       12633  51671       <NA>
#> 3120    26821        5250   7979   JoneCh04
#> 3121    32178       14053  49989       <NA>
#> 3122    28694       10615  10010   PierOl00
#> 3123    31392          NA  49990       <NA>
#> 3124    26054        8564   7459   WalkTy00
#> 3125    31788       13387  49890       <NA>
#> 3126    31446       13153  66936       <NA>
#> 3127    27972        9685   8976   WestEt00
#> 3128    30810       12485  48872   HatlRi00
#> 3129    32370       14161  14834       <NA>
#> 3130    31542       12756  50036   PittJa00
#> 3131    28580       10330   9625   PhilDa01
#> 3132    31248       12573  36926       <NA>
#> 3133    32146       14156  48633       <NA>
#> 3134    28928       10870   9928       <NA>
#> 3135    31312       13236  48695       <NA>
#> 3136    27245        9113   8261   FranA.00
#> 3137    31289       13253  44545       <NA>
#> 3138    28602       10489   9647   SokoKr00
#> 3139    29488       11543  10888   MaxeJo00
#> 3140    29683       11537  11079       <NA>
#> 3141     8967        6900   4504   RubiAh99
#> 3142    28523       10319   9568       <NA>
#> 3143    29314       10892  10714   WashAd00
#> 3144    31417       12864  50032       <NA>
#> 3145    31362       13088  48791       <NA>
#> 3146    27565        9254   8672   HageRa00
#> 3147    25048        7874   6607   ThorCe00
#> 3148    30701       12634  39139       <NA>
#> 3149    31474       12639  48732       <NA>
#> 3150    28789       10668   9944       <NA>
#> 3151    24852        7474   6217   McClTe00
#> 3152    28484       10327   9529   CoopXa00
#> 3153    32544       14263  55373       <NA>
#> 3154    28178        9636   9022       <NA>
#> 3155    28755       10347  10098   EullKa00
#> 3156    27610        9270   8717   SuttWi00
#> 3157    26960        9523   8184   BarnT.00
#> 3158    23978        6583   5528   McCoGe99
#> 3159    31686       13058  48737       <NA>
#> 3160    32524       14224  49971       <NA>
#> 3161    32445       14283  48982       <NA>
#> 3162    30021       11558  11490       <NA>
#> 3163    30517       12118  47053   OrtiRi00
#> 3164    30739       12414  12238   SmitSh02
#> 3165    29695       11266  11408   KerrJo00
#> 3166    29550       11047  10966   GronGl01
#> 3167    30757       12335  12260       <NA>
#> 3168    31467       13161     NA       <NA>
#> 3169    27739        9774   8845   ProsJa00
#> 3170    30318       11771  11961       <NA>
#> 3171    28496       10203   9541   FowlJa00
#> 3172    26299        8247   7377   ColeDe00
#> 3173    24760        8588   6142   DeveJa00
#> 3174    32216       14079  30027       <NA>
#> 3175    29571       11406  10931   CrosAl00
#> 3176    31513       13167  13455       <NA>
#> 3177    27135        8846   8420   LineZa01
#> 3178    26601        9899   8438       <NA>
#> 3179    28594       10205   9639   RipkAa00
#> 3180    31443       12789  47265       <NA>
#> 3181    28068        9857  10269   NixxRo01
#> 3182    25158        7970   6997   DiMaPa00
#> 3183    31407       13103     NA       <NA>
#> 3184    28583       10480   9628   JohnMa06
#> 3185    31340       13038  27536       <NA>
#> 3186    31341       13018  45660       <NA>
#> 3187    29939       11564     NA   TupoTa01
#> 3188    27744        9676   8850   HalxAn00
#> 3189    25884        8318   7166   TandKe00
#> 3190    30663       12928  49298       <NA>
#> 3191    30404       12876  51594       <NA>
#> 3192    24880        7539   6245   ContCh00
#> 3193    32430       14207  13543       <NA>
#> 3194    29021       10750   9850   ScotTi00
#> 3195    31333       13394  26637       <NA>
#> 3196    30358       12034     NA       <NA>
#> 3197    30825       12474  49127   ThomDy01
#> 3198    32567       14244  49074       <NA>
#> 3199    29027          NA  10044       <NA>
#> 3200    29952       11443  11343   EvanMa00
#> 3201    27680        9313   8787   BerhNa00
#> 3202    28801       10723   9698   WhitJe02
#> 3203    24112        6653   5659   LewiKe00
#> 3204    31587       12912  49274       <NA>
#> 3205    29577       10708  10935       <NA>
#> 3206    24977        7542   6342   JoneCo01
#> 3207    30311       12241     NA   ClarJe04
#> 3208    32572       14274  13581       <NA>
#> 3209    29086       10678  10117       <NA>
#> 3210    24219        6822   5767   ColeKu99
#> 3211    27650        9300   8757   HuffMa00
#> 3212     8422        5874   3784   GrahCo99
#> 3213    23989        6645   5539   ThomEa99
#> 3214     7864        4991   3060   BlacWi20
#> 3215     7121        4677   1972       <NA>
#> 3216    32106       13696     NA       <NA>
#> 3217    31455       13143  49138       <NA>
#> 3218    32478       13853  33180       <NA>
#> 3219    24590        7144   5820   StewDa00
#> 3220    27269        9093   8471   TrawBr00
#> 3221    29363       11093  10763   KindDe00
#> 3222    30508       12478  12306   SmitFi00
#> 3223    26989        9194   8102   MileRo00
#> 3224    30560       11995  12308   JeroLo00
#> 3225    31395       12816  49234       <NA>
#> 3226    26978        9192   8450   TerrSt00
#> 3227     7956        4972   3152   BethAn20
#> 3228    26922        9228   8525   CromMa01
#> 3229     9441        6903   5101   CareDo00
#> 3230     9376        6217   5035   QuinGl99
#> 3231    31237       12831  49136       <NA>
#> 3232    28879       11411   9753       <NA>
#> 3233     8291        5370   3653   WeddEr99
#> 3234    32531       14227  49084       <NA>
#> 3235     8275        5368   3637   NelsRe99
#> 3236     9311        6102   4970   MitcMi99
#> 3237    30461       12509  51293       <NA>
#> 3238    30687       12334  12142       <NA>
#> 3239    31693       13329  24816       <NA>
#> 3240    24139        6650   5686   JoneRe99
#> 3241       NA       14154  51344       <NA>
#> 3242    32507       14259  27965       <NA>
#> 3243    31159       12959  50460   MoorKa01
#> 3244    25849        8265   7136   BlanRo00
#> 3245    31294       12837  35978   KellKa02
#> 3246    32257       14138  94360       <NA>
#> 3247    31530       12750  50545       <NA>
#> 3248    25090        7817   6625   ParkRo01
#> 3249    28153        9299   9103   LadlKe00
#> 3250    30331       12214  11973   McQuLe01
#> 3251    31545       13261  45093       <NA>
#> 3252    31731       12718  51365       <NA>
#> 3253    32382       14169     NA       <NA>
#> 3254    32563       14241  60184       <NA>
#> 3255    25851        8338   7138   GettAd00
#> 3256    31419          NA  32671       <NA>
#> 3257    27628        9440   8735       <NA>
#> 3258    30554       12457  12272       <NA>
#> 3259    30665       12927  46129       <NA>
#> 3260    32167       14196  28936       <NA>
#> 3261    30414       11803  12223   LeexCa01
#> 3262    25026        7615   6391   PersMi00
#> 3263    32431       14278  46883       <NA>
#> 3264    30789       11822  12325       <NA>
#> 3265    29762       11549  11268   BaldAl01
#> 3266    29594       11416  10944   WestLe00
#> 3267    28603       10490   9648   WichCo00
#> 3268    25781        8337   7073   LeRiJo00
#> 3269    30235       11819  11877       <NA>
#> 3270    30325       12212  11967       <NA>
#> 3271    26070        8248   7338   LearRo00
#> 3272    31309       12577  33068   HearTa00
#> 3273    28032       10011   9216       <NA>
#> 3274    30599       12148  12148       <NA>
#> 3275     8379        6327   3741   BushJe20
#> 3276     9557        7002   5229   FostRa21
#> 3277    30400       11795  38837       <NA>
#> 3278    32593       14302  45497       <NA>
#> 3279    24020        6559   5570   BeadZa20
#> 3280    32249       14149  46057       <NA>
#> 3281    30501       12145  12300   CataTy00
#> 3282    26665        8735   7823   WatsMe00
#> 3283    31640       13199     NA       <NA>
#> 3284    30657       12429  46317   CrosCo00
#> 3285    29732       11448  11151       <NA>
#> 3286    25415        8439   6848   BellBy00
#> 3287    30289       11789  11931       <NA>
#> 3288    31311       13235  46194   MahoBr00
#> 3289     9538        6354   5390       <NA>
#> 3290    24888        7440   6253   BoliCl00
#> 3291    25750        8126   7044   SilaAm00
#> 3292    30817       12592  46707       <NA>
#> 3293    30684       11809  12139       <NA>
#> 3294    28951       10714   9862   JohnKa02
#> 3295    31536       12677  46073       <NA>
#> 3296    24036        6543   5586   DucaVl20
#> 3297    32637       14337  60159       <NA>
#> 3298    25889        8352   7169   TillAn01
#> 3299    26630        8702   7788   CoopJo01
#> 3300    32284       14108     NA       <NA>
#> 3301    30228       12200  11870       <NA>
#> 3302    32537       14260  46037       <NA>
#> 3303    32217       14060  27225       <NA>
#> 3304     9315        6052   4974   LeviAn20
#> 3305     9457        7119   5117   SlauMa20
#> 3306    27855       10010   9305   SirlJe00
#> 3307    29977       11096  11370   KirkDe00
#> 3308    29964       11521  11360       <NA>
#> 3309    26643        8731   7801   LongKy00
#> 3310    28579       10478   9623   SilbIa00
#> 3311    28083       10124   9232       <NA>
#> 3312    32460       14212  46782       <NA>
#> 3313    29395       10895  10795   WestCh02
#> 3314    29402       11025  10802   DranSp00
#> 3315    27671        9445   8778       <NA>
#> 3316    24959        7444   6324   FuscBr00
#> 3317       NA       14349     NA       <NA>
#> 3318    30277       11753  11919   AsiaIs00
#> 3319    31752       13133  46268       <NA>
#> 3320    27677        9744   8784   PampKe00
#> 3321    32156       14047     NA       <NA>
#> 3322    27228        9086   8230   KlinJo01
#> 3323    30593       12452  12084       <NA>
#> 3324    29863       10965  11237   TurnLa00
#> 3325    31639       13198  45239       <NA>
#> 3326    29676       11046  11072       <NA>
#> 3327    27888       10123   8960   KeriZa00
#> 3328    31458       13144  46092       <NA>
#> 3329    29583       11298  10958   PricGi00
#> 3330    31569       12668  46350       <NA>
#> 3331    32635       13604  46178       <NA>
#> 3332    26688        8703   7846   WarfLa00
#> 3333    28647       10765   9743       <NA>
#> 3334    31656       12741  46225       <NA>
#> 3335    30260       11811  11902       <NA>
#> 3336    31677       13048  46885   GoldZa00
#> 3337    30567       14176  12285       <NA>
#> 3338    31691       13204  66955       <NA>
#> 3339    32335       13952  46832       <NA>
#> 3340    32525       13676  46378       <NA>
#> 3341    30506       12444  12302   KaliKy00
#> 3342    28500       10298   9545   KouaAr00
#> 3343    27058        9119   8211   TobiMa00
#> 3344    29840       10972  11223       <NA>
#> 3345    29187       11450  10271       <NA>
#> 3346    26309        8604   7689   PaszAu00
#> 3347    32350       13957  46318       <NA>
#> 3348    31581       13259  48864       <NA>
#> 3349     9373        6337   5032   LangT.20
#> 3350    32583       14275  46039       <NA>
#> 3351    32620       14325  40799       <NA>
#> 3352     8340        5394   3702   YandMa20
#> 3353    31344       12694  38924       <NA>
#> 3354    31778       13377  32654       <NA>
#> 3355    29850       11741  11244       <NA>
#> 3356     8842        5717   4379   GrecJo20
#> 3357    31378       13389     NA       <NA>
#> 3358    27917       10088   9046   WalkJo00
#> 3359     8925        6323   4449   SittJo20
#> 3360    24067        6558   5616   LauvSh20
#> 3361    26411        8502   7703   BarcDo00
#> 3362    30929       12185  47169       <NA>
#> 3363    24048        6556   5598   JerrJo20
#> 3364    27266        9583  11481       <NA>
#> 3365    30903       12296  18066       <NA>
#> 3366    31303       13211  66449       <NA>
#> 3367    31304       12659  46666       <NA>
#> 3368    27508       10087   8928   VujnJe00
#> 3369    26709        8705   7867   ThorHu00
#> 3370    25754        8206   7642   AlleJe01
#> 3371    31512       13166  21885       <NA>
#> 3372    30585       12131  46857       <NA>
#> 3373    31232       13148  46682       <NA>
#> 3374    32197       14069  94377       <NA>
#> 3375    24127        6735   5674   ScotCh23
#> 3376    32241       13487  49714   TauaJo00
#> 3377    29484       10940  10884   WrigSc00
#> 3378    31272       13043  50904       <NA>
#> 3379    30514       12427  12083   BradBa00
#> 3380    31292       13254  49064       <NA>
#> 3381    31811       13554  22613       <NA>
#> 3382    31744       13942     NA       <NA>
#> 3383    30815       12448  49669   GarcJe01
#> 3384    31434       13112  50234       <NA>
#> 3385    31245       13125  51026       <NA>
#> 3386    28720       10865   9792   AndeZa01
#> 3387    31566       12742  51161   WorlCh00
#> 3388    31440       13118  66939       <NA>
#> 3389    32113       13899  58208       <NA>
#> 3390    30760       12471  12264   PeteOt00
#> 3391    30576       12133  50096   BellBr01
#> 3392    31487       13174  50742       <NA>
#> 3393    32512       13732  26073       <NA>
#> 3394    30635       12558  49204   ThomAh00
#> 3395    27649        9354   8756   BradCa01
#> 3396    32360       13869  58181       <NA>
#> 3397    30099       11708  11750   BighAd00
#> 3398    31563       13248  50845       <NA>
#> 3399    30039       11613  11431   SankDa00
#> 3400    32520       13838     NA       <NA>
#> 3401    30471       11964  12062   BullRi00
#> 3402    32340       13799  49887       <NA>
#> 3403    31661       13239  50920       <NA>
#> 3404    32453       13571  49864       <NA>
#> 3405    30220       11958  11862   BeckKe00
#> 3406    31717       13316  51019       <NA>
#> 3407    27740        9775   8846   FlowMa00
#> 3408    32100       14034  44987       <NA>
#> 3409    30857       12250  12348       <NA>
#> 3410    31504       13160  51015   WintAn00
#> 3411    32291       14140  50783       <NA>
#> 3412    30424       12355  12038   HarrNi00
#> 3413    32181       13731  89295       <NA>
#> 3414    29473       11243  10873   BateTr00
#> 3415    31780       13381  50667       <NA>
#> 3416    32446       13698  81293       <NA>
#> 3417    32190          NA  49816       <NA>
#> 3418    31663       13240  66953       <NA>
#> 3419    31468       13367     NA       <NA>
#> 3420    29359       11220  10759   MorrAn01
#> 3421    29394       10920  10794   BrotKe00
#> 3422    31187       12917  50812   BierKe00
#> 3423    30387       11974  12060       <NA>
#> 3424     5046        1299    595 janikseb01
#> 3425    29659       11434     NA   RoseNi00
#> 3426     4269         994    422 dawsophi01
#> 3427    27958        9816     NA   CoonTr00
#> 3428    31361       13093     NA       <NA>
#> 3429    32369       14160     NA       <NA>
#> 3430    26789        8898   7948   SturCa00
#> 3431    29834       11097     NA   KoehMa00
#> 3432     3727         395    226 vinatada01
#> 3433    28103        9845   9140   CataCh00
#> 3434     9219        5849     NA  barthco01
#> 3435     6243        2832   1223 bryanmat01
#> 3436     7505        4661     NA novaknic01
#> 3437    25509        7479   6767   HerzMa00
#> 3438    27682        9388   8789   GeorJe01
#> 3439    28999       10688   9911   LyncCa00
#> 3440    27801        9946   8929   CoylBr00
#> 3441    24827        7477   6192   CartBr00
#> 3442    27684        9385   8791   BarrLa00
#> 3443    24871        7478   6236   FostMa00
#> 3444    24507        7021   5945   ZombFr00
#> 3445     9072        5740   4583   WoodWe20
#> 3446    31305       13234  49695       <NA>
#> 3447    28506       10361   9551   WilsRa00
#> 3448    26855        8957   8015   BarrSa00
#> 3449    25940        8313   7214   StupNa01
#> 3450    28377       10153  10248   PeteBr00
#> 3451    32413       14252     NA       <NA>
#> 3452    28845       10677   9825   ArmbTh00
#> 3453    27179        9110   8138   MartJo02
#> 3454    26475        8578   7561   LamuEm00
#> 3455    31264       13039  49716       <NA>
#> 3456     9543        6283   5310   HumbRa00
#> 3457     8944        5811   4481   WaldEr99
#> 3458    25762        8183   7055   BrowZa00
#> 3459    25864        8344   7147   ToomKo00
#> 3460    25327        7718   6633   FreeJo01
#> 3461    27601        9387   8708   BrowPr00
#> 3462    26856        8821   8016   BassDa00
#> 3463    32648       14347  35991       <NA>
#> 3464     7569        7166   2476   AlexLo99
#> 3465    28788       10711   9943   KeyeJo00
#> 3466    27275        9106   8515   GarvTe00
#> 3467    24154        6753   5701   MoatAr00
#> 3468    27672        9371   8779   SmitTe01
#> 3469    24358        7285   6022   McClAl00
#> 3470    27557        9396   8664   EaslDo00
#> 3471     8006        5108   2945       <NA>
#> 3472    25593        7759   6817   JacoBe00
#> 3473    32651       13457  38864       <NA>
#> 3474    27736        9773   8842   PinkEr00
#> 3475    28908       10373   9815   HullMi01
#> 3476    28411       10308   9456   RayxSh00
#> 3477    23991        6569   5541   MorgDe99
#> 3478    25852        8252   7648   MarsBr01
#> 3479    26816        8956   7974   PalmNa01
#> 3480    24193        6606   5740   WatsDe99
#> 3481    24336        7215   5811   ReyxVi00
#> 3482    31313       13214  51465       <NA>
#> 3483    31288       12966  50145       <NA>
#> 3484    27770        9792   8876   NelsCo00
#> 3485    25748        8136   7042   BranAn00
#> 3486    28607       10371   9652   PullHa00
#> 3487    28470       10358   9515   MaulLo00
#> 3488    26238        8522   7280   BurfVo00
#> 3489     9310        6074   4969   BarwCo99
#> 3490    28916       10381   9824   VigiZa00
#> 3491    28517       10367   9562   RyanJa00
#> 3492     7191        4486   2232   JohnDe25
#> 3493    27638        9642   8745   AlexMa00
#> 3494     6346        3001   1326   SuggTe99
#> 3495    28529       10369   9574   SpaiMa00
#> 3496    28900       10676  10025   ThomCa02
#> 3497    28695       10379  10011   TimuJo00
#> 3498    25738        8135   7033   PerrNi00
#> 3499    31766       13369  50883       <NA>
#> 3500    32555       14269  51580       <NA>
#> 3501    24855        7498   6220   ShepKe00
#> 3502     9290        6072   4949   MattCl99
#> 3503    32239       13875     NA       <NA>
#> 3504    26743        8720   7902   HodgGe00
#> 3505    28528       10370   9573   HeenBe00
#> 3506    28560       10471   9605   AlexD.00
#> 3507    28943       10717   9962   WillJo05
#> 3508    31511       13173  24758       <NA>
#> 3509    32514       14230  39380       <NA>
#> 3510    28707       10617   9998   AndeJo01
#> 3511    28597       10336   9642   GwacOb00
#> 3512     9277        6056   4936   OrakBr99
#> 3513    32607       14315  49691       <NA>
#> 3514    28467       10350   9512   HaroEl00
#> 3515    24890        7454   6255   AchoSa00
#> 3516    28565       10378   9610   MounDe00
#> 3517    28998       10709   9910   LongMa00
#> 3518    24826        7475   6191   AyerAk00
#> 3519    27543        9369   8650   ShazRy00
#> 3520     7455        7122   2539   CondJo20
#> 3521    30970       12983     NA   DalySc01
#> 3522    32121       14030     NA       <NA>
#> 3523    24337        7178   5813   WindMi00
#> 3524     8370        5347   3732   DeOsZa99
#> 3525    27214        9145   8476   McDeKe00
#> 3526    31470       12792     NA       <NA>
#> 3527    29231       11192     NA       <NA>
#> 3528    31724       12703     NA       <NA>
#> 3529    32265       14152     NA       <NA>
#> 3530    32433       14279     NA       <NA>
#> 3531    30030       11577     NA   OverJe00
#> 3532    29330       10950  10730   ValeVi00
#> 3533    32517       14233     NA       <NA>
#> 3534    28611       10495   9656   SimoDe00
#> 3535    31217       12908  48637       <NA>
#> 3536    24808        7466   6173   TaylPh00
#> 3537    32308       13747  27584   WillGe02
#> 3538    31263          NA  49938       <NA>
#> 3539    31442       13120  50551       <NA>
#> 3540    32606       14311  48536       <NA>
#> 3541    32245       14142  94362       <NA>
#> 3542    32505       14217  44949       <NA>
#> 3543    31694       13330  66959       <NA>
#> 3544    32296       14095     NA       <NA>
#> 3545    31613       13301  48934       <NA>
#> 3546    30429       12604  48901       <NA>
#> 3547    30336       12215  11978       <NA>
#> 3548    32506       14218  58435       <NA>
#> 3549    31267       13042  38557   JohnLy00
#> 3550    31428       12862  23066       <NA>
#> 3551    32334       14101  50015       <NA>
#> 3552    32595       14304  48717       <NA>
#> 3553    30905       11909  49641   ClemCh00
#> 3554    30515       12265  49579       <NA>
#> 3555    31549       13273  28309       <NA>
#> 3556     8339        5393   3701   MebaBr99
#> 3557    31681       13049  39093       <NA>
#> 3558    24294        6973   5806   LoveKy00
#> 3559    31229       12664  27368       <NA>
#> 3560    32532       14228  37329       <NA>
#> 3561    26690        8677   7848   LogaBe00
#> 3562    31212       12588  49940       <NA>
#> 3563    29263       11148  10663   NkemRo00
#> 3564    30294       11912  11936   DonaDy00
#> 3565    31533       13262  49674       <NA>
#> 3566    30094       11735  11745       <NA>
#> 3567    32007       13462  27832       <NA>
#> 3568    31709       13307  50171       <NA>
#> 3569    29818       11118  11285   LongSt00
#> 3570    30261       11962  11903   BrowBl00
#> 3571    29955       10983  11351   CowsJa00
#> 3572    32477       13892  91477   DaniKa00
#> 3573    31147       12587  49817       <NA>
#> 3574    32316       13771  91467       <NA>
#> 3575    32549       13643  50232   PeacCh00
#> 3576    29584       11135  10938   McKiCa01
#> 3577    31696       13202  50836       <NA>
#> 3578    29797       11084  11164   KamaUf00
#> 3579    30803       12415  48388   PresGi00
#> 3580    32307       14123  57870       <NA>
#> 3581    32451       13605  48473       <NA>
#> 3582    30638       12423  50835   WoodXa01
#> 3583    31638       13197  50189       <NA>
#> 3584    29546       11318  10962   AlbrBr00
#> 3585    31300       12576  51032       <NA>
#> 3586    30489       12408  12016       <NA>
#> 3587    28798       10384   9695   RushMa00
#> 3588    30340       11907  11982   CarrJo00
#> 3589    29501       10971  11007   CashJe00
#> 3590    31714       13334  48511       <NA>
#> 3591    31377       12553  50287   HollJe01
#> 3592    32154       14045  50789       <NA>
#> 3593    32462       13923  49760       <NA>
#> 3594    31735       13343  50184       <NA>
#> 3595    30700       12084  12250   LewiLa01
#> 3596    31317       13217  31778       <NA>
#> 3597    30470       12608  50908       <NA>
#> 3598    31532       12748  50942   ThomMa00
#> 3599    30455       12650  12032       <NA>
#> 3600    30347       11934  11989   PricEj00
#> 3601    30462       12417  12031   OdomCh00
#> 3602    32305       14121  49870       <NA>
#> 3603    32377       14168  50780   HarvWi00
#> 3604    29894       11371  11124   KingDe00
#> 3605    30783       12497  12319       <NA>
#> 3606    32558       13543  50105       <NA>
#> 3607    31412       13105  30063       <NA>
#> 3608    32499       13975  50204       <NA>
#> 3609    32529       14226  28100       <NA>
#> 3610    32401       14020  50286       <NA>
#> 3611    31230       12796  50074       <NA>
#> 3612    31802       13402  29246       <NA>
#> 3613    32654       13837  50975       <NA>
#> 3614    32343       14115  51199       <NA>
#> 3615    29713       11570  11183       <NA>
#> 3616    32131       13772  35938       <NA>
#> 3617    31570          NA  49761       <NA>
#> 3618    32540       14262     NA       <NA>
#> 3619    32311       14122  94368       <NA>
#> 3620    28809       10614   9803   MartGa00
#> 3621    29456       11239  10856   WallAa00
#> 3622    31720       13338  50108       <NA>
#> 3623    31679       13051  27390   HineDJ00
#> 3624    32288       14137  75806       <NA>
#> 3625    31745       13350  50923       <NA>
#> 3626    30393       12060  48594       <NA>
#> 3627    31502       13405  50972       <NA>
#> 3628    31471       13029  45663       <NA>
#> 3629    32586       14242  37438       <NA>
#> 3630    31186       12487  49818       <NA>
#> 3631    32617       14323  50303       <NA>
#> 3632   900007       10862  10338   BishFr00
#> 3633    29437       11147  10837   NicoDa00
#> 3634    31568       13278  49729       <NA>
#> 3635    29403       11263  10803   WillAn01
#> 3636    30764       14483  12268       <NA>
#> 3637    32434       13792  39605       <NA>
#> 3638    29832       11595  11208       <NA>
#> 3639    28536       10363   9581       <NA>
#> 3640    28599       10487   9644       <NA>
#> 3641    31197       13006  51491   PoliQu00
#> 3642    30640       12303  12211   AlleCh02
#> 3643    32042       13754  50932       <NA>
#> 3644    30281       11975  11923   LeexMa01
#> 3645    31979       13506  51047       <NA>
#> 3646    31597       13232  18551   ThomCo02
#> 3647    31398          NA  50797       <NA>
#> 3648    29937       11563  11317   RobePe01
#> 3649    30881       12521  12409       <NA>
#> 3650    29617       11386  11014   DoraVo00
#> 3651    29522       11476  10992   LandCh00
#> 3652    30361       12222  12003       <NA>
#> 3653    30100       11711  11749       <NA>
#> 3654    28902       10805  10027       <NA>
#> 3655    29716       11573  11187   GrigNi01
#> 3656    31469       13344     NA       <NA>
#> 3657    31472       12755  50272       <NA>
#> 3658    31290       12717  46597       <NA>
#> 3659    30198       11794  11840       <NA>
#> 3660    31438       13116  47025       <NA>
#> 3661    31559       13246  66954       <NA>
#> 3662    30847       12980  46330       <NA>
#> 3663    32353       14178  46342       <NA>
#> 3664    29675       11532  11071   GordDi01
#> 3665    31697       13332  46856       <NA>
#> 3666    31596       13231  46243       <NA>
#> 3667    32090       13858  41770       <NA>
#> 3668    31674       13046  30713       <NA>
#> 3669    31285       13249  39334       <NA>
#> 3670    28217       10097   9160       <NA>
#> 3671    29919       11346  11340       <NA>
#> 3672    30323       11817     NA       <NA>
#> 3673    31326       13223  30687       <NA>
#> 3674    32643       13945  97057       <NA>
#> 3675    30344       12217  11986   WareJy00
#> 3676    31254       13284  26461       <NA>
#> 3677    31593       12603  47015       <NA>
#> 3678    29947       11128  11329   MarzTy01
#> 3679    28948       10746   9860   ClauBl01
#> 3680    31616       13294  24752       <NA>
#> 3681    28960       13317   9975       <NA>
#> 3682    29858       11509     NA       <NA>
#> 3683    31249       13122  29930       <NA>
#> 3684    29969       11466  11346   SterZa00
#> 3685    32373       14173     NA       <NA>
#> 3686    32587       14240     NA       <NA>
#> 3687    26796        9363   7955   PainVi00
#> 3688    30457       12101  12025       <NA>
#> 3689    28631       10306   9676       <NA>
#> 3690    32423       14202  47000       <NA>
#> 3691    31426       13124  46946       <NA>
#> 3692    32196       13719  27847       <NA>
#> 3693    32485       14291  28334       <NA>
#> 3694    31332       12688  46875       <NA>
#> 3695    32274       14145  26627       <NA>
#> 3696    30313       11757  11955   BisnAd00
#> 3697    32571       14277  46897       <NA>
#> 3698    30584       12482  46807   PerkKe00
#> 3699    30413       12284  12221       <NA>
#> 3700    31725       13319  46221       <NA>
#> 3701    32182       13724  46217       <NA>
#> 3702    30473       12381  46332       <NA>
#> 3703    31757       13364  46370       <NA>
#> 3704    31692       13324     NA       <NA>
#> 3705    28646       10764   9742   BoykBr01
#> 3706    32064       13992     NA       <NA>
#> 3707    29434       11140  10834       <NA>
#> 3708    31453       13141  46976       <NA>
#> 3709    30910       12981  38173       <NA>
#> 3710    32209       13916     NA       <NA>
#> 3711    32539       14261     NA       <NA>
#> 3712    32185       14058  37228       <NA>
#> 3713    30753       12516  12296       <NA>
#> 3714    32119       14029  26501       <NA>
#> 3715    31673       12732  46920       <NA>
#> 3716    32264       14151  60087       <NA>
#> 3717    32349       13882  45388       <NA>
#> 3718    32347          NA  46840       <NA>
#> 3719    29746       11576  11193   MurpPa00
#> 3720    31456       12856  15466   HarrDe05
#> 3721    30723       12439  12172       <NA>
#> 3722    31604       13229  46960       <NA>
#> 3723    29331       11154  10731   OdhiRe00
#> 3724    29773       11556  11277       <NA>
#> 3725    32312       14125  46668       <NA>
#> 3726    30537       11824  12133       <NA>
#> 3727    28625       10499   9670   MihaBr00
#> 3728    32132       13937  38739       <NA>
#> 3729    30101       11727     NA       <NA>
#> 3730    31628       13292     NA       <NA>
#> 3731     5171        7123    673   LechSh20
#> 3732    31689       12695     NA       <NA>
#> 3733    30113       12197     NA       <NA>
#> 3734    27459        9027   8104   SchmCo00
#> 3735    30621       11826  12119   VogeJu00
#> 3736     6983        4066   1939   JoneDo21
#> 3737    32548       14265     NA       <NA>
#> 3738     8020        7975   3493   RyanJo21
#> 3739    28307       10131   9155   RedfKa00
#> 3740    30086       12424     NA       <NA>
#> 3741    26422        9083   7410   KingMa00
#> 3742    26468        8389   7573   QuigRy00
#> 3743    28905       10693   9812   DarrMa00
#> 3744    24979        7562   6344   BoshMa00
#> 3745    30967       13419  38062   WadmCo00
#> 3746    32166       14088     NA       <NA>
#> 3747    26778        8985     NA   LockJe00
#> 3748    32282       13968  46604       <NA>
#> 3749    29373       11007  10773   JoneCa01
#> 3750    31804       13404     NA       <NA>
#> 3751    26346        8499   7305       <NA>
#> 3752    25767        8033   7059   OsweBr00
#> 3753    28491       10163   9536   PettBr01
#> 3754    26738        8748   7897   JoneLa02
#> 3755    31560       12652  46580       <NA>
#> 3756    31734       13078  66453       <NA>
#> 3757    31688       12700  46594       <NA>
#> 3758    23976        6452   5526   BradSa00
#> 3759    31365       12657  46387       <NA>
#> 3760    31695       13183  25079       <NA>
#> 3761    27429        8991   8374   McGlMa01
#> 3762    32479       13518     NA       <NA>
#> 3763    29260       10730  10660   LyncPa00
#> 3764    31173       12491  38321       <NA>
#> 3765    30800       12309  39739       <NA>
#> 3766     6624        3153   1693   RomoTo00
#> 3767    29812       10915  11279   BoykTr00
#> 3768    31308       13213  66929       <NA>
#> 3769    27663        9701   8770   SavaTo00
#> 3770     7389        4313   2430   AndeDe00
#> 3771     6760        3763   1722   MannEl00
#> 3772    31252       12913  46542       <NA>
#> 3773    29284       10733  10685       <NA>
#> 3774    31169       12770  46586   FalkLu00
#> 3775    32634       14336  39415       <NA>
#> 3776    31330       13068  66934       <NA>
#> 3777    29334       10978  10734   CookCo00
#> 3778    31490       12638  34874       <NA>
#> 3779    31351       13086  29577       <NA>
#> 3780    29327       11090  10727   KessCo00
#> 3781     9269        5973   4928   SancMa00
#> 3782    26639        8749   7797   ManuEJ00
#> 3783    25732        8056   7028   WeedBr00
#> 3784    26317        8374   7423   SimmMa00
#> 3785    31239       13151  54507       <NA>
#> 3786     6337        3014   1317   PalmCa00
#> 3787    29722       11441  11144   CallJo00
#> 3788    32152       14040  27308       <NA>
#> 3789    25711        7237   7007   LuckAn00
#> 3790    30328       11835  11970       <NA>
#> 3791     7406        4574   2447   CassMa00
#> 3792    29870       10943  11253       <NA>
#> 3793    32327       13908  46399       <NA>
#> 3794    28463       10175   9508   GrayGa00
#> 3795    28272        9550   9286   OlivBr01
#> 3796    29661       10898  11057   WildBr01
#> 3797    32419       13452  35859       <NA>
#> 3798    30351       12219  11994   MaysDe00
#> 3799    29085       10568  10115   BrowMa02
#> 3800    32238       14082  45826   HillJo03
#> 3801    28887       10188   9761   ZennZa00
#> 3802    25238        7666   6432   AsiaMa00
#> 3803    28714       10185   9993   RawlTh00
#> 3804    31514       12867  35977       <NA>
#> 3805    31781       13379  45966       <NA>
#> 3806    29575       11410  10933   HansRu00
#> 3807    31795       13395  45705       <NA>
#> 3808    31825       13936     NA       <NA>
#> 3809    29805       10956  11265   ThomLa04
#> 3810    24858        7359   6223   MurrDe00
#> 3811    31595       12894  23614   FordKe00
#> 3812    27597        9519   8704   SimsCh00
#> 3813    26596        8083   8547   WhitFo00
#> 3814    28283        9841   9244   TousFi00
#> 3815    26810        8757   7968   ElliAn00
#> 3816    32466       13500  30806       <NA>
#> 3817    30873       12419     NA       <NA>
#> 3818     8850        5663   4387   CharJa00
#> 3819    31653       12744  45802       <NA>
#> 3820    32400       14061  94358       <NA>
#> 3821    29694       11265  11090       <NA>
#> 3822    26024        8454   7457   CadeTr00
#> 3823    32226       13524  35314       <NA>
#> 3824    31423       13108  26401       <NA>
#> 3825    28865       10191   9717   WillTr03
#> 3826    28044        9891   9047   WestCh01
#> 3827    29599       11005  10907   FergJo02
#> 3828    28537       10082   9582   AjayJa00
#> 3829    31338       12475  29310       <NA>
#> 3830    29700       10969  11104   CarsTr01
#> 3831     8266        5202   3628   LyncMa00
#> 3832    31196       13005  45732  WillDa011
#> 3833    27167        9062   8283   CunnBe01
#> 3834    28513       10066   9558   AlleJa01
#> 3835    28014        9535   9295   CrowIs00
#> 3836    30915       12327  45898       <NA>
#> 3837    32579       14276  45943       <NA>
#> 3838    27666        9539   8773   TaliLo00
#> 3839    30703       11770  45841       <NA>
#> 3840    31805       13409     NA       <NA>
#> 3841    32597       14299  45974       <NA>
#> 3842     8821        5662   4358   FortMa00
#> 3843    31241       12943  27875   ThomRo05
#> 3844    26878        8931   8101   AndeC.00
#> 3845    24400        6833   6007   IvorCh00
#> 3846    29518       11209  10988   FarrKe02
#> 3847    31798       13398  40196       <NA>
#> 3848    25816        8028   7106   TurbRo00
#> 3849   900379          NA  39604       <NA>
#> 3850    32615       14320     NA       <NA>
#> 3851    32621       14326  95845       <NA>
#> 3852    27583        9350   8690   HillJe01
#> 3853    30370       11759  12202   DaviJu00
#> 3854    30365       11760  12006   DayeMa00
#> 3855    25481        8022   6440   DrauSh00
#> 3856    31339       13079  40665       <NA>
#> 3857    30658       12229  26758   DaniLe00
#> 3858    29715       11012  11186   GreeAa01
#> 3859     8790        5578   4327   StewJo00
#> 3860    29178       10511   9889   WatsTe00
#> 3861    30245       11769  11887       <NA>
#> 3862    29993       11340  11383       <NA>
#> 3863     8801        5627   4338   JohnCh04
#> 3864    26853        8766   8013   WillKe05
#> 3865    28562       10187   9607   ArtiCa00
#> 3866    31748       13355     NA       <NA>
#> 3867    28526       10149   9571   CobbDa00
#> 3868    28185        9280   9187   AtkiGe01
#> 3869    28953       10195   9864   MageTe00
#> 3870    31575       12895  45861   ColeLa02
#> 3871    30696       12344  12197       <NA>
#> 3872     7306        4320   2347   SproDa00
#> 3873    29542       11197  10982       <NA>
#> 3874    31590       13021  45948       <NA>
#> 3875    27821        9238   8906   BibbKa00
#> 3876     8926        5785   4463   HighTi00
#> 3877    24913        7367   6278   PoweBi00
#> 3878    28494       10186   9539   LangJe00
#> 3879    27622        9282   8729   WestTe00
#> 3880    28847       10196   9827   GranCo00
#> 3881    31425       13130  25681   TurnDe01
#> 3882    32376       14166  29027       <NA>
#> 3883    31396       12893  24942       <NA>
#> 3884    24843        7250   6208   VereSh00
#> 3885    27709        9360   8816   BlueAl00
#> 3886    27790        9534   9184   FlueDa00
#> 3887    28483       10189   9528   JoneMa04
#> 3888    31622       12783  28564       <NA>
#> 3889    30496       12891  12022       <NA>
#> 3890    31704       13312  26957       <NA>
#> 3891    26787        8760   7946   GillMi00
#> 3892    32508       13638  38565       <NA>
#> 3893    31029       12620  45664   GuicDe00
#> 3894    26079        8937   7361   BanyJo00
#> 3895    29680       11125  11076   MarsBy01
#> 3896    31685       13057  45695   NewsDe00
#> 3897    32395       13951  45985       <NA>
#> 3898    25777        8030   7069   HillRo00
#> 3899    30650       11773  45671   SmitDe06
#> 3900    29821       10938  11286   MaddTr01
#> 3901    29471       10997  10871   LascDa00
#> 3902    32332       14090     NA       <NA>
#> 3903    23987        6449   5537   MathRy00
#> 3904    24318        6482   5863   BlouLe00
#> 3905    32279       13657  45989       <NA>
#> 3906    29184       10636  10292   HillBr01
#> 3907    28874       10197   9839   HuntAk01
#> 3908    24932        7253   6297   RodgJa00
#> 3909    30717       12339  12167       <NA>
#> 3910    30234       11778  11876       <NA>
#> 3911    30319       11762  11958   HendDe01
#> 3912    32043       13637  35170       <NA>
#> 3913    32129       14011  34388       <NA>
#> 3914    26685        8758   7843   MichCh00
#> 3915    30354       11706  11997   HoodEl00
#> 3916    31787       13385  38976       <NA>
#> 3917    30533       12336  12129       <NA>
#> 3918    24860        7361   6225   RidlSt00
#> 3919    31275       13027  47518       <NA>
#> 3920    30398       12116     NA       <NA>
#> 3921    32170       13832  45711       <NA>
#> 3922    32162       14042  94355       <NA>
#> 3923    26719        8600   7878   DaviKn00
#> 3924    31335       13326  66918       <NA>
#> 3925    32473       13665  30228   HillWe00
#> 3926    28618       10200   9663   MurpMa03
#> 3927    31564       12904  45939       <NA>
#> 3928    30587       12313  45938   WillJa07
#> 3929    31278       13070  45993   WilsSh01
#> 3930    23984        6478   5534   SpilC.00
#> 3931     9560        5816   4914   WoodDa02
#> 3932     8781        5579   4318   McFaDa00
#> 3933    31485       12947  30845       <NA>
#> 3934    31082       12463  45996   WaltMa00
#> 3935    26684        8620   7842   LacyEd00
#> 3936    31466       13024     NA       <NA>
#> 3937    29368       10989  10768   DixoKe00
#> 3938    31493       13177     NA       <NA>
#> 3939    25741        8058   7035   MartDo00
#> 3940    31360       12733  49155       <NA>
#> 3941    32149       14255  56268       <NA>
#> 3942    32510       13694  91420       <NA>
#> 3943    31259       13287  49150       <NA>
#> 3944    31448       13146  49474       <NA>
#> 3945    27710        9339   8817   ExumAn00
#> 3946    32394       13695  49422       <NA>
#> 3947    28585       10386   9630   SmitDe05
#> 3948    29845       11500  11226   ElstTr01
#> 3949    27081        8688   8361   JeffTo00
#> 3950    27549        9288   8656   ClinHa00
#> 3951    28828       11188   9774       <NA>
#> 3952    30557       12135  12274       <NA>
#> 3953    31363       13305  66920       <NA>
#> 3954    25091        7530   6621   JohnJe02
#> 3955       NA       14084  34876       <NA>
#> 3956    29022       10540   9851       <NA>
#> 3957    28830       10692   9776   TherRo00
#> 3958    26288        8476   7396   McCrKe00
#> 3959    29286       10985  10687   CravSu00
#> 3960    31611       12745  49041       <NA>
#> 3961    32260       13767  51413       <NA>
#> 3962    30334       12000  11976   LuanSh00
#> 3963    24603        7057   5924   ChurBa99
#> 3964    31306       13212  49046       <NA>
#> 3965    26866        8940   8026   IshmKe00
#> 3966    29833       11104  11291   PoweTy01
#> 3967    24326        7186   5906   MaraCh99
#> 3968    32108       13922  36125       <NA>
#> 3969    32184       13980  51430       <NA>
#> 3970    29829       11593  11206   HendA.00
#> 3971    29061       10566  10055   JoneHa02
#> 3972    30485       13408  12012       <NA>
#> 3973    29361       11050  10761   HallDe02
#> 3974    24259        6909   5779   BushRa00
#> 3975    27653        9587   8760   AikeWa00
#> 3976    29216       10829  10341   McCoDe00
#> 3977    31763       13360  49014       <NA>
#> 3978    30236       12003  11878   NichMo00
#> 3979    30807       13165  12199       <NA>
#> 3980    32228       13578  33565       <NA>
#> 3981    31664       13241  49063       <NA>
#> 3982    26641        8685   7799   ReidEr00
#> 3983    32591       13902  49066       <NA>
#> 3984    28889       10391  10015   DrumKu01
#> 3985    32165       14195  30633       <NA>
#> 3986    26734        8780   7893   ThomSh00
#> 3987    24046        6648   5596   BurnMo99
#> 3988    28712       10665   9991   MartRo01
#> 3989    30713       12407  12165   SullTr01
#> 3990    30578       12425  51176   CoxxDe00
#> 3991    31296       13065  51402       <NA>
#> 3992    30460       12147  12026       <NA>
#> 3993    28870       10603   9834   CurrJu00
#> 3994    30961       12931  10226       <NA>
#> 3995    30300       12006  11942   TysoMi00
#> 3996    32468       13644  27380       <NA>
#> 3997    26484        8495   7593   PleaEd00
#> 3998    31829       13940     NA       <NA>
#> 3999    24109        6651   5656   ChanKa99
#>                                                                                          headshot_url
#> 1                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115972.png
#> 2                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128707.png
#> 3                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038999.png
#> 4                        https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13975.png
#> 5                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821572.png
#> 6                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977742.png
#> 7                         https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9610.png
#> 8                        https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15817.png
#> 9                        https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13980.png
#> 10                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14940.png
#> 11                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035402.png
#> 12                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123966.png
#> 13                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043089.png
#> 14                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579163.png
#> 15                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15782.png
#> 16                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929648.png
#> 17                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138765.png
#> 18                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15906.png
#> 19                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17017.png
#> 20                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517779.png
#> 21                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574582.png
#> 22                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035666.png
#> 23                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915282.png
#> 24                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577466.png
#> 25                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910660.png
#> 26                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971881.png
#> 27                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15025.png
#> 28                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115482.png
#> 29                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045286.png
#> 30                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15808.png
#> 31                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122145.png
#> 32                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512538.png
#> 33                        https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8461.png
#> 34                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043234.png
#> 35                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16486.png
#> 36                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4334300.png
#> 37                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16820.png
#> 38                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576482.png
#> 39                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894901.png
#> 40                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047582.png
#> 41                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514270.png
#> 42                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980504.png
#> 43                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042895.png
#> 44                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971432.png
#> 45                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051925.png
#> 46                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040180.png
#> 47                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14927.png
#> 48                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046605.png
#> 49                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043197.png
#> 50                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576809.png
#> 51                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035875.png
#> 52                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035462.png
#> 53                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15241.png
#> 54                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13292.png
#> 55                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035452.png
#> 56                        https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9709.png
#> 57                        https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5713.png
#> 58                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917315.png
#> 59                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040206.png
#> 60                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577189.png
#> 61                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979843.png
#> 62                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119195.png
#> 63                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052143.png
#> 64                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242873.png
#> 65                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978124.png
#> 66                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039274.png
#> 67                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971605.png
#> 68                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3859100.png
#> 69                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127287.png
#> 70                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914630.png
#> 71                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15035.png
#> 72                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120434.png
#> 73                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576585.png
#> 74                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13998.png
#> 75                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971048.png
#> 76                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052166.png
#> 77                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115981.png
#> 78                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566659.png
#> 79                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917292.png
#> 80                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970726.png
#> 81                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4212989.png
#> 82                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4198679.png
#> 83                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124537.png
#> 84                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894883.png
#> 85                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16172.png
#> 86                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914328.png
#> 87                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15795.png
#> 88                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124369.png
#> 89                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4373937.png
#> 90                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048717.png
#> 91                        https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5528.png
#> 92                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895856.png
#> 93                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122168.png
#> 94                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12616.png
#> 95                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126302.png
#> 96                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17211.png
#> 97                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4360643.png
#> 98                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16718.png
#> 99                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982866.png
#> 100                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239995.png
#> 101                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915437.png
#> 102                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048718.png
#> 103                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925358.png
#> 104                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16882.png
#> 105                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15881.png
#> 106                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915122.png
#> 107                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3858276.png
#> 108                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054962.png
#> 109                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15936.png
#> 110                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980100.png
#> 111                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134315.png
#> 112                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14020.png
#> 113                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051376.png
#> 114                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124015.png
#> 115                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576492.png
#> 116                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411771.png
#> 117                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517230.png
#> 118                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035494.png
#> 119                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17315.png
#> 120                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13993.png
#> 121                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2587711.png
#> 122                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044138.png
#> 123                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3672833.png
#> 124                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049899.png
#> 125                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048898.png
#> 126                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16449.png
#> 127                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243009.png
#> 128                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976545.png
#> 129                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3055105.png
#> 130                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051852.png
#> 131                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120810.png
#> 132                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3137087.png
#> 133                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050073.png
#> 134                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15151.png
#> 135                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916449.png
#> 136                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11237.png
#> 137                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040535.png
#> 138                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5615.png
#> 139                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886841.png
#> 140                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977644.png
#> 141                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123969.png
#> 142                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125403.png
#> 143                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123944.png
#> 144                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976099.png
#> 145                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045128.png
#> 146                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15874.png
#> 147                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3157727.png
#> 148                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16713.png
#> 149                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16247.png
#> 150                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127304.png
#> 151                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14099.png
#> 152                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924365.png
#> 153                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118954.png
#> 154                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925357.png
#> 155                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917914.png
#> 156                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037235.png
#> 157                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4366710.png
#> 158                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13982.png
#> 159                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4052137.png
#> 160                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126002.png
#> 161                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115378.png
#> 162                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051889.png
#> 163                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115255.png
#> 164                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037481.png
#> 165                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516865.png
#> 166                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3863820.png
#> 167                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576733.png
#> 168                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035112.png
#> 169                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578378.png
#> 170                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16948.png
#> 171                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976244.png
#> 172                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13963.png
#> 173                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4027919.png
#> 174                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912545.png
#> 175                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126356.png
#> 176                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054841.png
#> 177                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047188.png
#> 178                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915255.png
#> 179                                                                                              <NA>
#> 180                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914477.png
#> 181                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045130.png
#> 182                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929846.png
#> 183                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115914.png
#> 184                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915186.png
#> 185                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053044.png
#> 186                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14964.png
#> 187                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035245.png
#> 188                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895837.png
#> 189                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115492.png
#> 190                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915837.png
#> 191                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11284.png
#> 192                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125872.png
#> 193                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15973.png
#> 194                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2975417.png
#> 195                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14018.png
#> 196                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037650.png
#> 197                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912157.png
#> 198                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046551.png
#> 199                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576569.png
#> 200                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15792.png
#> 201                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242247.png
#> 202                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054842.png
#> 203                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15683.png
#> 204                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122141.png
#> 205                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036153.png
#> 206                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14202.png
#> 207                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242207.png
#> 208                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579634.png
#> 209                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122766.png
#> 210                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040037.png
#> 211                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040615.png
#> 212                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042445.png
#> 213                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15264.png
#> 214                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3961466.png
#> 215                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060403.png
#> 216                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915184.png
#> 217                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13848.png
#> 218                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15875.png
#> 219                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16857.png
#> 220                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054971.png
#> 221                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9789.png
#> 222                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035671.png
#> 223                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916387.png
#> 224                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14875.png
#> 225                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116172.png
#> 226                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13981.png
#> 227                                                                                              <NA>
#> 228                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051926.png
#> 229                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241985.png
#> 230                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038441.png
#> 231                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577139.png
#> 232                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13845.png
#> 233                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045463.png
#> 234                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039713.png
#> 235                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16004.png
#> 236                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12622.png
#> 237                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980153.png
#> 238                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116370.png
#> 239                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517074.png
#> 240                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915136.png
#> 241                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116365.png
#> 242                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915400.png
#> 243                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511973.png
#> 244                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574591.png
#> 245                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17348.png
#> 246                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932423.png
#> 247                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043161.png
#> 248                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13215.png
#> 249                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576581.png
#> 250                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916204.png
#> 251                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515962.png
#> 252                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241372.png
#> 253                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728254.png
#> 254                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3909416.png
#> 255                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16945.png
#> 256                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040628.png
#> 257                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039050.png
#> 258                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17258.png
#> 259                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514122.png
#> 260                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929631.png
#> 261                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16385.png
#> 262                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042717.png
#> 263                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15124.png
#> 264                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971734.png
#> 265                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576665.png
#> 266                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895791.png
#> 267                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916577.png
#> 268                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16898.png
#> 269                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3133440.png
#> 270                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057524.png
#> 271                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121003.png
#> 272                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3672862.png
#> 273                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15960.png
#> 274                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3957672.png
#> 275                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13245.png
#> 276                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16751.png
#> 277                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240585.png
#> 278                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051371.png
#> 279                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14320.png
#> 280                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980098.png
#> 281                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15802.png
#> 282                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577078.png
#> 283                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117255.png
#> 284                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982857.png
#> 285                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4262273.png
#> 286                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971883.png
#> 287                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057899.png
#> 288                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039303.png
#> 289                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512577.png
#> 290                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15879.png
#> 291                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040166.png
#> 292                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917232.png
#> 293                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127313.png
#> 294                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929950.png
#> 295                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895831.png
#> 296                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240528.png
#> 297                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051398.png
#> 298                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127075.png
#> 299                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035232.png
#> 300                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15964.png
#> 301                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976249.png
#> 302                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16475.png
#> 303                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046287.png
#> 304                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976549.png
#> 305                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039396.png
#> 306                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15948.png
#> 307                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240689.png
#> 308                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052600.png
#> 309                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918298.png
#> 310                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035676.png
#> 311                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976516.png
#> 312                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16944.png
#> 313                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14167.png
#> 314                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4420894.png
#> 315                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040629.png
#> 316                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040761.png
#> 317                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15979.png
#> 318                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2519038.png
#> 319                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917159.png
#> 320                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886808.png
#> 321                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3707061.png
#> 322                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051324.png
#> 323                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514244.png
#> 324                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977954.png
#> 325                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15724.png
#> 326                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930086.png
#> 327                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582410.png
#> 328                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125999.png
#> 329                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039505.png
#> 330                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14215.png
#> 331                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122818.png
#> 332                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115315.png
#> 333                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128724.png
#> 334                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3085107.png
#> 335                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976212.png
#> 336                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16804.png
#> 337                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043841.png
#> 338                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16016.png
#> 339                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15349.png
#> 340                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13226.png
#> 341                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243537.png
#> 342                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242540.png
#> 343                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16847.png
#> 344                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17196.png
#> 345                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928936.png
#> 346                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843769.png
#> 347                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3943270.png
#> 348                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14989.png
#> 349                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046679.png
#> 350                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051929.png
#> 351                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046353.png
#> 352                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121552.png
#> 353                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040506.png
#> 354                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241889.png
#> 355                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035290.png
#> 356                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138733.png
#> 357                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16877.png
#> 358                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126238.png
#> 359                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043169.png
#> 360                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139108.png
#> 361                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115456.png
#> 362                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035726.png
#> 363                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126362.png
#> 364                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972362.png
#> 365                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259594.png
#> 366                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035631.png
#> 367                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051766.png
#> 368                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3734467.png
#> 369                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577392.png
#> 370                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17071.png
#> 371                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035495.png
#> 372                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046721.png
#> 373                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051369.png
#> 374                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15862.png
#> 375                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035407.png
#> 376                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4212884.png
#> 377                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915304.png
#> 378                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576639.png
#> 379                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916943.png
#> 380                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259480.png
#> 381                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3163375.png
#> 382                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16741.png
#> 383                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124084.png
#> 384                                                                                              <NA>
#> 385                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14938.png
#> 386                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15070.png
#> 387                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15373.png
#> 388                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978313.png
#> 389                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17401.png
#> 390                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053047.png
#> 391                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928928.png
#> 392                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917673.png
#> 393                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035177.png
#> 394                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11759.png
#> 395                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17475.png
#> 396                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924357.png
#> 397                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16728.png
#> 398                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051308.png
#> 399                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115252.png
#> 400                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3791110.png
#> 401                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116642.png
#> 402                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4261020.png
#> 403                                                                                              <NA>
#> 404                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117251.png
#> 405                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3025433.png
#> 406                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044133.png
#> 407                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577740.png
#> 408                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123303.png
#> 409                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047661.png
#> 410                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973051.png
#> 411                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13242.png
#> 412                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912487.png
#> 413                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4045305.png
#> 414                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980120.png
#> 415                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035426.png
#> 416                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916749.png
#> 417                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2531358.png
#> 418                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977629.png
#> 419                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042417.png
#> 420                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917166.png
#> 421                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4294520.png
#> 422                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048897.png
#> 423                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039968.png
#> 424                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574808.png
#> 425                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121427.png
#> 426                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138760.png
#> 427                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915416.png
#> 428                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046401.png
#> 429                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2591718.png
#> 430                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577346.png
#> 431                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129307.png
#> 432                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14139.png
#> 433                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916126.png
#> 434                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578317.png
#> 435                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3860287.png
#> 436                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16715.png
#> 437                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243253.png
#> 438                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051921.png
#> 439                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045278.png
#> 440                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4294837.png
#> 441                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036651.png
#> 442                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115257.png
#> 443                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15235.png
#> 444                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969944.png
#> 445                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3960454.png
#> 446                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566034.png
#> 447                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4257195.png
#> 448                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13984.png
#> 449                                                                                              <NA>
#> 450                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969921.png
#> 451                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574891.png
#> 452                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924310.png
#> 453                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16831.png
#> 454                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14984.png
#> 455                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4376288.png
#> 456                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894849.png
#> 457                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032052.png
#> 458                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972304.png
#> 459                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912245.png
#> 460                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129290.png
#> 461                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16035.png
#> 462                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241422.png
#> 463                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17427.png
#> 464                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034949.png
#> 465                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915189.png
#> 466                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917016.png
#> 467                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124779.png
#> 468                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15805.png
#> 469                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577145.png
#> 470                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15074.png
#> 471                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128303.png
#> 472                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16710.png
#> 473                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116368.png
#> 474                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15867.png
#> 475                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14572.png
#> 476                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15846.png
#> 477                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117922.png
#> 478                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969924.png
#> 479                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16952.png
#> 480                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16863.png
#> 481                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039707.png
#> 482                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14877.png
#> 483                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16252.png
#> 484                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127335.png
#> 485                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4042808.png
#> 486                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3066158.png
#> 487                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035538.png
#> 488                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16020.png
#> 489                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054847.png
#> 490                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13419.png
#> 491                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979595.png
#> 492                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060134.png
#> 493                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979499.png
#> 494                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16848.png
#> 495                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15096.png
#> 496                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4362648.png
#> 497                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982484.png
#> 498                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970262.png
#> 499                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4258595.png
#> 500                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3940587.png
#> 501                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13232.png
#> 502                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16318.png
#> 503                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10453.png
#> 504                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2580216.png
#> 505                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045164.png
#> 506                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035015.png
#> 507                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035019.png
#> 508                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043134.png
#> 509                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059918.png
#> 510                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040655.png
#> 511                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14100.png
#> 512                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3909300.png
#> 513                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050487.png
#> 514                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16799.png
#> 515                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15807.png
#> 516                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17172.png
#> 517                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512172.png
#> 518                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051407.png
#> 519                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576283.png
#> 520                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126245.png
#> 521                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042619.png
#> 522                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045120.png
#> 523                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115308.png
#> 524                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042785.png
#> 525                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3061106.png
#> 526                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125356.png
#> 527                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575171.png
#> 528                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240624.png
#> 529                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982632.png
#> 530                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919512.png
#> 531                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051911.png
#> 532                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116082.png
#> 533                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121416.png
#> 534                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039029.png
#> 535                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037633.png
#> 536                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508191.png
#> 537                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14994.png
#> 538                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13311.png
#> 539                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15844.png
#> 540                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915388.png
#> 541                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515319.png
#> 542                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046557.png
#> 543                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047571.png
#> 544                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128752.png
#> 545                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895869.png
#> 546                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040622.png
#> 547                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16801.png
#> 548                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821683.png
#> 549                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15091.png
#> 550                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917142.png
#> 551                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116724.png
#> 552                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14519.png
#> 553                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917992.png
#> 554                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3112083.png
#> 555                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040621.png
#> 556                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052660.png
#> 557                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918330.png
#> 558                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10686.png
#> 559                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929801.png
#> 560                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979632.png
#> 561                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977670.png
#> 562                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128815.png
#> 563                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2580666.png
#> 564                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12669.png
#> 565                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915776.png
#> 566                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915511.png
#> 567                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042876.png
#> 568                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577128.png
#> 569                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574511.png
#> 570                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035222.png
#> 571                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3693033.png
#> 572                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116389.png
#> 573                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116385.png
#> 574                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15826.png
#> 575                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15877.png
#> 576                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051388.png
#> 577                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046382.png
#> 578                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915532.png
#> 579                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040726.png
#> 580                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576789.png
#> 581                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915106.png
#> 582                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914371.png
#> 583                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040470.png
#> 584                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972331.png
#> 585                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574576.png
#> 586                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127310.png
#> 587                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3923392.png
#> 588                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13983.png
#> 589                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3699902.png
#> 590                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921564.png
#> 591                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919557.png
#> 592                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239993.png
#> 593                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977800.png
#> 594                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045144.png
#> 595                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123986.png
#> 596                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931391.png
#> 597                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052177.png
#> 598                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16001.png
#> 599                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3691031.png
#> 600                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039016.png
#> 601                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566591.png
#> 602                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036898.png
#> 603                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035437.png
#> 604                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16927.png
#> 605                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971632.png
#> 606                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915535.png
#> 607                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038437.png
#> 608                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3153653.png
#> 609                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116679.png
#> 610                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511523.png
#> 611                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4334405.png
#> 612                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242208.png
#> 613                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052125.png
#> 614                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13939.png
#> 615                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917852.png
#> 616                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981511.png
#> 617                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912553.png
#> 618                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037459.png
#> 619                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048257.png
#> 620                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046907.png
#> 621                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122132.png
#> 622                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120964.png
#> 623                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14982.png
#> 624                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13965.png
#> 625                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039052.png
#> 626                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15811.png
#> 627                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046343.png
#> 628                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043112.png
#> 629                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976194.png
#> 630                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050122.png
#> 631                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040499.png
#> 632                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974317.png
#> 633                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16740.png
#> 634                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040626.png
#> 635                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045474.png
#> 636                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049575.png
#> 637                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3676763.png
#> 638                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052413.png
#> 639                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17082.png
#> 640                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040983.png
#> 641                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14214.png
#> 642                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125073.png
#> 643                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242206.png
#> 644                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116667.png
#> 645                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138834.png
#> 646                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576489.png
#> 647                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3131775.png
#> 648                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15379.png
#> 649                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051775.png
#> 650                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3936185.png
#> 651                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049872.png
#> 652                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15168.png
#> 653                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052587.png
#> 654                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915381.png
#> 655                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929828.png
#> 656                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128720.png
#> 657                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139602.png
#> 658                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059915.png
#> 659                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914450.png
#> 660                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046700.png
#> 661                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910402.png
#> 662                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3859006.png
#> 663                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976639.png
#> 664                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241482.png
#> 665                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16076.png
#> 666                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116135.png
#> 667                                                                                              <NA>
#> 668                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2509370.png
#> 669                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976213.png
#> 670                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4384564.png
#> 671                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910156.png
#> 672                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979534.png
#> 673                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040774.png
#> 674                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043275.png
#> 675                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3948283.png
#> 676                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123076.png
#> 677                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128439.png
#> 678                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924367.png
#> 679                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971830.png
#> 680                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059760.png
#> 681                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040137.png
#> 682                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039725.png
#> 683                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16733.png
#> 684                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047876.png
#> 685                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16790.png
#> 686                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578369.png
#> 687                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4258195.png
#> 688                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042910.png
#> 689                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4249496.png
#> 690                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917569.png
#> 691                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573307.png
#> 692                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035788.png
#> 693                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15793.png
#> 694                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566609.png
#> 695                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15108.png
#> 696                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979655.png
#> 697                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243831.png
#> 698                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040966.png
#> 699                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977756.png
#> 700                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11363.png
#> 701                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977689.png
#> 702                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052101.png
#> 703                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17474.png
#> 704                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045207.png
#> 705                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042718.png
#> 706                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035425.png
#> 707                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040572.png
#> 708                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116387.png
#> 709                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573317.png
#> 710                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917006.png
#> 711                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13988.png
#> 712                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930024.png
#> 713                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16802.png
#> 714                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035660.png
#> 715                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040479.png
#> 716                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928979.png
#> 717                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14987.png
#> 718                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14939.png
#> 719                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3008150.png
#> 720                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4042141.png
#> 721                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577278.png
#> 722                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574009.png
#> 723                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241221.png
#> 724                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892883.png
#> 725                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15653.png
#> 726                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16709.png
#> 727                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4033748.png
#> 728                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821577.png
#> 729                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14993.png
#> 730                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574282.png
#> 731                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138677.png
#> 732                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052896.png
#> 733                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116097.png
#> 734                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17266.png
#> 735                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932336.png
#> 736                                                                                              <NA>
#> 737                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13284.png
#> 738                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039075.png
#> 739                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9349.png
#> 740                                                                                              <NA>
#> 741                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14723.png
#> 742                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972515.png
#> 743                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14012.png
#> 744                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895785.png
#> 745                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577417.png
#> 746                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16809.png
#> 747                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916148.png
#> 748                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038815.png
#> 749                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038539.png
#> 750                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051392.png
#> 751                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122135.png
#> 752                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929795.png
#> 753                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048698.png
#> 754                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034522.png
#> 755                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895830.png
#> 756                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4686629.png
#> 757                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728250.png
#> 758                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512504.png
#> 759                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13978.png
#> 760                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120738.png
#> 761                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577302.png
#> 762                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915834.png
#> 763                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2991767.png
#> 764                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117256.png
#> 765                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514206.png
#> 766                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036275.png
#> 767                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2968204.png
#> 768                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115928.png
#> 769                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122430.png
#> 770                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036335.png
#> 771                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121409.png
#> 772                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976499.png
#> 773                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036348.png
#> 774                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241389.png
#> 775                                                                                              <NA>
#> 776                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126095.png
#> 777                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032749.png
#> 778                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035448.png
#> 779                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040013.png
#> 780                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16842.png
#> 781                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515641.png
#> 782                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037647.png
#> 783                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2613234.png
#> 784                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037216.png
#> 785                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894830.png
#> 786                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976259.png
#> 787                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13254.png
#> 788                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843234.png
#> 789                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16562.png
#> 790                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115250.png
#> 791                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971248.png
#> 792                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929850.png
#> 793                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117249.png
#> 794                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969860.png
#> 795                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16837.png
#> 796                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045377.png
#> 797                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4422407.png
#> 798                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116733.png
#> 799                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3145343.png
#> 800                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915525.png
#> 801                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576508.png
#> 802                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15816.png
#> 803                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16785.png
#> 804                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3131784.png
#> 805                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134288.png
#> 806                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512544.png
#> 807                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035566.png
#> 808                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14047.png
#> 809                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040910.png
#> 810                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038544.png
#> 811                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125082.png
#> 812                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576245.png
#> 813                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16339.png
#> 814                                                                                              <NA>
#> 815                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14932.png
#> 816                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579601.png
#> 817                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124634.png
#> 818                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13976.png
#> 819                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919548.png
#> 820                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728310.png
#> 821                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16761.png
#> 822                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15075.png
#> 823                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040150.png
#> 824                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974344.png
#> 825                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512419.png
#> 826                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930915.png
#> 827                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577712.png
#> 828                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982304.png
#> 829                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925443.png
#> 830                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16377.png
#> 831                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15928.png
#> 832                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924327.png
#> 833                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574630.png
#> 834                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3722362.png
#> 835                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035102.png
#> 836                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916721.png
#> 837                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052117.png
#> 838                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914534.png
#> 839                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576434.png
#> 840                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122672.png
#> 841                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912343.png
#> 842                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116602.png
#> 843                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128773.png
#> 844                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059839.png
#> 845                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13050.png
#> 846                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123867.png
#> 847                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035662.png
#> 848                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16722.png
#> 849                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912573.png
#> 850                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045264.png
#> 851                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036131.png
#> 852                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045225.png
#> 853                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035115.png
#> 854                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576399.png
#> 855                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125402.png
#> 856                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125107.png
#> 857                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045118.png
#> 858                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128429.png
#> 859                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971397.png
#> 860                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241463.png
#> 861                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057987.png
#> 862                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134353.png
#> 863                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3700815.png
#> 864                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4422214.png
#> 865                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034964.png
#> 866                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240380.png
#> 867                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17463.png
#> 868                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971093.png
#> 869                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128689.png
#> 870                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16876.png
#> 871                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116175.png
#> 872                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241984.png
#> 873                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515490.png
#> 874                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575523.png
#> 875                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13681.png
#> 876                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15812.png
#> 877                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969422.png
#> 878                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050916.png
#> 879                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577707.png
#> 880                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4030779.png
#> 881                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575164.png
#> 882                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039292.png
#> 883                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046680.png
#> 884                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042499.png
#> 885  http://static.nfl.com/static/content/public/static/img/fantasy/transparent/200x200/MOO227635.png
#> 886                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046690.png
#> 887                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576267.png
#> 888                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3873928.png
#> 889                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728253.png
#> 890                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980147.png
#> 891                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126352.png
#> 892                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042746.png
#> 893                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574519.png
#> 894                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128264.png
#> 895                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13373.png
#> 896                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043127.png
#> 897                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728248.png
#> 898                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243257.png
#> 899                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578384.png
#> 900                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124052.png
#> 901                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2317118.png
#> 902                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128412.png
#> 903                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930040.png
#> 904                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15972.png
#> 905                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978331.png
#> 906                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915252.png
#> 907                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11122.png
#> 908                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128444.png
#> 909                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4423367.png
#> 910                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044729.png
#> 911                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116158.png
#> 912                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124587.png
#> 913                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115310.png
#> 914                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15830.png
#> 915                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054951.png
#> 916                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979855.png
#> 917                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16764.png
#> 918                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17070.png
#> 919                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8362.png
#> 920                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916370.png
#> 921                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12483.png
#> 922                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12471.png
#> 923                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116188.png
#> 924                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916925.png
#> 925                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259545.png
#> 926                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919104.png
#> 927                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10452.png
#> 928                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052449.png
#> 929                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125232.png
#> 930                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15842.png
#> 931                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915297.png
#> 932                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045238.png
#> 933                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046435.png
#> 934                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971557.png
#> 935                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3145005.png
#> 936                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976292.png
#> 937                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122687.png
#> 938                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144062.png
#> 939                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978727.png
#> 940                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979590.png
#> 941                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932433.png
#> 942                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243318.png
#> 943                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036133.png
#> 944                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3061612.png
#> 945                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126997.png
#> 946                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14922.png
#> 947                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15072.png
#> 948                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11674.png
#> 949                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035793.png
#> 950                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056476.png
#> 951                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115913.png
#> 952                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974858.png
#> 953                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16864.png
#> 954                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915139.png
#> 955                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3041098.png
#> 956                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124849.png
#> 957                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052170.png
#> 958                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980150.png
#> 959                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5432.png
#> 960                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895429.png
#> 961                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916676.png
#> 962                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144984.png
#> 963                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040870.png
#> 964                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582132.png
#> 965                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928920.png
#> 966                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038538.png
#> 967                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049331.png
#> 968                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240024.png
#> 969                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974348.png
#> 970                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15021.png
#> 971                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916220.png
#> 972                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051894.png
#> 973                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3676832.png
#> 974                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917340.png
#> 975                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239817.png
#> 976                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930048.png
#> 977                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15380.png
#> 978                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040661.png
#> 979                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16549.png
#> 980                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977626.png
#> 981                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15900.png
#> 982                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930912.png
#> 983                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115485.png
#> 984                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576736.png
#> 985                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929936.png
#> 986                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929794.png
#> 987                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10636.png
#> 988                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035577.png
#> 989                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577446.png
#> 990                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046523.png
#> 991                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240655.png
#> 992                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051746.png
#> 993                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116431.png
#> 994                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043168.png
#> 995                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035817.png
#> 996                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034781.png
#> 997                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128675.png
#> 998                    https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970181.png
#> 999                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16767.png
#> 1000                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980350.png
#> 1001                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122752.png
#> 1002                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045242.png
#> 1003                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045166.png
#> 1004                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126368.png
#> 1005                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8439.png
#> 1006                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045169.png
#> 1007                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036378.png
#> 1008                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118906.png
#> 1009                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932449.png
#> 1010                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915536.png
#> 1011                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039358.png
#> 1012                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042519.png
#> 1013                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573974.png
#> 1014                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239934.png
#> 1015                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980453.png
#> 1016                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915419.png
#> 1017                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971364.png
#> 1018                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917563.png
#> 1019                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16759.png
#> 1020                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3871880.png
#> 1021                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15963.png
#> 1022                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13302.png
#> 1023                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9614.png
#> 1024                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917962.png
#> 1025                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036129.png
#> 1026                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914151.png
#> 1027                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035014.png
#> 1028                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980444.png
#> 1029                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2975674.png
#> 1030                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116573.png
#> 1031                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16800.png
#> 1032                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4408988.png
#> 1033                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974503.png
#> 1034                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932442.png
#> 1035                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122167.png
#> 1036                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17402.png
#> 1037                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120588.png
#> 1038                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128390.png
#> 1039                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15786.png
#> 1040                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051738.png
#> 1041                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128317.png
#> 1042                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977609.png
#> 1043                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579850.png
#> 1044                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047834.png
#> 1045                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121537.png
#> 1046                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4331768.png
#> 1047                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054955.png
#> 1048                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929653.png
#> 1049                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240780.png
#> 1050                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728261.png
#> 1051                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16719.png
#> 1052                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123963.png
#> 1053                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16750.png
#> 1054                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16313.png
#> 1055                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117135.png
#> 1056                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051391.png
#> 1057                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970716.png
#> 1058                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128746.png
#> 1059                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240575.png
#> 1060                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138764.png
#> 1061                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929865.png
#> 1062                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977681.png
#> 1063                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13979.png
#> 1064                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038557.png
#> 1065                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050754.png
#> 1066                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13989.png
#> 1067                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977625.png
#> 1068                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047570.png
#> 1069                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3911982.png
#> 1070                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886633.png
#> 1071                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15123.png
#> 1072                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16923.png
#> 1073                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971573.png
#> 1074                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986109.png
#> 1075                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116367.png
#> 1076                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577429.png
#> 1077                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116134.png
#> 1078                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043276.png
#> 1079                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051750.png
#> 1080                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14936.png
#> 1081                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895228.png
#> 1082                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916409.png
#> 1083                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039783.png
#> 1084                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123863.png
#> 1085                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576885.png
#> 1086                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508212.png
#> 1087                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577854.png
#> 1088                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13729.png
#> 1089                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17061.png
#> 1090                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116761.png
#> 1091                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14950.png
#> 1092                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122840.png
#> 1093                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16810.png
#> 1094                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3609.png
#> 1095                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126246.png
#> 1096                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122716.png
#> 1097                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508176.png
#> 1098                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4362878.png
#> 1099                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969962.png
#> 1100                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122143.png
#> 1101                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15231.png
#> 1102                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931399.png
#> 1103                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17087.png
#> 1104                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3131498.png
#> 1105                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122923.png
#> 1106                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126035.png
#> 1107                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051890.png
#> 1108                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895840.png
#> 1109                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921964.png
#> 1110                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128452.png
#> 1111                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971281.png
#> 1112                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15773.png
#> 1113                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3933327.png
#> 1114                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14053.png
#> 1115                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043225.png
#> 1116                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3066074.png
#> 1117                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915823.png
#> 1118                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895857.png
#> 1119                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4248504.png
#> 1120                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051857.png
#> 1121                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052876.png
#> 1122                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122839.png
#> 1123                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16731.png
#> 1124                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578475.png
#> 1125                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971563.png
#> 1126                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128790.png
#> 1127                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16808.png
#> 1128                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917058.png
#> 1129                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134448.png
#> 1130                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910229.png
#> 1131                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124574.png
#> 1132                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15810.png
#> 1133                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910754.png
#> 1134                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044540.png
#> 1135                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4218312.png
#> 1136                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912544.png
#> 1137                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125287.png
#> 1138                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511090.png
#> 1139                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821692.png
#> 1140                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035661.png
#> 1141                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050199.png
#> 1142                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121415.png
#> 1143                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040513.png
#> 1144                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17447.png
#> 1145                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047512.png
#> 1146                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14048.png
#> 1147                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051942.png
#> 1148                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124970.png
#> 1149                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034530.png
#> 1150                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4041572.png
#> 1151                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126489.png
#> 1152                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929658.png
#> 1153                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971282.png
#> 1154                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976632.png
#> 1155                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129308.png
#> 1156                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915470.png
#> 1157                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978298.png
#> 1158                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915165.png
#> 1159                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056362.png
#> 1160                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126179.png
#> 1161                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045251.png
#> 1162                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15068.png
#> 1163                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048912.png
#> 1164                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117253.png
#> 1165                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929928.png
#> 1166                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128252.png
#> 1167                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3071353.png
#> 1168                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124005.png
#> 1169                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566045.png
#> 1170                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4058825.png
#> 1171                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060187.png
#> 1172                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914922.png
#> 1173                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16382.png
#> 1174                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578570.png
#> 1175                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977665.png
#> 1176                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035003.png
#> 1177                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5529.png
#> 1178                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916430.png
#> 1179                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051891.png
#> 1180                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038533.png
#> 1181                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242335.png
#> 1182                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139605.png
#> 1183                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971589.png
#> 1184                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980197.png
#> 1185                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929835.png
#> 1186                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14977.png
#> 1187                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916678.png
#> 1188                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577631.png
#> 1189                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4611135.png
#> 1190                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13970.png
#> 1191                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117259.png
#> 1192                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972351.png
#> 1193                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516053.png
#> 1194                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121595.png
#> 1195                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059936.png
#> 1196                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13483.png
#> 1197                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035379.png
#> 1198                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032479.png
#> 1199                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16504.png
#> 1200                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2998565.png
#> 1201                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930298.png
#> 1202                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16974.png
#> 1203                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930097.png
#> 1204                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4054085.png
#> 1205                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121410.png
#> 1206                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4374496.png
#> 1207                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515759.png
#> 1208                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120659.png
#> 1209                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4061956.png
#> 1210                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916071.png
#> 1211                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978109.png
#> 1212                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14924.png
#> 1213                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035687.png
#> 1214                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971418.png
#> 1215                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15794.png
#> 1216                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979515.png
#> 1217                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16270.png
#> 1218                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886327.png
#> 1219                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115968.png
#> 1220                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241977.png
#> 1221                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127299.png
#> 1222                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4361499.png
#> 1223                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931400.png
#> 1224                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240596.png
#> 1225                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4371737.png
#> 1226                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122160.png
#> 1227                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918331.png
#> 1228                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2567725.png
#> 1229                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4249092.png
#> 1230                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971498.png
#> 1231                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576755.png
#> 1232                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915239.png
#> 1233                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242205.png
#> 1234                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042476.png
#> 1235                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2507719.png
#> 1236                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16090.png
#> 1237                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13493.png
#> 1238                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052059.png
#> 1239                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115249.png
#> 1240                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16376.png
#> 1241                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038987.png
#> 1242                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16853.png
#> 1243                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4220624.png
#> 1244                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574579.png
#> 1245                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14083.png
#> 1246                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17037.png
#> 1247                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516325.png
#> 1248                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17388.png
#> 1249                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16770.png
#> 1250                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035113.png
#> 1251                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11923.png
#> 1252                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3135726.png
#> 1253                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2998120.png
#> 1254                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3068939.png
#> 1255                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3923413.png
#> 1256                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037468.png
#> 1257                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977819.png
#> 1258                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3110565.png
#> 1259                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917797.png
#> 1260                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139453.png
#> 1261                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042874.png
#> 1262                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045267.png
#> 1263                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047566.png
#> 1264                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4042125.png
#> 1265                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16941.png
#> 1266                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928931.png
#> 1267                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915520.png
#> 1268                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121587.png
#> 1269                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3072765.png
#> 1270                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115480.png
#> 1271                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124900.png
#> 1272                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15837.png
#> 1273                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038524.png
#> 1274                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3699935.png
#> 1275                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3923397.png
#> 1276                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15966.png
#> 1277                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917812.png
#> 1278                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4052042.png
#> 1279                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4421446.png
#> 1280                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2983509.png
#> 1281                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970661.png
#> 1282                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035505.png
#> 1283                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051716.png
#> 1284                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126153.png
#> 1285                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4611506.png
#> 1286                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123064.png
#> 1287                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116739.png
#> 1288                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115949.png
#> 1289                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115313.png
#> 1290                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3920814.png
#> 1291                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034961.png
#> 1292                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2975863.png
#> 1293                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508079.png
#> 1294                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047488.png
#> 1295                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15788.png
#> 1296                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930900.png
#> 1297                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914240.png
#> 1298                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921690.png
#> 1299                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915174.png
#> 1300                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3071572.png
#> 1301                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915296.png
#> 1302                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241723.png
#> 1303                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034944.png
#> 1304                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892889.png
#> 1305                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243160.png
#> 1306                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115394.png
#> 1307                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578533.png
#> 1308                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039720.png
#> 1309                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039043.png
#> 1310                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14110.png
#> 1311                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917290.png
#> 1312                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514816.png
#> 1313                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056354.png
#> 1314                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3140141.png
#> 1315                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16890.png
#> 1316                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040652.png
#> 1317                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040432.png
#> 1318                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924364.png
#> 1319                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128630.png
#> 1320                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037361.png
#> 1321                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915163.png
#> 1322                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917909.png
#> 1323                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17259.png
#> 1324                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916207.png
#> 1325                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15976.png
#> 1326                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914553.png
#> 1327                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045210.png
#> 1328                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576242.png
#> 1329                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052926.png
#> 1330                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982313.png
#> 1331                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915487.png
#> 1332                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4408979.png
#> 1333                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121634.png
#> 1334                                                                                             <NA>
#> 1335                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4058925.png
#> 1336                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044859.png
#> 1337                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17377.png
#> 1338                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14957.png
#> 1339                       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/169.png
#> 1340                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16958.png
#> 1341                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16327.png
#> 1342                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115922.png
#> 1343                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3055899.png
#> 1344                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045132.png
#> 1345                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259804.png
#> 1346                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040207.png
#> 1347                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16883.png
#> 1348                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3140643.png
#> 1349                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122169.png
#> 1350                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122906.png
#> 1351                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043618.png
#> 1352                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16665.png
#> 1353                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17230.png
#> 1354                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122930.png
#> 1355                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8513.png
#> 1356                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915398.png
#> 1357                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139477.png
#> 1358                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11128.png
#> 1359                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11291.png
#> 1360                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242418.png
#> 1361                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17359.png
#> 1362                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14135.png
#> 1363                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4361606.png
#> 1364                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042494.png
#> 1365                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115375.png
#> 1366                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15825.png
#> 1367                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242214.png
#> 1368                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122136.png
#> 1369                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15851.png
#> 1370                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15422.png
#> 1371                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042702.png
#> 1372                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15790.png
#> 1373                                                                                             <NA>
#> 1374                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241213.png
#> 1375                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894924.png
#> 1376                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14951.png
#> 1377                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035518.png
#> 1378                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059766.png
#> 1379                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051806.png
#> 1380                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15847.png
#> 1381                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971426.png
#> 1382                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971280.png
#> 1383                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4329472.png
#> 1384                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043116.png
#> 1385                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036055.png
#> 1386                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982828.png
#> 1387                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16725.png
#> 1388                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3066052.png
#> 1389                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4408854.png
#> 1390                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915097.png
#> 1391                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035004.png
#> 1392                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980460.png
#> 1393                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036416.png
#> 1394                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116406.png
#> 1395                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046399.png
#> 1396                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582448.png
#> 1397                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134666.png
#> 1398                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2525933.png
#> 1399                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046536.png
#> 1400                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972896.png
#> 1401                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045373.png
#> 1402                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239833.png
#> 1403                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040901.png
#> 1404                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046292.png
#> 1405                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116179.png
#> 1406                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040613.png
#> 1407                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917012.png
#> 1408                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035013.png
#> 1409                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049268.png
#> 1410                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059620.png
#> 1411                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032481.png
#> 1412                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14944.png
#> 1413                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040703.png
#> 1414                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16716.png
#> 1415                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054857.png
#> 1416                                                                                             <NA>
#> 1417                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914150.png
#> 1418                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120552.png
#> 1419                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043198.png
#> 1420                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040008.png
#> 1421                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917660.png
#> 1422                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056608.png
#> 1423                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052180.png
#> 1424                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14816.png
#> 1425                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053774.png
#> 1426                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4249087.png
#> 1427                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134310.png
#> 1428                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115317.png
#> 1429                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116177.png
#> 1430                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052667.png
#> 1431                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043136.png
#> 1432                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048692.png
#> 1433                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040109.png
#> 1434                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122678.png
#> 1435                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045527.png
#> 1436                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3909013.png
#> 1437                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040968.png
#> 1438                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034967.png
#> 1439                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116424.png
#> 1440                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035542.png
#> 1441                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040072.png
#> 1442                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14676.png
#> 1443                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127294.png
#> 1444                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047495.png
#> 1445                                                                                             <NA>
#> 1446                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15153.png
#> 1447                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124092.png
#> 1448                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127051.png
#> 1449                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16724.png
#> 1450                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3675812.png
#> 1451                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046779.png
#> 1452                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240021.png
#> 1453                                                                                             <NA>
#> 1454                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916209.png
#> 1455                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039359.png
#> 1456                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2570986.png
#> 1457                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039007.png
#> 1458                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144988.png
#> 1459                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035663.png
#> 1460                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515613.png
#> 1461                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914440.png
#> 1462                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035478.png
#> 1463                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9641.png
#> 1464                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3706968.png
#> 1465                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918639.png
#> 1466                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918003.png
#> 1467                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573401.png
#> 1468                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122103.png
#> 1469                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052096.png
#> 1470                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15880.png
#> 1471                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930066.png
#> 1472                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046715.png
#> 1473                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910287.png
#> 1474                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977187.png
#> 1475                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115306.png
#> 1476                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119317.png
#> 1477                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13974.png
#> 1478                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969262.png
#> 1479                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4410136.png
#> 1480                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045458.png
#> 1481                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053795.png
#> 1482                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14966.png
#> 1483                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14398.png
#> 1484                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912028.png
#> 1485                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16039.png
#> 1486                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032484.png
#> 1487                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046687.png
#> 1488                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3691739.png
#> 1489                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4365493.png
#> 1490                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051389.png
#> 1491                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14926.png
#> 1492                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052894.png
#> 1493                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915990.png
#> 1494                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120358.png
#> 1495                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3863182.png
#> 1496                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916917.png
#> 1497                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116746.png
#> 1498                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139036.png
#> 1499                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979482.png
#> 1500                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047572.png
#> 1501                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919555.png
#> 1502                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17063.png
#> 1503                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16789.png
#> 1504                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981439.png
#> 1505                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045779.png
#> 1506                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123052.png
#> 1507                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129310.png
#> 1508                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821576.png
#> 1509                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039254.png
#> 1510                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241394.png
#> 1511                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971816.png
#> 1512                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579621.png
#> 1513                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036959.png
#> 1514                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914613.png
#> 1515                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970622.png
#> 1516                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054855.png
#> 1517                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13281.png
#> 1518                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16231.png
#> 1519                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3674831.png
#> 1520                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3061740.png
#> 1521                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582324.png
#> 1522                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14163.png
#> 1523                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120590.png
#> 1524                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038941.png
#> 1525                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910544.png
#> 1526                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3068267.png
#> 1527                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040640.png
#> 1528                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2983319.png
#> 1529                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128774.png
#> 1530                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035611.png
#> 1531                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116136.png
#> 1532                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039413.png
#> 1533                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16919.png
#> 1534                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969961.png
#> 1535                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052513.png
#> 1536                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411189.png
#> 1537                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973014.png
#> 1538                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13247.png
#> 1539                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917870.png
#> 1540                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046439.png
#> 1541                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912092.png
#> 1542                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14085.png
#> 1543                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121378.png
#> 1544                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576854.png
#> 1545                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4683123.png
#> 1546                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894912.png
#> 1547                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4069806.png
#> 1548                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15818.png
#> 1549                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915522.png
#> 1550                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4282647.png
#> 1551                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037591.png
#> 1552                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932430.png
#> 1553                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045138.png
#> 1554                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977627.png
#> 1555                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14013.png
#> 1556                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932244.png
#> 1557                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259493.png
#> 1558                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239694.png
#> 1559                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16769.png
#> 1560                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971478.png
#> 1561                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042436.png
#> 1562                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915506.png
#> 1563                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054031.png
#> 1564                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035458.png
#> 1565                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126182.png
#> 1566                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16929.png
#> 1567                                                                                             <NA>
#> 1568                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921709.png
#> 1569                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053801.png
#> 1570                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4010714.png
#> 1571                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2614825.png
#> 1572                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976151.png
#> 1573                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577162.png
#> 1574                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3152371.png
#> 1575                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16917.png
#> 1576                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728258.png
#> 1577                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843843.png
#> 1578                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916655.png
#> 1579                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115469.png
#> 1580                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15798.png
#> 1581                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045220.png
#> 1582                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15841.png
#> 1583                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044732.png
#> 1584                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040471.png
#> 1585                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917668.png
#> 1586                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2985235.png
#> 1587                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16753.png
#> 1588                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8495.png
#> 1589                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925344.png
#> 1590                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035479.png
#> 1591                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932960.png
#> 1592                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051909.png
#> 1593                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512400.png
#> 1594                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4232830.png
#> 1595                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2581818.png
#> 1596                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728263.png
#> 1597                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121423.png
#> 1598                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978304.png
#> 1599                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15038.png
#> 1600                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969922.png
#> 1601                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052889.png
#> 1602                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052357.png
#> 1603                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4329484.png
#> 1604                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3686689.png
#> 1605                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16757.png
#> 1606                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972092.png
#> 1607                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972236.png
#> 1608                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576980.png
#> 1609                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122866.png
#> 1610                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047365.png
#> 1611                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972091.png
#> 1612                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15994.png
#> 1613                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16473.png
#> 1614                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115333.png
#> 1615                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728305.png
#> 1616                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3072292.png
#> 1617                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930054.png
#> 1618                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043109.png
#> 1619                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045160.png
#> 1620                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134312.png
#> 1621                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13496.png
#> 1622                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929633.png
#> 1623                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576804.png
#> 1624                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576925.png
#> 1625                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4527.png
#> 1626                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15403.png
#> 1627                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843945.png
#> 1628                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121398.png
#> 1629                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042373.png
#> 1630                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241475.png
#> 1631                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115365.png
#> 1632                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2587819.png
#> 1633                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059722.png
#> 1634                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051400.png
#> 1635                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3135321.png
#> 1636                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046320.png
#> 1637                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038818.png
#> 1638                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971618.png
#> 1639                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120980.png
#> 1640                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060000.png
#> 1641                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917868.png
#> 1642                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121541.png
#> 1643                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576188.png
#> 1644                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892777.png
#> 1645                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2513035.png
#> 1646                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2509574.png
#> 1647                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242516.png
#> 1648                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124702.png
#> 1649                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978935.png
#> 1650                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575606.png
#> 1651                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039059.png
#> 1652                                                                                             <NA>
#> 1653                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972505.png
#> 1654                                                                                             <NA>
#> 1655                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052527.png
#> 1656                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036214.png
#> 1657                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057956.png
#> 1658                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047458.png
#> 1659                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914456.png
#> 1660                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728266.png
#> 1661                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977740.png
#> 1662                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895843.png
#> 1663                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728308.png
#> 1664                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4421391.png
#> 1665                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035299.png
#> 1666                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915309.png
#> 1667                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843217.png
#> 1668                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976649.png
#> 1669                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969952.png
#> 1670                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035008.png
#> 1671                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124679.png
#> 1672                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3133487.png
#> 1673                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977679.png
#> 1674                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977798.png
#> 1675                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050851.png
#> 1676                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047530.png
#> 1677                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16772.png
#> 1678                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577637.png
#> 1679                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915107.png
#> 1680                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915507.png
#> 1681                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2987743.png
#> 1682                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048402.png
#> 1683                                                                                             <NA>
#> 1684                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843470.png
#> 1685                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040965.png
#> 1686                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115383.png
#> 1687                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043237.png
#> 1688                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582424.png
#> 1689                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241479.png
#> 1690                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3926936.png
#> 1691                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8664.png
#> 1692                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127211.png
#> 1693                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243315.png
#> 1694                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049916.png
#> 1695                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886818.png
#> 1696                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039436.png
#> 1697                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577654.png
#> 1698                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915115.png
#> 1699                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259979.png
#> 1700                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042455.png
#> 1701                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576002.png
#> 1702                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917592.png
#> 1703                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929752.png
#> 1704                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047614.png
#> 1705                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4271632.png
#> 1706                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517316.png
#> 1707                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052897.png
#> 1708                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4198676.png
#> 1709                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138744.png
#> 1710                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116164.png
#> 1711                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17051.png
#> 1712                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915145.png
#> 1713                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2991662.png
#> 1714                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577641.png
#> 1715                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576623.png
#> 1716                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17177.png
#> 1717                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047504.png
#> 1718                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124069.png
#> 1719                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915399.png
#> 1720                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116729.png
#> 1721                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3173563.png
#> 1722                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035385.png
#> 1723                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895841.png
#> 1724                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259170.png
#> 1725                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3676819.png
#> 1726                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929847.png
#> 1727                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3909365.png
#> 1728                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4220625.png
#> 1729                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116104.png
#> 1730                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045136.png
#> 1731                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917147.png
#> 1732                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929845.png
#> 1733                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15085.png
#> 1734                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577814.png
#> 1735                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2525492.png
#> 1736                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037511.png
#> 1737                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046537.png
#> 1738                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3908608.png
#> 1739                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974353.png
#> 1740                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976560.png
#> 1741                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121414.png
#> 1742                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576040.png
#> 1743                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119119.png
#> 1744                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929833.png
#> 1745                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038849.png
#> 1746                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259181.png
#> 1747                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127274.png
#> 1748                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979523.png
#> 1749                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4012556.png
#> 1750                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924352.png
#> 1751                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3821678.png
#> 1752                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16861.png
#> 1753                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048231.png
#> 1754                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4682831.png
#> 1755                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14322.png
#> 1756                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578718.png
#> 1757                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3975763.png
#> 1758                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3701669.png
#> 1759                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978211.png
#> 1760                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2510863.png
#> 1761                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892773.png
#> 1762                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045212.png
#> 1763                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056916.png
#> 1764                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121538.png
#> 1765                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16711.png
#> 1766                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122420.png
#> 1767                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17497.png
#> 1768                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038946.png
#> 1769                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038201.png
#> 1770                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15726.png
#> 1771                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16866.png
#> 1772                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972144.png
#> 1773                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128685.png
#> 1774                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12773.png
#> 1775                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886812.png
#> 1776                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14880.png
#> 1777                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036149.png
#> 1778                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517017.png
#> 1779                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576336.png
#> 1780                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895835.png
#> 1781                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139033.png
#> 1782                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116593.png
#> 1783                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048244.png
#> 1784                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14945.png
#> 1785                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575446.png
#> 1786                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14930.png
#> 1787                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123954.png
#> 1788                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120502.png
#> 1789                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930270.png
#> 1790                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411192.png
#> 1791                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14054.png
#> 1792                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040980.png
#> 1793                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925348.png
#> 1794                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122920.png
#> 1795                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047968.png
#> 1796                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916566.png
#> 1797                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16460.png
#> 1798                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917067.png
#> 1799                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929637.png
#> 1800                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4262921.png
#> 1801                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973637.png
#> 1802                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039374.png
#> 1803                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17361.png
#> 1804                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578529.png
#> 1805                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16788.png
#> 1806                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15089.png
#> 1807                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139389.png
#> 1808                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14942.png
#> 1809                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917853.png
#> 1810                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12691.png
#> 1811                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971027.png
#> 1812                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035286.png
#> 1813                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121649.png
#> 1814                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973647.png
#> 1815                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4401811.png
#> 1816                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039010.png
#> 1817                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13236.png
#> 1818                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040031.png
#> 1819                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16010.png
#> 1820                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980080.png
#> 1821                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115974.png
#> 1822                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042726.png
#> 1823                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912189.png
#> 1824                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972342.png
#> 1825                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14185.png
#> 1826                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728306.png
#> 1827                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15958.png
#> 1828                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916922.png
#> 1829                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974365.png
#> 1830                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115349.png
#> 1831                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576917.png
#> 1832                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144994.png
#> 1833                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046545.png
#> 1834                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977779.png
#> 1835                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117420.png
#> 1836                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10621.png
#> 1837                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3913295.png
#> 1838                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978887.png
#> 1839                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924319.png
#> 1840                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925350.png
#> 1841                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051905.png
#> 1842                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4048736.png
#> 1843                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576257.png
#> 1844                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046528.png
#> 1845                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116187.png
#> 1846                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14933.png
#> 1847                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16393.png
#> 1848                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575907.png
#> 1849                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511690.png
#> 1850                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16912.png
#> 1851                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931395.png
#> 1852                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13994.png
#> 1853                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12477.png
#> 1854                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921586.png
#> 1855                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892775.png
#> 1856                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16913.png
#> 1857                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128721.png
#> 1858                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15971.png
#> 1859                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925347.png
#> 1860                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15478.png
#> 1861                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039607.png
#> 1862                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12527.png
#> 1863                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16286.png
#> 1864                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17487.png
#> 1865                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16768.png
#> 1866                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124112.png
#> 1867                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116455.png
#> 1868                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056899.png
#> 1869                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115303.png
#> 1870                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577773.png
#> 1871                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14116.png
#> 1872                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047575.png
#> 1873                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128713.png
#> 1874                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047536.png
#> 1875                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240861.png
#> 1876                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576179.png
#> 1877                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046522.png
#> 1878                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915486.png
#> 1879                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915308.png
#> 1880                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915508.png
#> 1881                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051869.png
#> 1882                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577667.png
#> 1883                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916433.png
#> 1884                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916129.png
#> 1885                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12649.png
#> 1886                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576395.png
#> 1887                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052122.png
#> 1888                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4424106.png
#> 1889                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910176.png
#> 1890                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16791.png
#> 1891                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11387.png
#> 1892                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16787.png
#> 1893                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047839.png
#> 1894                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115387.png
#> 1895                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917331.png
#> 1896                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13238.png
#> 1897                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14974.png
#> 1898                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116166.png
#> 1899                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121421.png
#> 1900                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970625.png
#> 1901                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979612.png
#> 1902                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15359.png
#> 1903                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977661.png
#> 1904                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122882.png
#> 1905                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929920.png
#> 1906                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15865.png
#> 1907                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2585962.png
#> 1908                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16758.png
#> 1909                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052743.png
#> 1910                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976313.png
#> 1911                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13971.png
#> 1912                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124058.png
#> 1913                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918310.png
#> 1914                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4027908.png
#> 1915                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039064.png
#> 1916                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886601.png
#> 1917                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895834.png
#> 1918                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977635.png
#> 1919                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582150.png
#> 1920                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4002046.png
#> 1921                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574023.png
#> 1922                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970204.png
#> 1923                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971698.png
#> 1924                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515270.png
#> 1925                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978278.png
#> 1926                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122925.png
#> 1927                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4258199.png
#> 1928                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17178.png
#> 1929                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2507667.png
#> 1930                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15058.png
#> 1931                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2985659.png
#> 1932                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971641.png
#> 1933                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14958.png
#> 1934                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917657.png
#> 1935                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043107.png
#> 1936                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14860.png
#> 1937                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124890.png
#> 1938                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976541.png
#> 1939                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929818.png
#> 1940                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9287.png
#> 1941                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575788.png
#> 1942                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4045180.png
#> 1943                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12701.png
#> 1944                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969939.png
#> 1945                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2580.png
#> 1946                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2468609.png
#> 1947                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511109.png
#> 1948                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577134.png
#> 1949                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046676.png
#> 1950                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054850.png
#> 1951                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3911993.png
#> 1952                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15920.png
#> 1953                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3002265.png
#> 1954                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115481.png
#> 1955                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12426.png
#> 1956                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034953.png
#> 1957                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3938169.png
#> 1958                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915147.png
#> 1959                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917676.png
#> 1960                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15821.png
#> 1961                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3911853.png
#> 1962                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16143.png
#> 1963                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115360.png
#> 1964                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982151.png
#> 1965                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12537.png
#> 1966                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2987440.png
#> 1967                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057863.png
#> 1968                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976316.png
#> 1969                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16995.png
#> 1970                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128451.png
#> 1971                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411193.png
#> 1972                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917200.png
#> 1973                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039057.png
#> 1974                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974339.png
#> 1975                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574918.png
#> 1976                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929645.png
#> 1977                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13295.png
#> 1978                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035170.png
#> 1979                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057850.png
#> 1980                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116096.png
#> 1981                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577792.png
#> 1982                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17066.png
#> 1983                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122797.png
#> 1984                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916720.png
#> 1985                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970264.png
#> 1986                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121660.png
#> 1987                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242973.png
#> 1988                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2572841.png
#> 1989                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3911073.png
#> 1990                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971699.png
#> 1991                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046675.png
#> 1992                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038440.png
#> 1993                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15861.png
#> 1994                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241470.png
#> 1995                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128740.png
#> 1996                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917872.png
#> 1997                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4030955.png
#> 1998                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035483.png
#> 1999                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14036.png
#> 2000                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971622.png
#> 2001                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116748.png
#> 2002                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127587.png
#> 2003                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575965.png
#> 2004                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516029.png
#> 2005                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042516.png
#> 2006                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14931.png
#> 2007                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915142.png
#> 2008                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14460.png
#> 2009                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12460.png
#> 2010                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972400.png
#> 2011                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4045165.png
#> 2012                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128715.png
#> 2013                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123054.png
#> 2014                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915171.png
#> 2015                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034766.png
#> 2016                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123233.png
#> 2017                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122593.png
#> 2018                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978273.png
#> 2019                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051924.png
#> 2020                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038811.png
#> 2021                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574229.png
#> 2022                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16359.png
#> 2023                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17304.png
#> 2024                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979591.png
#> 2025                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979860.png
#> 2026                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040204.png
#> 2027                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577619.png
#> 2028                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917792.png
#> 2029                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13199.png
#> 2030                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13484.png
#> 2031                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116144.png
#> 2032                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15693.png
#> 2033                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4683485.png
#> 2034                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14198.png
#> 2035                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045127.png
#> 2036                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048680.png
#> 2037                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053732.png
#> 2038                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512197.png
#> 2039                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929630.png
#> 2040                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15009.png
#> 2041                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115962.png
#> 2042                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15125.png
#> 2043                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915970.png
#> 2044                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921936.png
#> 2045                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122865.png
#> 2046                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040210.png
#> 2047                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259566.png
#> 2048                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16932.png
#> 2049                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4032758.png
#> 2050                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13964.png
#> 2051                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051876.png
#> 2052                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044452.png
#> 2053                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4045062.png
#> 2054                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15980.png
#> 2055                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056577.png
#> 2056                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13217.png
#> 2057                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056906.png
#> 2058                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973626.png
#> 2059                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040623.png
#> 2060                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916945.png
#> 2061                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919510.png
#> 2062                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3871102.png
#> 2063                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127306.png
#> 2064                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980378.png
#> 2065                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976592.png
#> 2066                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978929.png
#> 2067                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577367.png
#> 2068                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980597.png
#> 2069                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048026.png
#> 2070                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125705.png
#> 2071                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980115.png
#> 2072                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411769.png
#> 2073                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916144.png
#> 2074                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3870072.png
#> 2075                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579840.png
#> 2076                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239965.png
#> 2077                                                                                             <NA>
#> 2078                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980110.png
#> 2079                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243250.png
#> 2080                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034849.png
#> 2081                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16879.png
#> 2082                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127367.png
#> 2083                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932901.png
#> 2084                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886528.png
#> 2085                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120464.png
#> 2086                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915123.png
#> 2087                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039375.png
#> 2088                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517752.png
#> 2089                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045172.png
#> 2090                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982880.png
#> 2091                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3041112.png
#> 2092                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4076951.png
#> 2093                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16963.png
#> 2094                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976295.png
#> 2095                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15718.png
#> 2096 http://static.nfl.com/static/content/public/static/img/fantasy/transparent/200x200/CAS762935.png
#> 2097                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3150744.png
#> 2098                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582139.png
#> 2099                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15806.png
#> 2100                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057876.png
#> 2101                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16243.png
#> 2102                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576761.png
#> 2103                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16720.png
#> 2104                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059880.png
#> 2105                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728281.png
#> 2106                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052977.png
#> 2107                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3911689.png
#> 2108                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977647.png
#> 2109                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127273.png
#> 2110                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2570996.png
#> 2111                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512999.png
#> 2112                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051333.png
#> 2113                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2983155.png
#> 2114                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040982.png
#> 2115                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035239.png
#> 2116                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042565.png
#> 2117                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16821.png
#> 2118                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051381.png
#> 2119                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11252.png
#> 2120                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914395.png
#> 2121                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912547.png
#> 2122                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915411.png
#> 2123                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4262315.png
#> 2124                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034952.png
#> 2125                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123675.png
#> 2126                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8479.png
#> 2127                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932420.png
#> 2128                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4264341.png
#> 2129                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3858271.png
#> 2130                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16269.png
#> 2131                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914277.png
#> 2132                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116110.png
#> 2133                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971584.png
#> 2134                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2583951.png
#> 2135                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240090.png
#> 2136                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3701582.png
#> 2137                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3936647.png
#> 2138                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123050.png
#> 2139                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039253.png
#> 2140                                                                                             <NA>
#> 2141                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15887.png
#> 2142                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576716.png
#> 2143                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123075.png
#> 2144                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115330.png
#> 2145                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4249030.png
#> 2146                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576019.png
#> 2147                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929118.png
#> 2148                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035403.png
#> 2149                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040792.png
#> 2150                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917849.png
#> 2151                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14402.png
#> 2152                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3155188.png
#> 2153                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2519013.png
#> 2154                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972460.png
#> 2155                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916744.png
#> 2156                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14124.png
#> 2157                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126364.png
#> 2158                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15863.png
#> 2159                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971603.png
#> 2160                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16217.png
#> 2161                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982870.png
#> 2162                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116058.png
#> 2163                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123938.png
#> 2164                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917576.png
#> 2165                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046538.png
#> 2166                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15222.png
#> 2167                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3935064.png
#> 2168                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036924.png
#> 2169                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035463.png
#> 2170                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035389.png
#> 2171                                                                                             <NA>
#> 2172                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3693166.png
#> 2173                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13239.png
#> 2174                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14959.png
#> 2175                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241264.png
#> 2176                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044706.png
#> 2177                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115336.png
#> 2178                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929834.png
#> 2179                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14941.png
#> 2180                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2983055.png
#> 2181                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971725.png
#> 2182                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15047.png
#> 2183                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577757.png
#> 2184                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973027.png
#> 2185                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978247.png
#> 2186                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14962.png
#> 2187                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044438.png
#> 2188                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576647.png
#> 2189                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3055886.png
#> 2190                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121009.png
#> 2191                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050478.png
#> 2192                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126204.png
#> 2193                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121544.png
#> 2194                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038902.png
#> 2195                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971929.png
#> 2196                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042725.png
#> 2197                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040762.png
#> 2198                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2612151.png
#> 2199                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4360645.png
#> 2200                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040475.png
#> 2201                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036507.png
#> 2202                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2565971.png
#> 2203                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051397.png
#> 2204                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4371989.png
#> 2205                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979501.png
#> 2206                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040715.png
#> 2207                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573079.png
#> 2208                                                                                             <NA>
#> 2209                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060022.png
#> 2210                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035006.png
#> 2211                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4045163.png
#> 2212                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4042112.png
#> 2213                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051439.png
#> 2214                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045260.png
#> 2215                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040790.png
#> 2216                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139368.png
#> 2217                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051901.png
#> 2218                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976540.png
#> 2219                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576229.png
#> 2220                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15797.png
#> 2221                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4334215.png
#> 2222                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129116.png
#> 2223                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932668.png
#> 2224                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127264.png
#> 2225                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/6012.png
#> 2226                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15835.png
#> 2227                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578377.png
#> 2228                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916564.png
#> 2229                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972240.png
#> 2230                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121023.png
#> 2231                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932936.png
#> 2232                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917940.png
#> 2233                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16786.png
#> 2234                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15839.png
#> 2235                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040035.png
#> 2236                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932935.png
#> 2237                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139522.png
#> 2238                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241802.png
#> 2239                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124964.png
#> 2240                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4050373.png
#> 2241                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931397.png
#> 2242                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14912.png
#> 2243                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11283.png
#> 2244                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4373673.png
#> 2245                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13250.png
#> 2246                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126353.png
#> 2247                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046719.png
#> 2248                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979605.png
#> 2249                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044724.png
#> 2250                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13249.png
#> 2251                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980383.png
#> 2252                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259252.png
#> 2253                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4408864.png
#> 2254                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045287.png
#> 2255                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036213.png
#> 2256                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976210.png
#> 2257                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116149.png
#> 2258                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977615.png
#> 2259                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16873.png
#> 2260                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122690.png
#> 2261                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241451.png
#> 2262                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13233.png
#> 2263                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16798.png
#> 2264                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915253.png
#> 2265                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13977.png
#> 2266                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3699462.png
#> 2267                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122915.png
#> 2268                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576450.png
#> 2269                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917599.png
#> 2270                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969959.png
#> 2271                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14935.png
#> 2272                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17372.png
#> 2273                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126081.png
#> 2274                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129446.png
#> 2275                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15934.png
#> 2276                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576702.png
#> 2277                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128268.png
#> 2278                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036261.png
#> 2279                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045282.png
#> 2280                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16920.png
#> 2281                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978524.png
#> 2282                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037333.png
#> 2283                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3920867.png
#> 2284                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16991.png
#> 2285                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2967885.png
#> 2286                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2472364.png
#> 2287                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125280.png
#> 2288                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044720.png
#> 2289                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5536.png
#> 2290                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116407.png
#> 2291                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040616.png
#> 2292                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116721.png
#> 2293                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241941.png
#> 2294                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035072.png
#> 2295                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970090.png
#> 2296                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042429.png
#> 2297                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045147.png
#> 2298                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16179.png
#> 2299                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124067.png
#> 2300                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115371.png
#> 2301                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925345.png
#> 2302                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971556.png
#> 2303                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971616.png
#> 2304                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119215.png
#> 2305                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976554.png
#> 2306                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980142.png
#> 2307                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17404.png
#> 2308                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129473.png
#> 2309                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16706.png
#> 2310                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040778.png
#> 2311                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126261.png
#> 2312                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16732.png
#> 2313                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15853.png
#> 2314                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049290.png
#> 2315                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929924.png
#> 2316                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932963.png
#> 2317                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126263.png
#> 2318                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046692.png
#> 2319                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932905.png
#> 2320                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4049301.png
#> 2321                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122449.png
#> 2322                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241983.png
#> 2323                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3728262.png
#> 2324                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120348.png
#> 2325                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042738.png
#> 2326                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122432.png
#> 2327                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915190.png
#> 2328                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121344.png
#> 2329                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054026.png
#> 2330                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516049.png
#> 2331                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886824.png
#> 2332                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15535.png
#> 2333                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046326.png
#> 2334                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243244.png
#> 2335                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912347.png
#> 2336                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577553.png
#> 2337                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886834.png
#> 2338                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139387.png
#> 2339                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043258.png
#> 2340                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125816.png
#> 2341                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915396.png
#> 2342                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4254276.png
#> 2343                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577642.png
#> 2344                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980097.png
#> 2345                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912562.png
#> 2346                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13274.png
#> 2347                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116449.png
#> 2348                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16528.png
#> 2349                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15858.png
#> 2350                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036138.png
#> 2351                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115312.png
#> 2352                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14471.png
#> 2353                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13246.png
#> 2354                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4362647.png
#> 2355                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15814.png
#> 2356                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3136374.png
#> 2357                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978933.png
#> 2358                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971614.png
#> 2359                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12910.png
#> 2360                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2473037.png
#> 2361                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886816.png
#> 2362                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043130.png
#> 2363                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3926229.png
#> 2364                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054029.png
#> 2365                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16463.png
#> 2366                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915196.png
#> 2367                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14979.png
#> 2368                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054862.png
#> 2369                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14946.png
#> 2370                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14140.png
#> 2371                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17378.png
#> 2372                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115979.png
#> 2373                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125114.png
#> 2374                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929851.png
#> 2375                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128843.png
#> 2376                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15864.png
#> 2377                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052450.png
#> 2378                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14881.png
#> 2379                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126367.png
#> 2380                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139925.png
#> 2381                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046409.png
#> 2382                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16777.png
#> 2383                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915427.png
#> 2384                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240631.png
#> 2385                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037457.png
#> 2386                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919596.png
#> 2387                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115373.png
#> 2388                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045214.png
#> 2389                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121417.png
#> 2390                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971615.png
#> 2391                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511825.png
#> 2392                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11260.png
#> 2393                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242246.png
#> 2394                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577690.png
#> 2395                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128449.png
#> 2396                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10475.png
#> 2397                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916587.png
#> 2398                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16121.png
#> 2399                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242557.png
#> 2400                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127292.png
#> 2401                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125404.png
#> 2402                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577327.png
#> 2403                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3933064.png
#> 2404                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039000.png
#> 2405                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034950.png
#> 2406                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917546.png
#> 2407                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051650.png
#> 2408                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049249.png
#> 2409                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4212909.png
#> 2410                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047650.png
#> 2411                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579604.png
#> 2412                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126115.png
#> 2413                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15705.png
#> 2414                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2565338.png
#> 2415                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13802.png
#> 2416                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16746.png
#> 2417                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577185.png
#> 2418                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16743.png
#> 2419                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516984.png
#> 2420                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048681.png
#> 2421                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14086.png
#> 2422                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122630.png
#> 2423                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115337.png
#> 2424                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128743.png
#> 2425                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15866.png
#> 2426                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17444.png
#> 2427                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16726.png
#> 2428                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3871875.png
#> 2429                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16893.png
#> 2430                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040975.png
#> 2431                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974247.png
#> 2432                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039278.png
#> 2433                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970694.png
#> 2434                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16717.png
#> 2435                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052434.png
#> 2436                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971275.png
#> 2437                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116726.png
#> 2438                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117258.png
#> 2439                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15785.png
#> 2440                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976114.png
#> 2441                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040605.png
#> 2442                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15800.png
#> 2443                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2567711.png
#> 2444                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17068.png
#> 2445                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16707.png
#> 2446                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051807.png
#> 2447                                                                                             <NA>
#> 2448                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259491.png
#> 2449                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919607.png
#> 2450                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894915.png
#> 2451                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929641.png
#> 2452                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16002.png
#> 2453                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512477.png
#> 2454                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14976.png
#> 2455                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976117.png
#> 2456                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574302.png
#> 2457                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9354.png
#> 2458                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576030.png
#> 2459                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15819.png
#> 2460                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138826.png
#> 2461                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3908558.png
#> 2462                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043184.png
#> 2463                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919117.png
#> 2464                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916903.png
#> 2465                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979553.png
#> 2466                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14426.png
#> 2467                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578698.png
#> 2468                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035685.png
#> 2469                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11394.png
#> 2470                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059989.png
#> 2471                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16760.png
#> 2472                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886377.png
#> 2473                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979520.png
#> 2474                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4049391.png
#> 2475                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16782.png
#> 2476                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16838.png
#> 2477                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122976.png
#> 2478                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576414.png
#> 2479                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123857.png
#> 2480                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979477.png
#> 2481                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928925.png
#> 2482                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043110.png
#> 2483                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931424.png
#> 2484                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124889.png
#> 2485                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2509844.png
#> 2486                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053804.png
#> 2487                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15831.png
#> 2488                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13241.png
#> 2489                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970513.png
#> 2490                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915777.png
#> 2491                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052885.png
#> 2492                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574573.png
#> 2493                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916465.png
#> 2494                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15082.png
#> 2495                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916075.png
#> 2496                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4335942.png
#> 2497                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115359.png
#> 2498                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120303.png
#> 2499                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3880416.png
#> 2500                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15860.png
#> 2501                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035020.png
#> 2502                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040151.png
#> 2503                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040569.png
#> 2504                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115328.png
#> 2505                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039604.png
#> 2506                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045523.png
#> 2507                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16763.png
#> 2508                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126486.png
#> 2509                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886598.png
#> 2510                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4041703.png
#> 2511                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15062.png
#> 2512                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042435.png
#> 2513                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116680.png
#> 2514                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122899.png
#> 2515                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052056.png
#> 2516                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4360438.png
#> 2517                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054970.png
#> 2518                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12726.png
#> 2519                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16038.png
#> 2520                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932886.png
#> 2521                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574666.png
#> 2522                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139613.png
#> 2523                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3873935.png
#> 2524                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916923.png
#> 2525                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16843.png
#> 2526                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3920823.png
#> 2527                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919107.png
#> 2528                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3155647.png
#> 2529                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034790.png
#> 2530                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980206.png
#> 2531                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886826.png
#> 2532                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13234.png
#> 2533                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13256.png
#> 2534                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3933407.png
#> 2535                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16019.png
#> 2536                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892689.png
#> 2537                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038840.png
#> 2538                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3699530.png
#> 2539                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575453.png
#> 2540                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121542.png
#> 2541                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3722375.png
#> 2542                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049339.png
#> 2543                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3165702.png
#> 2544                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3920591.png
#> 2545                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15901.png
#> 2546                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13403.png
#> 2547                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059021.png
#> 2548                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12731.png
#> 2549                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045259.png
#> 2550                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15856.png
#> 2551                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16723.png
#> 2552                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894856.png
#> 2553                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16967.png
#> 2554                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034496.png
#> 2555                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035434.png
#> 2556                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14985.png
#> 2557                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13078.png
#> 2558                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3065813.png
#> 2559                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12895.png
#> 2560                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134362.png
#> 2561                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977680.png
#> 2562                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973605.png
#> 2563                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576240.png
#> 2564                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16140.png
#> 2565                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10487.png
#> 2566                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13987.png
#> 2567                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2330.png
#> 2568                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912550.png
#> 2569                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12514.png
#> 2570                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917612.png
#> 2571                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912551.png
#> 2572                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115364.png
#> 2573                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15921.png
#> 2574                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980148.png
#> 2575                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039723.png
#> 2576                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895798.png
#> 2577                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576599.png
#> 2578                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895859.png
#> 2579                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582147.png
#> 2580                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17283.png
#> 2581                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982323.png
#> 2582                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240589.png
#> 2583                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573103.png
#> 2584                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043080.png
#> 2585                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050481.png
#> 2586                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4081127.png
#> 2587                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17453.png
#> 2588                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13229.png
#> 2589                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3951441.png
#> 2590                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978308.png
#> 2591                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4217370.png
#> 2592                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116165.png
#> 2593                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4368796.png
#> 2594                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13934.png
#> 2595                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035496.png
#> 2596                                                                                             <NA>
#> 2597                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2310331.png
#> 2598                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16737.png
#> 2599                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914397.png
#> 2600                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118892.png
#> 2601                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15109.png
#> 2602                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511330.png
#> 2603                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040537.png
#> 2604                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116105.png
#> 2605                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040145.png
#> 2606                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048663.png
#> 2607                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17435.png
#> 2608                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035433.png
#> 2609                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043605.png
#> 2610                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576895.png
#> 2611                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2588098.png
#> 2612                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3675805.png
#> 2613                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120347.png
#> 2614                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036134.png
#> 2615                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054859.png
#> 2616                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574056.png
#> 2617                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16734.png
#> 2618                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915285.png
#> 2619                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052511.png
#> 2620                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035369.png
#> 2621                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4374269.png
#> 2622                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917316.png
#> 2623                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051320.png
#> 2624                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15090.png
#> 2625                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240123.png
#> 2626                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134316.png
#> 2627                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122154.png
#> 2628                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13294.png
#> 2629                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15946.png
#> 2630                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120070.png
#> 2631                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516927.png
#> 2632                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15245.png
#> 2633                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035098.png
#> 2634                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038994.png
#> 2635                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9704.png
#> 2636                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125126.png
#> 2637                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2518789.png
#> 2638                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16324.png
#> 2639                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122793.png
#> 2640                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16299.png
#> 2641                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043128.png
#> 2642                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039521.png
#> 2643                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126349.png
#> 2644                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13997.png
#> 2645                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047559.png
#> 2646                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916074.png
#> 2647                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4422336.png
#> 2648                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15355.png
#> 2649                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13186.png
#> 2650                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16910.png
#> 2651                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3913020.png
#> 2652                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11555.png
#> 2653                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044725.png
#> 2654                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14876.png
#> 2655                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129302.png
#> 2656                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042749.png
#> 2657                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036431.png
#> 2658                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127586.png
#> 2659                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043078.png
#> 2660                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125116.png
#> 2661                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17421.png
#> 2662                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15813.png
#> 2663                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931422.png
#> 2664                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259568.png
#> 2665                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16708.png
#> 2666                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13428.png
#> 2667                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4408915.png
#> 2668                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15054.png
#> 2669                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122099.png
#> 2670                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514397.png
#> 2671                                                                                             <NA>
#> 2672                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508256.png
#> 2673                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144991.png
#> 2674                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046704.png
#> 2675                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049698.png
#> 2676                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915772.png
#> 2677                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054212.png
#> 2678                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3675550.png
#> 2679                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042778.png
#> 2680                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139456.png
#> 2681                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049329.png
#> 2682                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2983209.png
#> 2683                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047646.png
#> 2684                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971718.png
#> 2685                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929785.png
#> 2686                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576491.png
#> 2687                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973405.png
#> 2688                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115443.png
#> 2689                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976182.png
#> 2690                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036831.png
#> 2691                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969920.png
#> 2692                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971586.png
#> 2693                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16900.png
#> 2694                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124086.png
#> 2695                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042496.png
#> 2696                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3058965.png
#> 2697                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3141066.png
#> 2698                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120508.png
#> 2699                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045465.png
#> 2700                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242154.png
#> 2701                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121034.png
#> 2702                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125248.png
#> 2703                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116152.png
#> 2704                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052883.png
#> 2705                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976495.png
#> 2706                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3686690.png
#> 2707                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134690.png
#> 2708                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931408.png
#> 2709                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3133368.png
#> 2710                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139448.png
#> 2711                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241986.png
#> 2712                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054950.png
#> 2713                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13973.png
#> 2714                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122692.png
#> 2715                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976263.png
#> 2716                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4686421.png
#> 2717                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3925354.png
#> 2718                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929956.png
#> 2719                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121581.png
#> 2720                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054840.png
#> 2721                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2566837.png
#> 2722                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2581273.png
#> 2723                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128263.png
#> 2724                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511708.png
#> 2725                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978263.png
#> 2726                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15965.png
#> 2727                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3068715.png
#> 2728                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15827.png
#> 2729                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977645.png
#> 2730                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575997.png
#> 2731                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054844.png
#> 2732                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035866.png
#> 2733                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4046525.png
#> 2734                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122441.png
#> 2735                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116689.png
#> 2736                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14978.png
#> 2737                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8429.png
#> 2738                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16888.png
#> 2739                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12904.png
#> 2740                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16166.png
#> 2741                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2565969.png
#> 2742                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115293.png
#> 2743                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915436.png
#> 2744                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8416.png
#> 2745                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14886.png
#> 2746                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931398.png
#> 2747                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2572861.png
#> 2748                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980077.png
#> 2749                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051902.png
#> 2750                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4360294.png
#> 2751                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979841.png
#> 2752                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578692.png
#> 2753                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122927.png
#> 2754                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916414.png
#> 2755                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242230.png
#> 2756                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049836.png
#> 2757                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121656.png
#> 2758                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16771.png
#> 2759                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17202.png
#> 2760                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049959.png
#> 2761                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051387.png
#> 2762                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036189.png
#> 2763                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980073.png
#> 2764                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16813.png
#> 2765                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052576.png
#> 2766                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2580330.png
#> 2767                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046705.png
#> 2768                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4029893.png
#> 2769                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035853.png
#> 2770                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121422.png
#> 2771                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115314.png
#> 2772                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915821.png
#> 2773                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036163.png
#> 2774                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924318.png
#> 2775                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14269.png
#> 2776                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054845.png
#> 2777                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4044121.png
#> 2778                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917960.png
#> 2779                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053760.png
#> 2780                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573343.png
#> 2781                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16954.png
#> 2782                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976257.png
#> 2783                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10503.png
#> 2784                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2565684.png
#> 2785                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16742.png
#> 2786                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057534.png
#> 2787                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120360.png
#> 2788                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126330.png
#> 2789                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049048.png
#> 2790                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4031164.png
#> 2791                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14999.png
#> 2792                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3163365.png
#> 2793                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17262.png
#> 2794                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043224.png
#> 2795                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15915.png
#> 2796                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052065.png
#> 2797                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511557.png
#> 2798                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126288.png
#> 2799                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11421.png
#> 2800                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16846.png
#> 2801                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894905.png
#> 2802                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16752.png
#> 2803                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116734.png
#> 2804                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116186.png
#> 2805                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516310.png
#> 2806                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3066250.png
#> 2807                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979810.png
#> 2808                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916742.png
#> 2809                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144996.png
#> 2810                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4081136.png
#> 2811                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120593.png
#> 2812                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15978.png
#> 2813                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044707.png
#> 2814                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049566.png
#> 2815                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138835.png
#> 2816                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972298.png
#> 2817                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16830.png
#> 2818                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125783.png
#> 2819                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048669.png
#> 2820                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12624.png
#> 2821                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045378.png
#> 2822                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14157.png
#> 2823                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052502.png
#> 2824                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15888.png
#> 2825                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2994680.png
#> 2826                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972090.png
#> 2827                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14948.png
#> 2828                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15820.png
#> 2829                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051880.png
#> 2830                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13843.png
#> 2831                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16747.png
#> 2832                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120863.png
#> 2833                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14998.png
#> 2834                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15854.png
#> 2835                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12424.png
#> 2836                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15350.png
#> 2837                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036434.png
#> 2838                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978256.png
#> 2839                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3110509.png
#> 2840                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2513908.png
#> 2841                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973033.png
#> 2842                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15713.png
#> 2843                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4218143.png
#> 2844                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052013.png
#> 2845                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4339831.png
#> 2846                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15419.png
#> 2847                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037345.png
#> 2848                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045642.png
#> 2849                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4327530.png
#> 2850                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10913.png
#> 2851                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515587.png
#> 2852                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976500.png
#> 2853                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515418.png
#> 2854                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969856.png
#> 2855                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11366.png
#> 2856                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912029.png
#> 2857                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16144.png
#> 2858                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045202.png
#> 2859                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577071.png
#> 2860                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4405778.png
#> 2861                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916913.png
#> 2862                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971880.png
#> 2863                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116159.png
#> 2864                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16914.png
#> 2865                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2508192.png
#> 2866                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057517.png
#> 2867                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14943.png
#> 2868 http://static.nfl.com/static/content/public/static/img/fantasy/transparent/200x200/FLE305635.png
#> 2869                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3155134.png
#> 2870                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039221.png
#> 2871                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14133.png
#> 2872                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981866.png
#> 2873                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971036.png
#> 2874                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574530.png
#> 2875                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921563.png
#> 2876                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971986.png
#> 2877                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4463.png
#> 2878                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573091.png
#> 2879                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921688.png
#> 2880                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2985844.png
#> 2881                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929849.png
#> 2882                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049271.png
#> 2883                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14802.png
#> 2884                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126096.png
#> 2885                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577421.png
#> 2886                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582034.png
#> 2887                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4331771.png
#> 2888                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3140596.png
#> 2889                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040198.png
#> 2890                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116618.png
#> 2891                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126176.png
#> 2892                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972562.png
#> 2893                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929030.png
#> 2894                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116598.png
#> 2895                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115496.png
#> 2896                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047486.png
#> 2897                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17244.png
#> 2898                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042880.png
#> 2899                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240629.png
#> 2900                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15939.png
#> 2901                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16949.png
#> 2902                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15057.png
#> 2903                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115329.png
#> 2904                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15872.png
#> 2905                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10613.png
#> 2906                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3920576.png
#> 2907                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576385.png
#> 2908                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16805.png
#> 2909                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124080.png
#> 2910                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15398.png
#> 2911                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578305.png
#> 2912                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040007.png
#> 2913                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14010.png
#> 2914                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2565759.png
#> 2915                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4010743.png
#> 2916                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969716.png
#> 2917                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11254.png
#> 2918                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053794.png
#> 2919                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8421.png
#> 2920                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577292.png
#> 2921                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052169.png
#> 2922                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16131.png
#> 2923                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17450.png
#> 2924                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2510713.png
#> 2925                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118081.png
#> 2926                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12703.png
#> 2927                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060794.png
#> 2928                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124861.png
#> 2929                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512218.png
#> 2930                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972273.png
#> 2931                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4084949.png
#> 2932                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915240.png
#> 2933                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045123.png
#> 2934                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974631.png
#> 2935                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979849.png
#> 2936                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16872.png
#> 2937                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17416.png
#> 2938                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242420.png
#> 2939                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10462.png
#> 2940                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15824.png
#> 2941                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126311.png
#> 2942                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16774.png
#> 2943                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11250.png
#> 2944                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977735.png
#> 2945                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125961.png
#> 2946                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046689.png
#> 2947                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929033.png
#> 2948                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972135.png
#> 2949                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972550.png
#> 2950                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059832.png
#> 2951                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971592.png
#> 2952                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050887.png
#> 2953                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123972.png
#> 2954                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17333.png
#> 2955                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969954.png
#> 2956                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3961462.png
#> 2957                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13769.png
#> 2958                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042884.png
#> 2959                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576437.png
#> 2960                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980480.png
#> 2961                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4058338.png
#> 2962                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16930.png
#> 2963                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125790.png
#> 2964                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13478.png
#> 2965                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127082.png
#> 2966                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910120.png
#> 2967                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122710.png
#> 2968                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122666.png
#> 2969                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049726.png
#> 2970                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134000.png
#> 2971                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128785.png
#> 2972                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4331772.png
#> 2973                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128687.png
#> 2974                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912549.png
#> 2975                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045126.png
#> 2976                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119436.png
#> 2977                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4423369.png
#> 2978                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14019.png
#> 2979                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052283.png
#> 2980                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049426.png
#> 2981                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3676003.png
#> 2982                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043720.png
#> 2983                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13992.png
#> 2984                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982949.png
#> 2985                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11236.png
#> 2986                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928743.png
#> 2987                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117912.png
#> 2988                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11300.png
#> 2989                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12436.png
#> 2990                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043157.png
#> 2991                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9677.png
#> 2992                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049025.png
#> 2993                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042381.png
#> 2994                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045268.png
#> 2995                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17184.png
#> 2996                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14953.png
#> 2997                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11337.png
#> 2998                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976623.png
#> 2999                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12442.png
#> 3000                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2519069.png
#> 3001                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13812.png
#> 3002                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125208.png
#> 3003                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511687.png
#> 3004                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16959.png
#> 3005                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14967.png
#> 3006                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053800.png
#> 3007                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514374.png
#> 3008                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115911.png
#> 3009                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917834.png
#> 3010                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516417.png
#> 3011                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977620.png
#> 3012                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15829.png
#> 3013                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16712.png
#> 3014                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514217.png
#> 3015                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16773.png
#> 3016                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971499.png
#> 3017                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054854.png
#> 3018                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3063943.png
#> 3019                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049337.png
#> 3020                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3530.png
#> 3021                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122879.png
#> 3022                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053000.png
#> 3023                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578754.png
#> 3024                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2509488.png
#> 3025                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239787.png
#> 3026                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978355.png
#> 3027                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127379.png
#> 3028                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15278.png
#> 3029 http://static.nfl.com/static/content/public/static/img/fantasy/transparent/200x200/ANA638910.png
#> 3030                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2567970.png
#> 3031                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972118.png
#> 3032                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578530.png
#> 3033                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049326.png
#> 3034                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17141.png
#> 3035                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052175.png
#> 3036                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17430.png
#> 3037                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043274.png
#> 3038                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15356.png
#> 3039                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12417.png
#> 3040                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049895.png
#> 3041                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15319.png
#> 3042                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3041114.png
#> 3043                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057530.png
#> 3044                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123681.png
#> 3045                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16431.png
#> 3046                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042873.png
#> 3047                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915769.png
#> 3048                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042883.png
#> 3049                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045152.png
#> 3050                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986781.png
#> 3051                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924375.png
#> 3052                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914384.png
#> 3053                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973627.png
#> 3054                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573947.png
#> 3055                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139339.png
#> 3056                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12762.png
#> 3057                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129292.png
#> 3058                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16860.png
#> 3059                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12692.png
#> 3060                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057998.png
#> 3061                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13985.png
#> 3062                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050096.png
#> 3063                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916590.png
#> 3064                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970397.png
#> 3065                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576678.png
#> 3066                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122439.png
#> 3067                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042693.png
#> 3068                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13860.png
#> 3069                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4051591.png
#> 3070                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16037.png
#> 3071                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119152.png
#> 3072                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045532.png
#> 3073                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974324.png
#> 3074                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3957496.png
#> 3075                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15905.png
#> 3076                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123045.png
#> 3077                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17296.png
#> 3078                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15064.png
#> 3079                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4255255.png
#> 3080                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049043.png
#> 3081                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3163390.png
#> 3082                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981846.png
#> 3083                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10546.png
#> 3084                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3939134.png
#> 3085                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411188.png
#> 3086                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116632.png
#> 3087                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121643.png
#> 3088                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123079.png
#> 3089 http://static.nfl.com/static/content/public/static/img/fantasy/transparent/200x200/JAR737137.png
#> 3090                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4263210.png
#> 3091                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053061.png
#> 3092                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124087.png
#> 3093                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894927.png
#> 3094                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16776.png
#> 3095                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16568.png
#> 3096                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115307.png
#> 3097                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16695.png
#> 3098                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970137.png
#> 3099                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042744.png
#> 3100                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035707.png
#> 3101                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053054.png
#> 3102                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13288.png
#> 3103                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575583.png
#> 3104                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127341.png
#> 3105                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14441.png
#> 3106                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121601.png
#> 3107                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12443.png
#> 3108                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9598.png
#> 3109                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057976.png
#> 3110                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576371.png
#> 3111                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17253.png
#> 3112                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15937.png
#> 3113                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970111.png
#> 3114                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039721.png
#> 3115                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051674.png
#> 3116                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9720.png
#> 3117                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17214.png
#> 3118                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17428.png
#> 3119                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052751.png
#> 3120                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15955.png
#> 3121                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125300.png
#> 3122                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579622.png
#> 3123                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052510.png
#> 3124                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15460.png
#> 3125                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040172.png
#> 3126                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118188.png
#> 3127                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17285.png
#> 3128                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971436.png
#> 3129                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3131528.png
#> 3130                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128455.png
#> 3131                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980071.png
#> 3132                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929841.png
#> 3133                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115929.png
#> 3134                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042645.png
#> 3135                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040516.png
#> 3136                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16398.png
#> 3137                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038466.png
#> 3138                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515893.png
#> 3139                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2581513.png
#> 3140                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978281.png
#> 3141                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11424.png
#> 3142                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043238.png
#> 3143                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976317.png
#> 3144                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042747.png
#> 3145                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125884.png
#> 3146                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16744.png
#> 3147                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14310.png
#> 3148                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2469470.png
#> 3149                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918012.png
#> 3150                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3908873.png
#> 3151                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14014.png
#> 3152                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578408.png
#> 3153                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240239.png
#> 3154                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5273.png
#> 3155                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516320.png
#> 3156                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16738.png
#> 3157                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16127.png
#> 3158                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13240.png
#> 3159                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116072.png
#> 3160                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122924.png
#> 3161                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115478.png
#> 3162                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2572846.png
#> 3163                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978244.png
#> 3164                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981212.png
#> 3165                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576236.png
#> 3166                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977698.png
#> 3167                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2513199.png
#> 3168                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045222.png
#> 3169                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16875.png
#> 3170                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045472.png
#> 3171                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515931.png
#> 3172                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15351.png
#> 3173                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13940.png
#> 3174                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3136308.png
#> 3175                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2586700.png
#> 3176                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045201.png
#> 3177                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16366.png
#> 3178                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15765.png
#> 3179                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577467.png
#> 3180                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116375.png
#> 3181                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17223.png
#> 3182                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14332.png
#> 3183                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042434.png
#> 3184                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516316.png
#> 3185                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117250.png
#> 3186                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3075100.png
#> 3187                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578390.png
#> 3188                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17467.png
#> 3189                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15001.png
#> 3190                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969018.png
#> 3191                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049640.png
#> 3192                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14016.png
#> 3193                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912991.png
#> 3194                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577110.png
#> 3195                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039283.png
#> 3196                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051737.png
#> 3197                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045206.png
#> 3198                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917203.png
#> 3199                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516019.png
#> 3200                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053027.png
#> 3201                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16850.png
#> 3202                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574557.png
#> 3203                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13404.png
#> 3204                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128706.png
#> 3205                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2570484.png
#> 3206                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14117.png
#> 3207                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977613.png
#> 3208                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115379.png
#> 3209                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578554.png
#> 3210                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13340.png
#> 3211                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16904.png
#> 3212                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10611.png
#> 3213                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13251.png
#> 3214                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9701.png
#> 3215                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5893.png
#> 3216                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930075.png
#> 3217                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980441.png
#> 3218                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915291.png
#> 3219                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13645.png
#> 3220                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16419.png
#> 3221                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971550.png
#> 3222                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892785.png
#> 3223                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16206.png
#> 3224                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050534.png
#> 3225                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124020.png
#> 3226                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16450.png
#> 3227                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9793.png
#> 3228                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16054.png
#> 3229                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12644.png
#> 3230                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12716.png
#> 3231                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043146.png
#> 3232                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2510547.png
#> 3233                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10481.png
#> 3234                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128688.png
#> 3235                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10465.png
#> 3236                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12619.png
#> 3237                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971542.png
#> 3238                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046342.png
#> 3239                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049935.png
#> 3240                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13395.png
#> 3241                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915373.png
#> 3242                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123658.png
#> 3243                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122800.png
#> 3244                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15079.png
#> 3245                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139926.png
#> 3246                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4076949.png
#> 3247                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125916.png
#> 3248                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14297.png
#> 3249                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17317.png
#> 3250                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043217.png
#> 3251                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051706.png
#> 3252                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050953.png
#> 3253                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4422420.png
#> 3254                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243241.png
#> 3255                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14995.png
#> 3256                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3908989.png
#> 3257                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16739.png
#> 3258                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17727.png
#> 3259                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977770.png
#> 3260                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115391.png
#> 3261                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047195.png
#> 3262                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14070.png
#> 3263                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124111.png
#> 3264                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2613168.png
#> 3265                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971279.png
#> 3266                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4002060.png
#> 3267                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517252.png
#> 3268                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14961.png
#> 3269                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976113.png
#> 3270                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980036.png
#> 3271                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15276.png
#> 3272                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122851.png
#> 3273                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17102.png
#> 3274                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977653.png
#> 3275                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10568.png
#> 3276                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12883.png
#> 3277                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115302.png
#> 3278                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116094.png
#> 3279                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13261.png
#> 3280                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128346.png
#> 3281                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969004.png
#> 3282                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15871.png
#> 3283                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049589.png
#> 3284                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2991684.png
#> 3285                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986639.png
#> 3286                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14753.png
#> 3287                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971635.png
#> 3288                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057991.png
#> 3289                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12972.png
#> 3290                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14178.png
#> 3291                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14981.png
#> 3292                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052094.png
#> 3293                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120361.png
#> 3294                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582406.png
#> 3295                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052023.png
#> 3296                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13273.png
#> 3297                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239773.png
#> 3298                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15098.png
#> 3299                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15787.png
#> 3300                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059734.png
#> 3301                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045153.png
#> 3302                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120365.png
#> 3303                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125897.png
#> 3304                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12614.png
#> 3305                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12728.png
#> 3306                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17040.png
#> 3307                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046434.png
#> 3308                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577172.png
#> 3309                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15801.png
#> 3310                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516067.png
#> 3311                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17210.png
#> 3312                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124550.png
#> 3313                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574570.png
#> 3314                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577042.png
#> 3315                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16859.png
#> 3316                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14208.png
#> 3317                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910591.png
#> 3318                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575978.png
#> 3319                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046696.png
#> 3320                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16835.png
#> 3321                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127365.png
#> 3322                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16403.png
#> 3323                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122894.png
#> 3324                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577115.png
#> 3325                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052887.png
#> 3326                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582006.png
#> 3327                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17013.png
#> 3328                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056493.png
#> 3329                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576355.png
#> 3330                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054041.png
#> 3331                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915102.png
#> 3332                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15870.png
#> 3333                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512571.png
#> 3334                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046392.png
#> 3335                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4081809.png
#> 3336                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042907.png
#> 3337                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573414.png
#> 3338                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3069758.png
#> 3339                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121419.png
#> 3340                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116735.png
#> 3341                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977624.png
#> 3342                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515944.png
#> 3343                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16235.png
#> 3344                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578713.png
#> 3345                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2470264.png
#> 3346                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15347.png
#> 3347                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126065.png
#> 3348                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040102.png
#> 3349                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12680.png
#> 3350                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929863.png
#> 3351                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036407.png
#> 3352                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10530.png
#> 3353                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052516.png
#> 3354                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892890.png
#> 3355                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915883.png
#> 3356                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11299.png
#> 3357                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051321.png
#> 3358                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17095.png
#> 3359                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11382.png
#> 3360                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13283.png
#> 3361                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15409.png
#> 3362                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979845.png
#> 3363                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13278.png
#> 3364                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16412.png
#> 3365                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116592.png
#> 3366                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4294246.png
#> 3367                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045217.png
#> 3368                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16686.png
#> 3369                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15869.png
#> 3370                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14990.png
#> 3371                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973599.png
#> 3372                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978250.png
#> 3373                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052709.png
#> 3374 http://static.nfl.com/static/content/public/static/img/fantasy/transparent/200x200/ALL656247.png
#> 3375                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13451.png
#> 3376                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914595.png
#> 3377                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056472.png
#> 3378                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045469.png
#> 3379                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970256.png
#> 3380                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045249.png
#> 3381                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047235.png
#> 3382                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128747.png
#> 3383                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980586.png
#> 3384                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046694.png
#> 3385                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051458.png
#> 3386                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974300.png
#> 3387                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051412.png
#> 3388                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4334406.png
#> 3389                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4262186.png
#> 3390                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980070.png
#> 3391                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057972.png
#> 3392                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052144.png
#> 3393                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127302.png
#> 3394                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042403.png
#> 3395                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16926.png
#> 3396                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259349.png
#> 3397                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2323439.png
#> 3398                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045180.png
#> 3399                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986701.png
#> 3400                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040893.png
#> 3401                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979532.png
#> 3402                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3862861.png
#> 3403                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129306.png
#> 3404                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035474.png
#> 3405                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042733.png
#> 3406                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116737.png
#> 3407                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16924.png
#> 3408                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122794.png
#> 3409                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045149.png
#> 3410                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128853.png
#> 3411                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3700080.png
#> 3412                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051368.png
#> 3413                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4250485.png
#> 3414                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2585785.png
#> 3415                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116052.png
#> 3416                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115923.png
#> 3417                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3133361.png
#> 3418                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974249.png
#> 3419                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037632.png
#> 3420                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971051.png
#> 3421                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577354.png
#> 3422                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052161.png
#> 3423                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040065.png
#> 3424                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2148.png
#> 3425                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971728.png
#> 3426                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/1440.png
#> 3427                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17130.png
#> 3428                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059104.png
#> 3429                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128692.png
#> 3430                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15918.png
#> 3431                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2582419.png
#> 3432                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/1097.png
#> 3433                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16976.png
#> 3434                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11737.png
#> 3435                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4333.png
#> 3436                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9329.png
#> 3437                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14262.png
#> 3438                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16897.png
#> 3439                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577602.png
#> 3440                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16983.png
#> 3441                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14026.png
#> 3442                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16852.png
#> 3443                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14023.png
#> 3444                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13779.png
#> 3445                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11609.png
#> 3446                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121376.png
#> 3447                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578565.png
#> 3448                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15954.png
#> 3449                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15040.png
#> 3450                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2265764.png
#> 3451                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120075.png
#> 3452                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2579598.png
#> 3453                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16268.png
#> 3454                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15640.png
#> 3455                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056831.png
#> 3456                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12988.png
#> 3457                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11401.png
#> 3458                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14973.png
#> 3459                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15112.png
#> 3460                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14387.png
#> 3461                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16762.png
#> 3462                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16025.png
#> 3463                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915778.png
#> 3464                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9424.png
#> 3465                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576461.png
#> 3466                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16457.png
#> 3467                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13422.png
#> 3468                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16891.png
#> 3469                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13851.png
#> 3470                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16721.png
#> 3471                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10138.png
#> 3472                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14739.png
#> 3473                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915393.png
#> 3474                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16849.png
#> 3475                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515545.png
#> 3476                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577371.png
#> 3477                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13248.png
#> 3478                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15002.png
#> 3479                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15930.png
#> 3480                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13482.png
#> 3481                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13766.png
#> 3482                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2987188.png
#> 3483                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056719.png
#> 3484                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16902.png
#> 3485                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14952.png
#> 3486                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2510601.png
#> 3487                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576646.png
#> 3488                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15246.png
#> 3489                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12449.png
#> 3490                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517389.png
#> 3491                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515337.png
#> 3492                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8430.png
#> 3493                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16937.png
#> 3494                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4468.png
#> 3495                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046428.png
#> 3496                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516283.png
#> 3497                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2578388.png
#> 3498                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14929.png
#> 3499                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045361.png
#> 3500                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123941.png
#> 3501                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13995.png
#> 3502                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12438.png
#> 3503                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917286.png
#> 3504                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15977.png
#> 3505                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577219.png
#> 3506                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3001171.png
#> 3507                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577718.png
#> 3508                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049262.png
#> 3509                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917548.png
#> 3510                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514468.png
#> 3511                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2468550.png
#> 3512                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12439.png
#> 3513                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910330.png
#> 3514                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979652.png
#> 3515                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14152.png
#> 3516                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576635.png
#> 3517                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3085243.png
#> 3518                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14015.png
#> 3519                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16727.png
#> 3520                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/9276.png
#> 3521                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980138.png
#> 3522                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144792.png
#> 3523                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13777.png
#> 3524                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10560.png
#> 3525                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16361.png
#> 3526                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122680.png
#> 3527                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516051.png
#> 3528                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052422.png
#> 3529                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039982.png
#> 3530                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914817.png
#> 3531                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976115.png
#> 3532                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974333.png
#> 3533                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128354.png
#> 3534                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2568060.png
#> 3535                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126350.png
#> 3536                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13968.png
#> 3537                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115258.png
#> 3538                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125323.png
#> 3539                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121563.png
#> 3540                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932392.png
#> 3541                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912362.png
#> 3542                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126348.png
#> 3543                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4339830.png
#> 3544                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4408860.png
#> 3545                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048672.png
#> 3546                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059973.png
#> 3547                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052515.png
#> 3548                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243164.png
#> 3549                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914155.png
#> 3550                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042743.png
#> 3551                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119315.png
#> 3552                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122684.png
#> 3553                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042478.png
#> 3554                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915787.png
#> 3555                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048705.png
#> 3556                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10529.png
#> 3557                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128698.png
#> 3558                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13608.png
#> 3559                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057975.png
#> 3560                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918417.png
#> 3561                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15850.png
#> 3562                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917847.png
#> 3563                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051886.png
#> 3564                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2584628.png
#> 3565                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116695.png
#> 3566                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4081021.png
#> 3567                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921970.png
#> 3568                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124544.png
#> 3569                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2982803.png
#> 3570                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980639.png
#> 3571                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2471470.png
#> 3572                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411196.png
#> 3573                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128801.png
#> 3574                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4390082.png
#> 3575                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124030.png
#> 3576                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971032.png
#> 3577                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056487.png
#> 3578                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051940.png
#> 3579                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971022.png
#> 3580                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4266934.png
#> 3581                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116693.png
#> 3582                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042370.png
#> 3583                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050925.png
#> 3584                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978064.png
#> 3585                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914861.png
#> 3586                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045851.png
#> 3587                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515422.png
#> 3588                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971565.png
#> 3589                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576378.png
#> 3590                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116620.png
#> 3591                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916928.png
#> 3592                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121408.png
#> 3593                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139626.png
#> 3594                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047923.png
#> 3595                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972232.png
#> 3596                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118964.png
#> 3597                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971373.png
#> 3598                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045376.png
#> 3599                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978065.png
#> 3600                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576666.png
#> 3601                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042361.png
#> 3602                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120573.png
#> 3603                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128396.png
#> 3604                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978411.png
#> 3605                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049574.png
#> 3606                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912679.png
#> 3607                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115352.png
#> 3608                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128308.png
#> 3609                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126363.png
#> 3610                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117242.png
#> 3611                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045261.png
#> 3612                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124103.png
#> 3613                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126478.png
#> 3614                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116162.png
#> 3615                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577919.png
#> 3616                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917329.png
#> 3617                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052451.png
#> 3618                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921958.png
#> 3619                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4290803.png
#> 3620                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515838.png
#> 3621                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577203.png
#> 3622                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125898.png
#> 3623                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040024.png
#> 3624                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4251200.png
#> 3625                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036493.png
#> 3626                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971636.png
#> 3627                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129304.png
#> 3628                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045243.png
#> 3629                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060799.png
#> 3630                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052184.png
#> 3631                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115384.png
#> 3632                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16573.png
#> 3633                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929954.png
#> 3634                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126120.png
#> 3635                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2567868.png
#> 3636                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042536.png
#> 3637                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3922125.png
#> 3638                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576703.png
#> 3639                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2520845.png
#> 3640                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514799.png
#> 3641                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052996.png
#> 3642                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2975680.png
#> 3643                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121578.png
#> 3644                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039776.png
#> 3645                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034945.png
#> 3646                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976524.png
#> 3647                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051712.png
#> 3648                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577651.png
#> 3649                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976179.png
#> 3650                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574163.png
#> 3651                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574558.png
#> 3652                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042773.png
#> 3653                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2470344.png
#> 3654                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517002.png
#> 3655                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576660.png
#> 3656                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125119.png
#> 3657                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122932.png
#> 3658                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039921.png
#> 3659                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972820.png
#> 3660                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053777.png
#> 3661                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3062371.png
#> 3662                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916585.png
#> 3663                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3137842.png
#> 3664                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976546.png
#> 3665                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040542.png
#> 3666                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928934.png
#> 3667                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034773.png
#> 3668                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052021.png
#> 3669                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039942.png
#> 3670                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17390.png
#> 3671                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574396.png
#> 3672                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971388.png
#> 3673                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059941.png
#> 3674                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4421448.png
#> 3675                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981069.png
#> 3676                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051330.png
#> 3677                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3844004.png
#> 3678                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576443.png
#> 3679                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516314.png
#> 3680                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050401.png
#> 3681                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514802.png
#> 3682                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575636.png
#> 3683                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119531.png
#> 3684                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576365.png
#> 3685                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116133.png
#> 3686                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3055604.png
#> 3687                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15927.png
#> 3688                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974240.png
#> 3689                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512704.png
#> 3690                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117248.png
#> 3691                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3140151.png
#> 3692                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128699.png
#> 3693                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122934.png
#> 3694                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048635.png
#> 3695                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139092.png
#> 3696                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970255.png
#> 3697                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128311.png
#> 3698                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046702.png
#> 3699                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2969125.png
#> 3700                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037476.png
#> 3701                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115977.png
#> 3702                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972575.png
#> 3703                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116702.png
#> 3704                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919077.png
#> 3705                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514505.png
#> 3706                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915238.png
#> 3707                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978275.png
#> 3708                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042468.png
#> 3709                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978519.png
#> 3710                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4329476.png
#> 3711                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924355.png
#> 3712                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3938130.png
#> 3713                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978207.png
#> 3714                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138756.png
#> 3715                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046323.png
#> 3716                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4251009.png
#> 3717                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036833.png
#> 3718                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116658.png
#> 3719                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974612.png
#> 3720                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046693.png
#> 3721                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2981862.png
#> 3722                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056440.png
#> 3723                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573312.png
#> 3724                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123982.png
#> 3725                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121518.png
#> 3726                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2987317.png
#> 3727                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576480.png
#> 3728                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120858.png
#> 3729                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2471491.png
#> 3730                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051938.png
#> 3731                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2273.png
#> 3732                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051820.png
#> 3733                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046441.png
#> 3734                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16623.png
#> 3735                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980123.png
#> 3736                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5749.png
#> 3737                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129309.png
#> 3738                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10238.png
#> 3739                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17495.png
#> 3740                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2996095.png
#> 3741                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15389.png
#> 3742                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15616.png
#> 3743                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516357.png
#> 3744                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14073.png
#> 3745                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050015.png
#> 3746                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3133168.png
#> 3747                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15926.png
#> 3748                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128814.png
#> 3749                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976299.png
#> 3750                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979695.png
#> 3751                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15187.png
#> 3752                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14879.png
#> 3753                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2466005.png
#> 3754                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15904.png
#> 3755                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139591.png
#> 3756                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4290778.png
#> 3757                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040134.png
#> 3758                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13197.png
#> 3759                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040507.png
#> 3760                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059773.png
#> 3761                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16593.png
#> 3762                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3087801.png
#> 3763                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977881.png
#> 3764                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3041097.png
#> 3765                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979985.png
#> 3766                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5209.png
#> 3767                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575910.png
#> 3768                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050022.png
#> 3769                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16943.png
#> 3770                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8627.png
#> 3771                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/5526.png
#> 3772                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046412.png
#> 3773                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057986.png
#> 3774                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052061.png
#> 3775                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139487.png
#> 3776                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118374.png
#> 3777                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576261.png
#> 3778                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931782.png
#> 3779                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053315.png
#> 3780                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577243.png
#> 3781                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/12482.png
#> 3782                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15803.png
#> 3783                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14878.png
#> 3784                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15407.png
#> 3785                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048030.png
#> 3786                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4459.png
#> 3787                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3078660.png
#> 3788                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040826.png
#> 3789                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14874.png
#> 3790                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123048.png
#> 3791                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8644.png
#> 3792                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575214.png
#> 3793                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115966.png
#> 3794                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575660.png
#> 3795                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17452.png
#> 3796                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577692.png
#> 3797                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3886636.png
#> 3798                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918026.png
#> 3799                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512191.png
#> 3800                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122799.png
#> 3801                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2521161.png
#> 3802                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14360.png
#> 3803                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576237.png
#> 3804                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929855.png
#> 3805                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124608.png
#> 3806                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971435.png
#> 3807                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139485.png
#> 3808                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4421390.png
#> 3809                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576280.png
#> 3810                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14005.png
#> 3811                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052662.png
#> 3812                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16749.png
#> 3813                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15755.png
#> 3814                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17465.png
#> 3815                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15893.png
#> 3816                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124022.png
#> 3817                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974712.png
#> 3818                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11307.png
#> 3819                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051762.png
#> 3820                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4422215.png
#> 3821                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575408.png
#> 3822                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15457.png
#> 3823                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843406.png
#> 3824                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4057659.png
#> 3825                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972282.png
#> 3826                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17284.png
#> 3827                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576165.png
#> 3828                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2573300.png
#> 3829                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039226.png
#> 3830                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2972283.png
#> 3831                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/10456.png
#> 3832                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048924.png
#> 3833                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16055.png
#> 3834                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577253.png
#> 3835                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17133.png
#> 3836                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049987.png
#> 3837                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916451.png
#> 3838                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16950.png
#> 3839                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128267.png
#> 3840                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4328969.png
#> 3841                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126072.png
#> 3842                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11278.png
#> 3843                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121583.png
#> 3844                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16040.png
#> 3845                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13587.png
#> 3846                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2575553.png
#> 3847                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034782.png
#> 3848                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14894.png
#> 3849                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124979.png
#> 3850                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914267.png
#> 3851                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4426310.png
#> 3852                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16803.png
#> 3853                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043216.png
#> 3854                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051711.png
#> 3855                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14518.png
#> 3856                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4047769.png
#> 3857                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040143.png
#> 3858                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2570994.png
#> 3859                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11247.png
#> 3860                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2581598.png
#> 3861                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047519.png
#> 3862                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2580343.png
#> 3863                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11258.png
#> 3864                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16024.png
#> 3865                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043097.png
#> 3866                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3041102.png
#> 3867                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576303.png
#> 3868                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/17396.png
#> 3869                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577283.png
#> 3870                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052163.png
#> 3871                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054030.png
#> 3872                      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/8544.png
#> 3873                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974212.png
#> 3874                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126113.png
#> 3875                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16969.png
#> 3876                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11383.png
#> 3877                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14129.png
#> 3878                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515416.png
#> 3879                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16783.png
#> 3880                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515934.png
#> 3881                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928461.png
#> 3882                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3135736.png
#> 3883                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3140525.png
#> 3884                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14017.png
#> 3885                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16921.png
#> 3886                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16994.png
#> 3887                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980105.png
#> 3888                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040146.png
#> 3889                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970017.png
#> 3890                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127374.png
#> 3891                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15952.png
#> 3892                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929927.png
#> 3893                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3843750.png
#> 3894                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15296.png
#> 3895                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971289.png
#> 3896                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117131.png
#> 3897                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917814.png
#> 3898                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14895.png
#> 3899                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045199.png
#> 3900                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577245.png
#> 3901                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576873.png
#> 3902                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122842.png
#> 3903                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13204.png
#> 3904                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13213.png
#> 3905                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3895788.png
#> 3906                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574474.png
#> 3907                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2576408.png
#> 3908                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14193.png
#> 3909                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047969.png
#> 3910                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912576.png
#> 3911                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2968226.png
#> 3912                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3705353.png
#> 3913                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919544.png
#> 3914                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15855.png
#> 3915                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116690.png
#> 3916                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052624.png
#> 3917                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970183.png
#> 3918                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14028.png
#> 3919 http://static.nfl.com/static/content/public/static/img/fantasy/transparent/200x200/PHI112826.png
#> 3920                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930272.png
#> 3921                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124074.png
#> 3922                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3119996.png
#> 3923                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15832.png
#> 3924                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4339834.png
#> 3925                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060919.png
#> 3926                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514123.png
#> 3927                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123212.png
#> 3928                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040644.png
#> 3929                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116563.png
#> 3930                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13203.png
#> 3931                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11788.png
#> 3932                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/11238.png
#> 3933                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129453.png
#> 3934                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917846.png
#> 3935                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15848.png
#> 3936                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4294229.png
#> 3937                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971888.png
#> 3938                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042728.png
#> 3939                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14885.png
#> 3940                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122761.png
#> 3941                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243243.png
#> 3942                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117846.png
#> 3943                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128696.png
#> 3944                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122442.png
#> 3945                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16833.png
#> 3946                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127378.png
#> 3947                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2517248.png
#> 3948                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980380.png
#> 3949                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16195.png
#> 3950                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16735.png
#> 3951                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2572986.png
#> 3952                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979584.png
#> 3953                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4339173.png
#> 3954                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/14274.png
#> 3955                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918008.png
#> 3956                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2511832.png
#> 3957                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574553.png
#> 3958                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15305.png
#> 3959                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043215.png
#> 3960                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121433.png
#> 3961                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117414.png
#> 3962                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894908.png
#> 3963                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13338.png
#> 3964                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123667.png
#> 3965                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16008.png
#> 3966                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2976308.png
#> 3967                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13697.png
#> 3968                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921654.png
#> 3969                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127305.png
#> 3970                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577076.png
#> 3971                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3894939.png
#> 3972                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973956.png
#> 3973                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986767.png
#> 3974                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13544.png
#> 3975                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/16819.png
#> 3976                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2470860.png
#> 3977                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115472.png
#> 3978                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134683.png
#> 3979                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971519.png
#> 3980                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3931774.png
#> 3981                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116423.png
#> 3982                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15809.png
#> 3983                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122173.png
#> 3984                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2515405.png
#> 3985                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916064.png
#> 3986                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15992.png
#> 3987                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13264.png
#> 3988                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2577293.png
#> 3989                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3957450.png
#> 3990                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979535.png
#> 3991                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052080.png
#> 3992                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3043147.png
#> 3993                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2574756.png
#> 3994                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2512591.png
#> 3995                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056913.png
#> 3996                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929926.png
#> 3997                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/15612.png
#> 3998                   https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2161946.png
#> 3999                     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/13336.png
#>      fantasy_data_id sleeper_id years_exp                        sportradar_id
#> 1              19898       5062        NA 53d25371-e3ce-4030-8d0a-82def5cdc600
#> 2              20763       6058        NA 0c8b0581-9ed2-488b-bcaa-ef783261dfd1
#> 3              20888       5864        NA c025b513-9431-4097-bc25-9777bf08f846
#> 4              13135        908        NA f1879cfa-4c07-4140-9da0-c7ebe9af2dfd
#> 5              22171       7169        NA 528bf5c9-1d23-40c3-adda-df21f8f0e2ab
#> 6              18293       3527        NA 30e539c3-74dd-4a9a-9ebb-4bdd0f0d39f8
#> 7               4490        172        NA 06dab231-dbbd-4ccb-8233-3c2d70318ee3
#> 8              15177       1540        NA 4f5ca039-21f3-4045-9c2e-c0b4d5d564c5
#> 9              13415        972        NA 9f3b934e-52d6-4e16-ae92-d3e60be10493
#> 10             13871       1068        NA e972d67d-8302-4c64-9c1c-bc3121b90af4
#> 11             21941       7432        NA 2d969b4e-4da9-4bf6-abd7-02c5e607c080
#> 12             21251       6344        NA cff07c85-137a-4496-8df9-4f96f68f1318
#> 13             21635       6711        NA 56992f39-70e7-4b6a-86da-0a4776504e7a
#> 14             18521       3714        NA 7757384a-6b03-41fb-9c77-3c016a968d1c
#> 15             15011       1442        NA 6c7704c2-f833-46aa-9f9c-d975d5ad1297
#> 16             20879       5900        NA 26d3edb9-e572-4272-835a-21b63200ea64
#> 17             21141       6304        NA cf0c253d-45bd-48f5-9602-88c3d9ca1082
#> 18             15069       1474        NA 0606c9ab-8351-4a38-8ca4-ceb16e982f6a
#> 19             16153       1920        NA 6399b33c-6d3d-4fc5-b142-1a5deb33ef76
#> 20             16911       2454        NA 376a61bd-de05-4fb1-a698-7f93fd1a102c
#> 21             16861       2405        NA e9799059-f592-47e8-aab3-e2027fe7b148
#> 22             22083       6948        NA 2040899a-0b04-4de7-900b-f9e6861c6150
#> 23             20738       5871        NA f68685e7-9904-47bc-b39a-e1c813435385
#> 24             16813       2357        NA 023af11a-3aa1-4266-b163-31cf6369ef3b
#> 25             21124       6273        NA 344f10b9-b272-4f2f-8d1e-468f38f59f5e
#> 26             18524       3716        NA 64d8dddf-b3fe-4146-8d08-36e9c0b6eede
#> 27             14585       1243        NA be62bf39-c737-416f-a1ea-6b9d61684a62
#> 28             21266       6570        NA 8b7ee20f-238e-4b6f-b43d-4f9624bf2534
#> 29             19001       4155        NA f4f08533-c692-4aba-84fe-fc21101c7bda
#> 30             15094       1496        NA b6fe2eb8-3692-450a-98b3-11e47c8b6711
#> 31             21160       6560        NA 1dc22599-4ce9-49c2-bc8a-179a50e13cc1
#> 32             16894       2437        NA f19b687d-b81f-4104-9151-92e2af7d234d
#> 33             11735        658        NA e017e12b-07a7-4a35-b837-2faa9ffe3ce8
#> 34             19079       4233        NA cd0f4ef0-9914-4125-be4d-804a72350ceb
#> 35             15854       4958        NA 99c9de87-7fe1-4d5e-928e-586f48af2d79
#> 36             20085       5158        NA 48700b7b-210c-4ced-9c57-3e21162e7752
#> 37             16397       2084        NA 036131ed-3862-4f06-8379-084d3b2352d5
#> 38             16792       2336        NA e2a4fca8-0482-442e-93f7-3cef0fb2358d
#> 39             20088       5161        NA 83849bc5-0b6c-4c76-b622-9c7042758e97
#> 40             19965       5069        NA ec198436-31b1-458e-a47b-9d1cd134300f
#> 41             16845       2389        NA 4f090881-03fc-4a34-b02f-fd1df1e411de
#> 42             18909       4063        NA ee399a97-6868-4db1-9381-09073914c2d6
#> 43             19071       4225        NA 23f29e42-92e5-41b2-88eb-b9fb17a0eede
#> 44             16819       2363        NA 78eb0872-fff0-4fc2-94ee-6a5c518ecaa5
#> 45             19591       4689        NA 1fc0af83-3c6e-4f4d-aadf-233e501c7241
#> 46             18037       3276        NA 25a643a9-3b59-4739-8430-2713a818fb69
#> 47             13749       1038        NA 5197def5-f444-4561-ad28-7aac10dc748e
#> 48             22383       7398        NA 75513062-bfe5-4e32-af04-04a805c0fd8d
#> 49             19433       4552        NA 983aee62-70d8-4d39-a857-da6fee82bef1
#> 50             18180       3417        NA dc447507-2380-494c-96c9-e0edb2679a3c
#> 51             22002       7040        NA 41dabf34-2055-4420-8aef-c222d7df48e6
#> 52             22004       6781        NA b87d80b7-f129-4f3d-938a-1272f8122589
#> 53             14042       1122        NA 99149c69-e14f-4e05-9c3a-8ae7e3b1f00b
#> 54             11437        608        NA a50e3085-370b-4fd2-b79a-28d3b9c5c1c7
#> 55             21885       7004        NA 6e9763f5-2f5c-45d4-b50b-d7bbf91e1a65
#> 56              5929        236        NA 6a3bcfd5-a855-4173-a2aa-94e2c77c8268
#> 57              3100        112        NA edaad8e3-62cd-4715-b225-0010ee9825a0
#> 58             20889       5849        NA dd5a6b6e-ffae-45a5-b8e6-718a9251f374
#> 59             21866       6778        NA 23461354-f2d7-4e36-9046-fe9cde6dd413
#> 60             16907       2450        NA e97f5ca9-186e-4346-ae65-1cd757ada455
#> 61             18003       3242        NA a0b93053-d349-4dd1-a840-24577102699b
#> 62             19919       5000        NA d8d9b161-7ef4-42bf-89b7-7edf806a0ad1
#> 63             19129       4283        NA d16f5060-d562-492b-9ab8-4a495920e808
#> 64             21773       6951        NA aebf7b65-da15-4499-b1af-6687fa50b2e4
#> 65             18253       3488        NA 39d12962-65a4-4107-8924-56f48fce31ef
#> 66             21782       7087        NA 1dc6b133-355f-451e-856f-d02839681578
#> 67             16881       2425        NA 1686f2b7-90e8-4d0a-89f8-415310ae2bd8
#> 68             20729       5866        NA db3a0416-6758-485d-89e1-806af99e0991
#> 69             18927       4081        NA 5ce20f3e-0f02-4f53-a2ef-5b076361f2b1
#> 70             22029       6808        NA 476d6de7-0d10-4f9c-96c9-2bd289052dce
#> 71             13913       1088        NA d96246d7-aa2c-4d05-9c58-8d6bc5e20cdf
#> 72             21140       6303        NA c0221755-d6a6-4f55-9ed3-672a9625ee6c
#> 73             18416       3629        NA 87f9b9a9-5362-4947-8fc4-3b718b00566a
#> 74             12897        842        NA cb332cbe-4490-48c6-9a21-046475206e07
#> 75             16785       2329        NA 90d9c6b2-3970-45e1-a558-b68a977a8995
#> 76             19176       4323        NA 7574eb56-a34a-419e-9682-c4788cfe2019
#> 77             21208       6308        NA 38b32cb2-42a0-44ce-87ae-bf16c338b3af
#> 78             18057       3296        NA a2451bf7-83dd-496c-b527-c14d8d518598
#> 79             21493       6493        NA f5153e47-fc18-4441-afc0-10c8a5ffec53
#> 80             16816       2360        NA 52f4a43a-64a9-4d69-a9e2-28bd60f68e49
#> 81             19659       4741        NA d479a777-b53b-4bbf-a8e4-0c1675ac48df
#> 82             19403       4526        NA a2368d42-9e6b-4268-883a-f23ef7ef5638
#> 83             20835       5962        NA 7e8f4076-25e1-41e5-8e71-f70397a3729d
#> 84             19314       4451        NA 1af02026-aef5-4dcb-baa2-9c9c91d22533
#> 85             15509       1684        NA 51952c7b-11c5-4229-baf9-08d4694cc2ad
#> 86             20820       5915        NA 04f9a4be-b236-4eed-9bc4-794f615ccd13
#> 87             14986       1426        NA 5c48ade7-4b9a-4757-9643-87a6e3839e2b
#> 88             21318       6373        NA 3ad7f1fa-2389-4cea-94a1-28c5479ca542
#> 89             22358       7370        NA 4dcd8f79-23db-4555-a4dc-2eebd409e508
#> 90             20194       5197        NA f7365f88-4cd0-42e9-9e4e-7bade08e9e5b
#> 91              5571        223        NA b6a61b38-5cfa-46eb-b1c5-b0255d7ebaf5
#> 92             19815       4950        NA ebcd87ce-218c-4144-810b-921c2f59d6e8
#> 93             20081       5154        NA 18ccb826-5584-4f6a-8434-cf9a3b927b0f
#> 94              8485        359        NA 7cfc5f12-e344-4a41-8f54-52a5c2bbd52d
#> 95             21475       6455        NA 7579c408-f3d3-43a6-a05a-2aec8291a618
#> 96             16173       1934        NA ca2ced2e-dc69-403b-8675-b92b7a0b3a75
#> 97             22191       7189        NA 2899f9bf-018a-4c91-8fe8-c42a5b6c12c4
#> 98             16107       1887        NA 05b308c7-13f6-4ea7-baed-4314896663cb
#> 99             18467       3667        NA 90434aff-bd29-44be-8e76-056e412a9624
#> 100            22075       6836        NA 1eae2610-be1d-4f53-82a2-28cf4a2db352
#> 101            19868       5044        NA 83d45661-2687-4ca9-ac45-91beac7b7082
#> 102            22190       7188        NA 74761bca-f09c-4a06-8dd4-5f3cf2a2b897
#> 103            20938       6140        NA fafdc4a3-ddbd-48b4-b10e-cd8a0189dae1
#> 104            16520       2167        NA 4ba33131-8214-45bf-9ce1-5ac08f1b68c5
#> 105            14983       1423        NA 829307ad-fb1d-4c7b-b073-3098be9464e7
#> 106            22153       7151        NA 25396df1-3597-468c-b1d7-ce40edb0f7f2
#> 107            21933       7058        NA c588e277-fc9e-4187-9358-2b9e1a2b0cd9
#> 108            17942       3181        NA cc9c2006-e72b-4073-afcc-69c187cb28b7
#> 109            15203       1561        NA c639a18a-ee1a-46ed-8707-580711fa33db
#> 110            16764       2308        NA 6bc85af5-fc58-4656-82da-d02780a0f6f6
#> 111            20233       5505        NA e47c71c1-2e10-42d0-b5f8-5651909a0ff4
#> 112            13029        875        NA 750c6332-6848-4303-9916-a6ed49833a56
#> 113            19899       5042        NA 6524f633-b8dd-439d-82df-cd4f9f07ad29
#> 114            20942       6174        NA f413306f-0134-467d-82d0-df73f5f7bbe5
#> 115            17059       2592        NA e1fe1900-fae3-414e-8530-55eece80471f
#> 116            21009       6116        NA c41a772c-8458-4f5d-b7b5-8c2a23406fa3
#> 117            16914       2457        NA be07b323-a23c-4589-9fe0-29ae6a537de9
#> 118            21884       6838        NA 73afc75b-68f0-4cb0-823d-5bfe33969766
#> 119            16378       2073        NA 955093e0-39aa-48b4-b34d-259b369e6535
#> 120            13462        989        NA 53b0a001-2efe-4009-8ff1-572b687d4397
#> 121            18043       3282        NA e4250936-5b20-4f18-80cd-7a0b8fa7964a
#> 122            21951       6881        NA c498bd15-f54b-4371-ab38-549b1c6d9201
#> 123            20857       5895        NA e02c98ff-b5d8-4647-a4ed-bba595ae9e5a
#> 124            19565       4666        NA a8c79523-3d0e-48dd-b4c6-e3d8afd24a13
#> 125            21105       6208        NA 67da0db1-ed58-435d-b8bf-f7ffa02d8a24
#> 126            15450       1666        NA 0555927e-18ad-40f9-b2d6-f63d533d91aa
#> 127            21989       7012        NA 86d7dd69-9957-4853-b069-5ad7e35edc64
#> 128            17983       3222        NA a2a587d3-2971-41f5-a5d4-828d9cf1494e
#> 129            19125       4279        NA c69c8d25-f81b-4240-a361-6bb328ad9474
#> 130            18921       4075        NA f7d0d3ea-6de1-4adc-b431-166c6dde9cc9
#> 131            21457       6531        NA e0924e2e-74c2-4ae7-8d2a-4579871c6c29
#> 132            16991       2531        NA 530f22b9-0f36-4ad1-9ead-ea44292b83a8
#> 133            20007       5332        NA 0a415a08-ea30-40b2-aac9-42689e3e996a
#> 134            14567       1238        NA 8bbd5520-52e9-4187-889f-bd4552622869
#> 135            22144       7141        NA aecf0860-27aa-49ac-b133-69fe2c4c63e1
#> 136              732         24        NA 7e648a0b-fdc8-4661-a587-5826f2cac11b
#> 137            20089       5142        NA bd684ac3-89d5-4b6b-84df-2a4a9b04cae1
#> 138             4633        178        NA 1f09583f-dcc1-43e8-a7fc-f063d2c96508
#> 139            21549       6585        NA fc793c8d-b29d-46f8-8f89-8e2964ff4480
#> 140            16771       2315        NA 14263792-d1d3-4b0c-85f7-2a85b4aed6f1
#> 141            19924       5004        NA d033bdd4-2a32-4b08-a9a7-8365933816c3
#> 142            19033       4187        NA 26873576-2bbd-4622-bc3e-ec847577855b
#> 143            20900       6002        NA c44534f8-a567-40e7-b51e-1a72c49cb24e
#> 144            19034       4188        NA f9c86838-11e5-4582-a03e-c15e02b2013c
#> 145            17988       3227        NA 486c2ff3-5e42-4bad-9849-2084ad0af423
#> 146            15087       1489        NA f4ebaa64-aebe-4a32-b11e-f4f47f511770
#> 147            20093       5146        NA a6b00103-9678-41e4-b310-fef78c2a6e43
#> 148            16531       2172        NA ee9c975e-68f9-49cc-886d-f1d00286305d
#> 149            15063       1469        NA 543a98a6-42fb-4fbc-9899-f0ee59b1a114
#> 150            20870       5874        NA 37095914-53be-4d16-b5c7-2194dbb6d6c2
#> 151            13370        963        NA 5b712aed-201c-43dd-b978-b7b6ef91178e
#> 152            19843       4973        NA 1b125fc4-5dd9-4eb9-a42f-048e61ca42b7
#> 153            20662       5754        NA 97e65d1d-c738-4812-840e-030f0242bc29
#> 154            19802       4981        NA 926e2674-52d6-4cec-9991-46ee85cc8cfd
#> 155            21142       6271        NA d8281390-f081-41e5-b55e-75779536fe94
#> 156            21071       5970        NA 4484c7d1-025a-4f26-8e9b-48503afb0c68
#> 157            22176       7174        NA 9c2185ab-5dcb-485e-950b-e035d9edb692
#> 158            13291        947        NA 0b3217b9-ba37-4222-95cb-a7a222441e8b
#> 159            22177       7175        NA 40f11577-5646-4da3-99ba-ea8b038b17a3
#> 160            20224       5241        NA d90a2ae8-cbd6-40cd-a545-3501c93c0822
#> 161            20006       5110        NA 4501e6f4-4683-4357-b241-8b4a0b6aae81
#> 162            17914       3155        NA 2e0badcd-b78c-40ee-a83b-a1bbb36bc545
#> 163            20487       5695        NA 5ec01774-4a79-40aa-be4a-e33c71bd5bf4
#> 164            20227       5244        NA 35b82de6-eded-4f37-9bcd-33eb8ed001bd
#> 165            17491       2986        NA 7d58beec-bd16-475d-bf08-9137b86aef17
#> 166            21206       6306        NA d027528c-6fb1-41bb-9ede-4f45ec731fdd
#> 167            18205       3441        NA 7e7b5ec8-dcf4-409f-a0eb-99246b7493c5
#> 168            22010       6930        NA a3f67680-66f1-4efc-b21b-badd19467cc9
#> 169            16779       2323        NA 402f063b-4703-4729-b6ea-3a9d45a314c7
#> 170            16128       1902        NA f8f7a845-ae30-404c-8800-66bd643b6d2d
#> 171            18027       3266        NA 1880777d-9908-4a32-a492-264b4fec967d
#> 172            12829        825        NA c3d6c803-1c91-4bd9-956c-7f6c292558c5
#> 173            22202       7200        NA e8b1322a-6162-4535-b6af-4ca60ce8b09c
#> 174            20867       6023        NA 0b93712a-3c39-4d73-aca5-ca04ed05bd59
#> 175            18917       4071        NA bf9749c6-6609-456e-a3eb-b8cab21dd76a
#> 176            19927       5301        NA 791b7f98-c5ff-4145-ab8c-c67e3ca801c4
#> 177            19967       5078        NA 45c926b6-0f2f-4d29-b806-d21e4ea89ba2
#> 178            21174       6243        NA ac84c815-7ed4-49b2-b84a-08cf6c016eb5
#> 179            22098       6986        NA f5fc76fa-4381-4026-b8c0-384cb4dff19b
#> 180            21414       6634        NA ea8d0a80-2de3-4715-bcce-710f625ccb6a
#> 181            18160       3399        NA 708e045b-17fd-4f81-87e3-8686b165a278
#> 182            19960       5071        NA 83128a20-392f-4ca7-878e-689c6e6dfbfc
#> 183            17978       3217        NA 852b00dd-fd1c-4edb-809d-912a6472cd07
#> 184            21908       7019        NA a5a7243e-d842-400d-89ff-5d451338426f
#> 185            17999       3238        NA 41524c86-8ab6-42e9-871b-a00e29cd2705
#> 186            14059       1128        NA 30f98123-214c-4f32-b29c-ac6f3ff56f39
#> 187            21900       6818        NA 904f702b-e8b1-4fef-a4a0-278d18cc15e3
#> 188            22196       7194        NA 1c1c956f-0f4c-4b22-98f2-6bbbd5e4a504
#> 189            21358       6602        NA 457123e2-aeb5-41c7-b2a8-ddc42c04f977
#> 190            21886       7122        NA 6f695364-f31f-420d-8baa-434539e2b12d
#> 191             3341        125        NA 0333b8f0-3aab-45aa-a684-6d402a309413
#> 192            21487       6488        NA cc4d595a-3fd3-49ed-a332-8d9bab9159fd
#> 193            14891       1369        NA 97c96dce-9b33-4d0e-ba01-5eb629192d19
#> 194            19209       4353        NA cb68b95f-ef6f-4e5e-b861-8bfe6cfeacf5
#> 195            13085        893        NA 80cd039e-08e5-48ef-935d-ac46db36460d
#> 196            20914       5910        NA cfcac921-0ac6-457c-9f37-82324327f3e3
#> 197            21170       6486        NA 98074bf2-0c4d-48d4-b3c9-52f707a22280
#> 198            21990       6934        NA ab3ce81f-6625-45d3-aa6d-79f95ae4f503
#> 199            18028       3267        NA c9e9ca73-6605-42cb-ab44-2230dcea187a
#> 200            15077       1480        NA a3855ea8-e71c-4028-86fb-5a1abbd94488
#> 201            22027       7112        NA b4908ca3-f723-4d41-ab98-58acf0aa4a94
#> 202            20008       5298        NA 20c1c6e8-509a-46a6-8edf-d402d56c20b2
#> 203            14688       1264        NA 20a0bad2-d530-4ff4-a2df-5c0a21a1f5db
#> 204            21482       6432        NA 209307c5-8e39-44a6-8879-5e033e017eb4
#> 205            22199       7197        NA 0782b3a2-9693-40f6-aff2-a21bc8fa4c5d
#> 206            12822        823        NA 4b62138a-e222-408c-8595-936d1a194eca
#> 207            21982       6807        NA bc4c0c7d-a6f4-4cff-95ec-a4d0523c2232
#> 208            21515       6544        NA 171e1cf6-8bcc-46f1-8afe-47756967611c
#> 209            20755       5879        NA 4706e72c-c7ef-4fa0-b16b-e864a1085dd7
#> 210            18930       4084        NA b36539fa-de45-4cfd-90be-49d14149e64e
#> 211            21996       6867        NA 32575119-3aca-47cb-aaaf-162c48b7d372
#> 212            20099       5141        NA a84d5d5d-3fa3-483e-b737-6587971decc5
#> 213            13892       1078        NA 0cc99dff-5895-48ed-9f30-e70e916bb52a
#> 214            18064       3303        NA 99d79bb9-45aa-4c64-99aa-a92ba2c278af
#> 215            20245       5753        NA 07247409-1cf8-4e67-a05b-15de83ca1bf9
#> 216            21421       6594        NA 32ad0298-bbc6-4b66-bd4d-e87a169ad27a
#> 217            11008        525        NA 513df09d-7d3a-44a8-873c-34f2fe46326b
#> 218            14906       1383        NA 7963d8ea-c627-47cb-b46f-a917abb9e9d7
#> 219            16315       2031        NA 7e2c36bd-bae6-42e8-84fc-147106ed7270
#> 220            19995       5381        NA 2eb0706c-3017-4895-a207-71d6fe9e1549
#> 221              430         13        NA 544e4159-3da3-47ad-866c-bf48d7634f25
#> 222            21810       7083        NA 7c226f73-a59f-4db6-ad98-2766d05d4d5a
#> 223            19781       4881        NA e06a9c07-453a-4bb0-a7e9-2c3a64166dad
#> 224            14257       1169        NA 8dfb370d-460c-4bfc-9d62-888687248783
#> 225            20874       5974        NA d4d135fd-b710-4c12-9082-9d6e544b3f8d
#> 226            13337        956        NA f336567d-44a9-4245-8452-1dd485fd70fb
#> 227            22126       7098        NA 9e31f935-1e60-437d-9859-e1f2bb936aa5
#> 228            20239       5248        NA 3ffc3993-461e-4477-9def-c9633b7feac1
#> 229            21674       6806        NA a57b9914-4315-4295-98b4-9b348c52d6a1
#> 230            20802       5995        NA 528e71ec-8fb3-4928-ace5-fc5ffbf26eb3
#> 231            16825       2369        NA 13f716fb-7249-4b0a-9858-8af8cb83f78b
#> 232            14767       1298        NA 04e8ea8f-8424-4196-a0fd-7dff3740c734
#> 233            19070       4224        NA 1105ae60-a4b6-4246-a77e-0849179b07b2
#> 234            20643       5715        NA 47999e1e-b526-4ab5-bd4f-5f5cac53a62a
#> 235            15116       1510        NA cf881df8-d5a0-4736-be01-eb72767366b0
#> 236             8459        358        NA 17a056be-39c0-4913-bacf-1663f3ac4a56
#> 237            17921       3162        NA a792cbbf-d96a-48fc-a187-6f7f5b7dd214
#> 238            19814       4948        NA 9d699fbc-ce11-4e42-a9b1-c94ecee8f613
#> 239            16984       2524        NA 81066eaf-4e76-4870-99e3-407b753cdf8c
#> 240            21780       7015        NA a8614822-2740-4b1f-a01e-b7960a4f07f6
#> 241            19803       5012        NA 0618f387-9b72-4270-8b8f-dec4cccc9e4a
#> 242            22113       7065        NA 71c657d6-a2d9-48f3-b6db-dd4372e910f4
#> 243            17223       2755        NA b3d7169b-9cf6-4fea-815a-26e4fb0ec16a
#> 244            16931       2474        NA 9480dd9f-151f-4e6d-b5a3-35f07bda4cac
#> 245            16395       2082        NA c9557ff2-899f-41e3-8a0e-35ca874db9b2
#> 246            21037       5965        NA d1ed6f8c-1611-4695-8b48-5adce0de50dd
#> 247            20979       6165        NA 8e43eb21-92e4-4720-8766-c9204259c063
#> 248            11270        574        NA b84fb536-9705-45a9-b652-92a33578ac48
#> 249            18030       3269        NA 0b504d67-639b-4ba8-979a-498a3086257b
#> 250            21723       6957        NA c65488d4-251e-40fc-9f32-7019bbdaf75e
#> 251            17269       2801        NA e0abf267-f265-4682-9bb7-72bbcefda451
#> 252            21045       5848        NA feeee40a-dd63-41a7-89cd-6c95b5456833
#> 253            19980       5101        NA 3da67e95-bd15-409f-b5de-b2feb54efda7
#> 254            22193       7191        NA 34cc08f0-53ee-4fc8-95a3-971e6620884c
#> 255            16305       2023        NA 35823109-daf1-4825-92b8-564271398ecb
#> 256            21722       6939        NA 630e6b5d-0486-4bc3-a919-1f02687c1291
#> 257            21721       6847        NA d93dbc83-e604-4823-a24e-d162cbd8d4d9
#> 258            16141       1911        NA 8482bc94-0eb0-4e92-8f99-ced135f3cd5d
#> 259            16810       2354        NA 49c9f374-118a-4207-8030-dcdaf938dac5
#> 260            21027       6000        NA 08553010-dfb8-4ca8-86a0-8159355f8705
#> 261            15424       1658        NA 6a8a9040-0b42-40c0-a827-94e4150add24
#> 262            18918       4072        NA 13de701c-c77c-4eb5-b54c-8881ca5e0871
#> 263            14340       1182        NA 2bdf19ad-a957-4f3c-bb2f-2bb72b0b3595
#> 264            18546       3735        NA 7e5aaa20-df98-403f-92df-c3cc2ca9907d
#> 265            18573       3761        NA 8cfce145-c6aa-40e0-b759-cad33237144a
#> 266            22060       6969        NA 089763ae-208d-4ad9-bb30-c97c0fcfdcd1
#> 267            21216       6314        NA d5dee97b-aa96-4fa6-868f-b6dc1f66245c
#> 268            16620       2228        NA ab7df007-37bf-407b-b77d-0e719c80f065
#> 269            20102       5153        NA 3cd88d26-6c80-47a1-a044-9164fa96459a
#> 270            19963       5098        NA 82100457-f4ee-4f24-8ca2-584bfdc85749
#> 271            19928       5341        NA 3443dde2-23bc-4dba-b499-069d501a59cf
#> 272            20834       5930        NA c128dad7-899d-4bdf-af9b-9c205dbd4666
#> 273            15136       1525        NA e030ef2b-1dcc-4c66-b8de-0016ca0d52d2
#> 274            20839       6051        NA 0e72812f-db64-4eb8-a7e4-41347067b375
#> 275            11132        550        NA f40e0707-1bf5-44d4-b447-7c03255aa423
#> 276            16420       2099        NA 5d98bad5-1730-4095-825d-3ff8d10d1116
#> 277            21881       6802        NA 3fa3a270-f8b2-4d53-a265-84bc928af5c5
#> 278            20253       5623        NA ac7b90e4-0f47-4f77-b521-7dc92043a9f3
#> 279            13181        922        NA ea2fda83-2817-4884-9e85-973263a4e069
#> 280            19214       4357        NA 0043c962-e726-4ed2-8aa3-b0eb5cdc5567
#> 281            15188       1548        NA 2d19098b-f154-4b28-976d-79182af014df
#> 282            18065       3304        NA c187d2b3-5d96-4035-a166-db6689b463bf
#> 283            19900       5049        NA 840b2183-02bc-4a2a-b415-c62ceecca1b2
#> 284            18598       3785        NA 8b1be2ac-e483-4f39-9bf9-a81be33ac92e
#> 285            21561       6587        NA f88cf8ff-c5be-4e41-bbe3-a8657935bf3a
#> 286            17944       3183        NA 73e84e89-4bd3-480e-b862-68502c8c295a
#> 287            18237       3473        NA f125395e-820f-40d7-9775-ac101292719d
#> 288            20898       5841        NA adabdc56-278f-48b9-a003-1329b7f2f663
#> 289            16889       2433        NA 392ccaf6-6d81-453f-85e3-7702ac081db3
#> 290            14896       1374        NA 1bdb2a2a-62bc-4043-8c80-f9b501d2003d
#> 291            20252       5678        NA a4d45211-eb06-4c63-9487-ba4ad326893d
#> 292            22108       7042        NA bfccbff4-bc01-41ed-aa11-be976160504c
#> 293            20717       5823        NA cefd0600-93f2-4e0f-9624-81e3dc495c1d
#> 294            19836       4968        NA 88976fed-0ffd-40a8-98ea-0c6c55010000
#> 295            20010       5340        NA f72d4897-8dd9-48d4-9da9-90deb4550d4f
#> 296            21306       6348        NA a3d59d11-8d6a-4cfa-9c5d-3387d20de7f9
#> 297            17951       3190        NA 03af62dd-c843-4790-b2dd-bd5b5897ed94
#> 298            21361       6398        NA a1d54aed-e9e7-4a77-95c5-5d62be8fe75c
#> 299            21218       6315        NA 1881d1a7-218b-4690-9065-497946d1ec1e
#> 300            15186       1547        NA 9342eba6-e307-4c55-a0f7-993518dd4415
#> 301            18162       3401        NA b217c699-2eb4-4c60-9d7f-2df8e4232009
#> 302            15855       1774        NA a57a96ca-7aa8-4e0f-9ba8-437690fe50dc
#> 303            19037       4191        NA 825fe252-36b9-48d9-a845-29114c5aae8a
#> 304            18355       3576        NA 63ed7895-38bf-44ff-9b8a-8d5b0b5bd1eb
#> 305            20512       5721        NA 1073ac8d-d12f-4ad0-845d-5351503931bd
#> 306            14855       1338        NA da7cb0cc-543e-47d5-b29a-2ba2b341bd14
#> 307            21828       6822        NA 12ce10f6-7f95-42db-8ed3-36b14933484f
#> 308            18907       4061        NA b45cd0e5-42b3-4847-aeec-a3afd07a0160
#> 309            19801       4984        NA 3069db07-aa43-4503-ab11-2ae5c0002721
#> 310            21784       6845        NA d8fef424-aa41-4c26-9bce-1265b53cd5e2
#> 311            16797       2341        NA d28afbc1-16c0-4012-b24a-1bd99817e8a9
#> 312            16524       2168        NA 2e50c78f-fa3b-48cf-8531-6eeddc93d88d
#> 313            13063        886        NA adadafa1-dc37-486d-8538-7db1e1b5f71e
#> 314            21097       6196        NA a511be63-5fc1-4e67-b798-fc801e3c166d
#> 315            22205       7203        NA aae9da80-c88f-4de3-b088-42553cf351ce
#> 316            20941       6130        NA a961b0d4-5d7c-438e-90f0-2e1fa09f6c89
#> 317            14860       1343        NA 95fab6fa-3ee1-47d0-93ad-c7ff41744be7
#> 318            17147       2679        NA 461b6e57-a2b0-4648-ab1f-b3ca4b111fe3
#> 319            22211       7208        NA 9c84646c-75d9-41f3-9cad-f3f002ca82a5
#> 320            21992       6852        NA 980d9a73-9dbb-4456-9256-d4021c013acf
#> 321            20760       5856        NA 74a588d5-22b6-42da-8d59-c79d4f7634d2
#> 322            18948       4102        NA 522a97f7-8cf7-4c50-afe9-1beb6ffadcb2
#> 323            16863       2407        NA b167835a-3f62-4755-9acd-319c5a3903e3
#> 324            19605       4701        NA 62c07124-0252-4553-99cc-9d0f1d647742
#> 325            14705       1267        NA d723ebff-0e9d-42f8-93d2-fe0c02252de8
#> 326            20850       5906        NA 5fb525c5-4e70-4ede-8c49-94ad0cf66b7d
#> 327            16846       2390        NA 36f54823-9d51-4180-9c91-d10281deb4bf
#> 328            21409       6535        NA 34ecc6f0-1ee7-4d66-b8e6-e66307e5c835
#> 329            22206       7204        NA 4475bb8a-b5a6-4527-bfc7-8e7e03900984
#> 330            12777        812        NA cf23126f-055b-4617-819b-bb4bcb84541a
#> 331            20957       6137        NA ec63ee49-3a03-44ca-a083-3916f0bccd76
#> 332            18666       3846        NA 55482edf-8604-4cf6-9a5c-d1124e22ac83
#> 333            19043       4197        NA 6130be96-edf3-4361-b666-860c4ec46e7d
#> 334            17289       2821        NA aa759477-6206-4984-ab9c-eb213abfd020
#> 335            16906       2449        NA a1c40664-b265-4083-aad2-54b4c734f2c5
#> 336            16640       2238        NA 9b13d2bc-b22c-4f91-8eeb-309f43422d6e
#> 337            19431       4551        NA 47520723-6d02-4c3b-b786-a7dfcea15efc
#> 338            15196       1555        NA 4734f8dc-2ca4-4437-88f2-c8b8974abefc
#> 339            14141       1144        NA 7092bb09-a161-4ab9-8d19-fdcf1a91bb3d
#> 340            11565        627        NA 9691f874-be36-4529-a7eb-dde22ee4a848
#> 341            21735       6943        NA dc397432-7157-4ce4-976d-b9662cc6f551
#> 342            21760       6920        NA 1d1c217b-6407-40d7-aebb-ba95fa05d127
#> 343            16281       2006        NA b35211e2-a35f-41e1-b32b-3b31b70330b7
#> 344            16021       1826        NA 1b1e5bef-13e9-4814-b7ef-7970cbf103b8
#> 345            22447       7472        NA 5cc69b4f-6ac4-4854-b3ab-5f669e0d8239
#> 346            19870       5051        NA 9dc1308a-5cf2-45c1-b5ad-fc64fff3e94f
#> 347            18982       4136        NA ff89ab1d-4c9c-4e8b-943d-6a9305c5793e
#> 348            14414       1204        NA e4538897-a749-41a8-8220-332e8229ac41
#> 349            22055       6856        NA 0e4e082e-6dc7-41c4-baa1-2c1367f8f9f9
#> 350            19038       4192        NA fde0f790-29a9-4212-a357-17657055c1db
#> 351            22088       7137        NA 6c162e60-0d39-46b4-bd8d-d2f3c6d6c7e5
#> 352            19992       5084        NA f2f71ec1-cc13-4215-aa5d-1948c42c6b28
#> 353            17950       3189        NA 72a42703-19b7-417c-87ce-344fd792f5ca
#> 354            22133       7119        NA 0d226e62-3a43-4a9f-a985-05214182146f
#> 355            22228       7226        NA 87e59fe7-8744-4318-a41e-53a18d1f9647
#> 356            20173       5178        NA 88f31a44-caae-4e5b-a786-8a229374a19d
#> 357            16552       2184        NA 4ca2f25d-7a0c-42e2-9b35-c9b9a025990b
#> 358            20962       6184        NA 3d988522-2246-4517-8537-c1bfa7989f79
#> 359            21921       7016        NA 5f623fbc-415e-4035-b423-7850cf1153b4
#> 360            21415       6518        NA 6dffc17c-86ca-4ffb-8ef2-12b4f832ce3e
#> 361            19929       5342        NA 8a60686b-fdf6-4293-846e-92c1b1d586b9
#> 362            20488       5495        NA 9fe70732-0c55-42ff-a79c-9d234fbc995c
#> 363            20877       5986        NA 6c1cd007-fea3-47bb-a8b1-4e4c040a2d94
#> 364            18143       3382        NA 6ef5045f-9215-4354-a1af-3f86e4c4a03d
#> 365            21896       6812        NA d96afcfe-32fb-4a59-b75c-94a6184d3136
#> 366            21052       5862        NA dbf199a9-542e-4279-8764-3341b9f80910
#> 367            20448       5402        NA e8a774bd-079d-48ac-aaa6-01c8fcb46e4a
#> 368            17264       2796        NA 7d7aae3c-c186-4ded-bbaa-df05f697ef29
#> 369            18575       3763        NA b3beb95a-c1e7-4d03-b61a-097199528816
#> 370            16226       1965        NA 5165ce25-382b-4809-83b7-8c66d93c2aef
#> 371            22085       6784        NA 9c8292c7-b406-4a31-a781-7c72aac6b053
#> 372            22302       7310        NA 4f115bb3-1468-4bfb-a239-e55e6dc7ce3f
#> 373            20541       5613        NA dcd1b7b0-5768-4b66-b760-30dbcfd04b93
#> 374            15189       1549        NA 123f0733-0afb-4291-8e57-9970e229309b
#> 375            22135       7124        NA 47dedc0e-a2fd-415c-8619-5a46867d83e2
#> 376            19072       4226        NA 686cab35-6da0-4e10-ba65-0d1f97e0bc8b
#> 377            21268       6572        NA b84b415e-a7a5-4d3c-8128-9e58f002578c
#> 378            16842       2386        NA 1a7ff6d7-85c8-4ef1-8db7-b629b451e368
#> 379            22223       7221        NA d4acfff4-7bee-49f7-abc2-3847a8b85dce
#> 380            21057       5964        NA 06f3a0fc-2a07-4ecc-b5c3-873b2f615809
#> 381            17743       3038        NA e98ed960-2119-4811-b863-d086ef4e1ddf
#> 382            16284       2009        NA 305c4a34-6428-418e-adf6-09f60e83c674
#> 383            21519       6528        NA ef4998e0-c9ef-4afe-88ab-d09b48975a08
#> 384            21986       7059        NA 00484794-97e8-443b-876f-d192722cd70c
#> 385            14338       1181        NA 40403404-4624-4bd0-b11d-ec8299c48a42
#> 386            14225       1160        NA 70eae82c-30ea-491f-b71c-aa11f47af476
#> 387            14037       1120        NA 05640572-1b4d-40d5-b584-d79bdd7d5c5f
#> 388            16786       2330        NA 3bf0711c-793a-47e7-bcbd-a0ddf350fef4
#> 389            16558       2190        NA 1db9d170-d0cf-4b2c-a160-fe828a7339eb
#> 390            19964       5099        NA 829c836e-8040-48ca-aa20-5ad24f0ff37f
#> 391            21980       7144        NA d6ce86bc-7c3c-42c5-82eb-c8bc51e7e94d
#> 392            22227       7225        NA ff73bcec-6f22-4a26-a179-56f7556dc5a2
#> 393            21916       7485        NA ee29b5be-a126-4f1a-bb58-c051d7ba9c5e
#> 394             9162        439        NA e2ee3901-8de4-4585-a6ca-b7d77d271d9e
#> 395            17286       2818        NA 5f3cc875-e802-46b2-81ad-3ffb7a3a1662
#> 396            22093       6936        NA 9a76c690-1946-4860-9564-a0b7b9bbaf0a
#> 397            16497       2152        NA d4cb52a9-f6b4-42ed-b40b-27bff5f1eea7
#> 398            19191       4335        NA 0666e6c6-42d9-40ab-83bd-7bbf81e9ac9c
#> 399            20779       5903        NA 7905e9be-2f66-4ff5-a6e9-dbe281bf4822
#> 400            22151       7149        NA 93a1f2fd-fd5e-4b06-8086-476028d83eed
#> 401            20103       5162        NA 2d16fcef-89b8-4a92-844f-a92c4e20b5c9
#> 402            20040       5123        NA b89c853a-6bd8-42ec-ae52-a11831923631
#> 403            21775       7101        NA ee96c74a-7a51-478a-99f9-97ddaaac1e34
#> 404            18877       4034        NA f96db0af-5e25-42d1-a07a-49b4e065b364
#> 405            16887       2431        NA e311a7a2-eddb-439c-86b4-b1f1984186bc
#> 406            22226       7224        NA 3b1bb0da-607a-4502-8855-8ab5095334da
#> 407            18040       3279        NA 5f3a60b9-64ac-41f0-877b-cfd2cdfe23c9
#> 408            20065       5423        NA de3c68c3-9c11-4c0c-82ef-bc0d536820c2
#> 409            20858       5868        NA d0ca076f-a25d-436b-837e-07dde16be635
#> 410            18950       4104        NA cbe71aae-2475-487f-a78d-c1d7f021c097
#> 411            11604        641        NA 38293bdb-87d5-4219-be46-44fea6741483
#> 412            21407       6424        NA 943a818d-074a-4243-9d54-f91ada96923b
#> 413            19910       4995        NA ed8a8fd2-df67-45e7-a34f-984afb82f6ea
#> 414            19542       4647        NA 1d55ba37-c09e-4945-b7ae-8d84e2357283
#> 415            21865       6970        NA a41b8454-0326-4c56-87a2-f2aac3814961
#> 416            21732       7216        NA 689de342-1d99-4a4d-976d-f6573ef3a8c2
#> 417            17762       3048        NA 7c7b5515-7786-4e24-9ce0-34e6a8bd5727
#> 418            18985       4139        NA 91aac0f7-60ed-4333-8aee-15bd56764464
#> 419            19060       4214        NA c58e6a2c-2206-4d42-b368-fe6f0ecb1262
#> 420            21963       7080        NA 488cf673-fb92-4701-abd0-4641987642ee
#> 421            19779       4878        NA 3885b40b-c31b-4cd6-a0fd-3d24bede2771
#> 422            18039       3278        NA 4f724338-aa8c-436d-90b2-45299572c53e
#> 423            21106       6209        NA 634dcf96-92ca-474a-8a09-e26a12a7bafa
#> 424            18187       3423        NA e81fb788-1478-4936-ae12-f6ed7ec23476
#> 425            18928       4082        NA 66a21b6d-97e5-4732-8bb0-062145d6bbc6
#> 426            21548       6628        NA 85325fdc-da47-4992-af60-a20d0b1ec980
#> 427            19844       4983        NA d8202e6d-d03b-4cd1-a793-ff8fd39d9755
#> 428            20071       5134        NA 430446f6-a74c-496b-8f49-4464e7d8149d
#> 429            18343       3568        NA fa7983c1-408c-4aa5-9723-efbf039db351
#> 430            17987       3226        NA 95bccf33-b911-4bfa-96b4-a15b9a160c68
#> 431            20891       6094        NA 20e8addc-8e4f-4c4e-937d-3788de9c1e6f
#> 432            12881        837        NA 639ff90f-285c-44a7-ba8d-6a47d0ecff71
#> 433            21122       6289        NA a7450b47-b784-490b-8edd-b5502f16366f
#> 434            18629       3813        NA 7ba5935c-0e54-4ad0-b90e-ff4af7d62b85
#> 435            21127       6285        NA c3ff85db-bad4-444c-9123-812c933c8227
#> 436            16432       2108        NA 054f4c09-6bc9-49c9-a466-80abd2a39e74
#> 437            22056       6839        NA 99b81b41-fb3b-4650-940b-9cb3770021ba
#> 438            17953       3192        NA f40995fc-bd95-41f1-b9ef-4ab938c3aafa
#> 439            19411       4532        NA 6311b3ee-d514-415a-941c-4bda88a6bb55
#> 440            20262       5634        NA 4ed347d1-170b-408e-b360-46a83557b56a
#> 441            22079       6928        NA e1072f9a-86f7-4d01-89a6-33fe0186f232
#> 442            18933       4087        NA 6bbffdec-af71-4378-b0cc-e1375643ef57
#> 443            13894       1079        NA d5efd828-7339-43a7-ad7e-6f936dbbabb2
#> 444            18045       3284        NA abb612d4-f5b9-4644-b9ed-f13fa0da7e98
#> 445            18084       3323        NA b6fa8c3c-c729-4178-8e9c-c7e784a872c1
#> 446            18102       3341        NA 43ccb78e-353d-4d0b-ac51-4103415a568c
#> 447            22161       7160        NA 306d7e5a-f0f6-4b30-8484-5d933361278e
#> 448            13393        967        NA 57bd3249-bae3-4e13-b4d6-f86dbc4978e7
#> 449            21428       6463        NA 2d133844-4e02-460b-819b-d8176407dedb
#> 450            16796       2340        NA fdfb980b-1493-4698-9b97-f445a8f495da
#> 451            18292       3526        NA 36248cd5-f747-4960-b66a-a5d4f481e098
#> 452            21028       5925        NA b8c4a63d-775b-47c6-9be3-ef321658c600
#> 453            16100       1881        NA 63cef4ac-6e22-497b-9f8c-fbccd0694d17
#> 454            14358       1186        NA e2d85e2a-3d88-42e7-95ca-8db79228135c
#> 455            22232       7231        NA f3adad78-ada5-4ded-bb47-cbf8518f7bba
#> 456            19855       4991        NA 70d87779-f25f-4dff-8c5d-82b818090c57
#> 457            22230       7229        NA 1a4b38f7-48f8-43b3-be9a-96671feb1fa6
#> 458            17954       3193        NA 23ce41df-3f29-4f67-9fb5-b9778ac931f8
#> 459            22143       7140        NA a5838673-7753-426c-a18e-5195fbfdcc37
#> 460            21024       6044        NA 0db05e51-1e24-4f1a-9008-2e610e260c5d
#> 461            15049       1467        NA d3cde6a6-f635-40d8-adc6-f1a7892f8683
#> 462            22142       7139        NA 1d40e4f7-2991-4aa0-aa0a-1e7df79aab07
#> 463            16301       2020        NA d96ff17c-841a-4768-8e08-3a4cfcb7f717
#> 464            20149       5189        NA 1c50997f-c56e-47f9-a750-33ab100ed28b
#> 465            19827       4960        NA 3291c582-9377-4bc2-8ee5-61d887873797
#> 466            21890       7120        NA 2814f1e7-dca6-4bd9-80a9-9af480d10546
#> 467            19931       5303        NA ea59d8de-e3df-4a7b-9778-7d6dc4892fc3
#> 468            14949       1405        NA 92503804-7aff-4f22-adca-421800786179
#> 469            17246       2778        NA ee209aa3-145f-4acb-85fd-e8a2420b4d2a
#> 470            14057       1127        NA 0a605e2f-4c81-453d-941b-4e9f143210f8
#> 471            20664       5757        NA abdf27dc-a54d-427c-a745-173f1c485292
#> 472            16323       2036        NA 33c74bf8-7621-48be-a769-e219703988d9
#> 473            18100       3339        NA bd6ca667-99e9-42ea-9be7-a680945eece9
#> 474            15079       1482        NA 82505f2b-7b63-48d1-a715-a197ae3a32c3
#> 475            15734       1745        NA ff4c90f1-60a7-40f4-ba21-c7abe6800000
#> 476            15194       1553        NA 60d48e85-931c-45dc-b62f-024503a2e09b
#> 477            19930       5302        NA 0a6c2bfc-19a4-47f9-ba60-74265af6e947
#> 478            16800       2344        NA 881eb214-c981-46c0-a0cf-34023e773754
#> 479            16154       1921        NA f6ff73b1-d607-4226-83ab-b523bdc0be4e
#> 480            16438       2113        NA ccb2f18f-1454-4ec4-a9ae-2d7f5c20f86f
#> 481            18811       3976        NA 7a1b8f1a-9024-4897-86b0-01c63e00305e
#> 482            13723       1029        NA c8232b55-6617-4dd9-a7cf-cf14cd9a29ab
#> 483            15293       1612        NA b13ba4c3-5761-40fb-aa6a-935f09c39a6b
#> 484            20106       5163        NA 02880089-ccba-44f0-9d6c-fe6f12d15e5b
#> 485            21848       7227        NA a21cba9e-32a9-494b-b2a1-d454b65872b6
#> 486            19003       4157        NA a8342d20-9901-49a6-bc45-79f192418188
#> 487            20882       5892        NA 1c9e1cd5-8cb1-4a15-a2c8-3a0c0fd5423c
#> 488            15261       1601        NA bbb63a36-8613-4675-8e5e-34200d245ff0
#> 489            19004       4158        NA f4c59ced-4d11-4314-a761-ec0883edd3c1
#> 490            11107        545        NA 6bc584ed-82c0-486f-962d-377be6ae8469
#> 491            18121       3360        NA 978eb5b8-9ae9-473e-a1ef-1ad2bd1b7ae5
#> 492            19429       4549        NA b4473469-2593-4c7f-8b41-729e1ddb08f6
#> 493            17980       3219        NA 01dd8219-f1df-4a6e-95b2-27317daca89f
#> 494            16436       2112        NA 40a38dc1-6355-4467-9064-07e2d063f558
#> 495            14483       1222        NA 86c5152c-c823-4127-97e6-2fedf532e8e8
#> 496            22231       7230        NA 096f3b4f-34cc-448f-9fb1-9a7f30a1ecdc
#> 497            21707       6762        NA dcdfc42f-2889-4c8a-8b65-b18de1a30e30
#> 498            18498       3695        NA 8d3ac8d8-e18f-4485-acc6-55c79adcc2a8
#> 499            21772       6826        NA 036feeb6-9a22-43c5-a8e3-7ac611d8ff49
#> 500            20812       6075        NA 48c56733-6644-42ee-9020-07bd2deba1ad
#> 501            11488        616        NA fd85786d-3900-4dc0-9b30-334ee30413ed
#> 502            15305       1619        NA 8506c15c-15cc-4d2c-aebf-270c605fe0ec
#> 503            12109        695        NA 3aef6950-1c19-4454-a3d0-0afe9634ea9f
#> 504            17218       2750        NA 9ae2584a-40c1-4b30-be34-a9567659eacd
#> 505            20296       5261        NA 9fd7fab6-1c26-418f-9696-e8dd0208d508
#> 506            20925       5873        NA 9c04ad60-9726-42d3-9836-7d95723f8eb6
#> 507            20011       5111        NA 8f249da2-2528-4f68-8587-4400c924aba4
#> 508            19582       4681        NA 3411b31b-9800-4f5b-a43f-4564c9530627
#> 509            19054       4208        NA dc8a06c8-538a-4408-8a2b-1d9bfafb8a3c
#> 510            21961       7090        NA bafe8df1-66b5-4200-8fb3-ff188c25a4e2
#> 511            13117        902        NA 5ed2cea8-e0c6-482c-9ee1-548c06612226
#> 512            21464       6465        NA 422f272f-ca71-4fd2-a37a-d1e323c2728b
#> 513            19864       5013        NA bfaedf99-7618-4925-b362-90415c22a3b6
#> 514            16263       1992        NA 0fd32417-8410-4a8f-8919-386c433bca43
#> 515            15150       1535        NA da85107c-365c-4d58-90ab-479d97d798b4
#> 516            16113       1893        NA 78abb68f-453d-4992-901a-a5b1121e680d
#> 517            17782       3057        NA e10e0c39-33e0-4ae9-9374-915dee1ceb7a
#> 518            19813       4947        NA 03cb0755-ecd8-4ef4-bf94-e9e1c1f9d203
#> 519            16772       2316        NA 338adc8a-173d-4b1b-a5de-92818bf96823
#> 520            20856       6034        NA 750877e5-ccdd-4072-9e1c-8d957e45b561
#> 521            18563       3751        NA 2cffbed2-3e4f-4051-b5b1-b6b2b7c484f6
#> 522            17985       3224        NA 9b14942e-0ddc-436c-a6be-5947a39589e5
#> 523            20066       5424        NA d5a270bd-6f41-4637-ae09-d5534f1a4d3e
#> 524            19968       5079        NA 12178d3d-49d3-4cb4-88b9-cc8f044bb684
#> 525            17945       3184        NA c967809a-7c88-447d-9d9f-6aebfc8370f7
#> 526            20157       5222        NA 57a21028-b3a1-494b-ade8-7e94c7108823
#> 527            18074       3313        NA 44d917f8-d9e4-4b12-a107-0330156a92dd
#> 528            22063       7017        NA 23ad64a6-6102-402d-b985-4c8bb273b5d3
#> 529            19076       4230        NA 0bf5f31d-e2fe-441f-845e-7573cc21b22d
#> 530            19873       5017        NA 89c84a59-18ad-4aeb-8879-d4ba7dd1491e
#> 531            18994       4148        NA e75ed538-1888-4864-bd1d-e703d1ce4b5b
#> 532            21584       6657        NA 594c3651-1a2f-453e-a39d-2c84a377f2b5
#> 533            19871       5015        NA 17d1f9ee-f65e-4c4d-bf73-a69b2fa17877
#> 534            21876       6864        NA 3f4fe254-f18f-4b56-83e0-c37cfc72c7f7
#> 535            21033       6043        NA 1a7d431e-f97b-4631-a067-438ed2debe24
#> 536            17136       2668        NA 8363a880-0f4d-44be-bad7-2815c7c3ea00
#> 537            14280       1174        NA 34de0b93-9cab-4987-915b-25ef8480cae7
#> 538            11021        528        NA 2beaf8a8-ccf1-4500-a941-33ffc8141d60
#> 539            14922       1392        NA 19269eae-f3f2-47ac-b755-843489f29f65
#> 540            20027       5327        NA e738f88d-6a49-4efd-b53e-d031bc8c5772
#> 541            17486       2982        NA 1374a32a-6215-4ba7-ba0f-a26d24535059
#> 542            22015       6987        NA 49379bb0-8f09-466b-86fa-62b4c4c73051
#> 543            18494       3692        NA 133ff990-0b7b-467d-a949-1e1720f96bc9
#> 544            20058       5309        NA 29f9a81f-f31f-4ace-80b2-cf5270c96611
#> 545            21222       6567        NA be44e57a-7623-4b1c-a6fd-7a30795bb8ac
#> 546            20844       5869        NA 3dec63e9-ad9d-4d1f-8ba2-102d9474df2c
#> 547            16212       1958        NA 746b7ba2-1ee3-4d42-8cf8-11bf4df581e1
#> 548            21114       6219        NA bd1f047a-978f-4643-b55f-f4d3b0719a4e
#> 549            13961       1099        NA c7d8781f-b9f6-4e0f-b0b6-29fce3985f3e
#> 550            21999       6860        NA d152b2d5-402d-47f4-a6d1-7870e5a32df5
#> 551            20915       5894        NA ac012bab-43f3-4e8c-9cf4-0fb20ffa55a2
#> 552            12815        821        NA 87745a22-9ce8-4a5a-8935-dcc102ce4b18
#> 553            21911       6891        NA cbe52cf7-a9fe-495c-bd77-3a22a7f7208f
#> 554            20060       5320        NA eb2a534f-2dd9-484c-b464-455311f1a9e3
#> 555            22449       7474        NA 75741cd3-8b9f-445f-b24e-47c8c51de618
#> 556            19074       4228        NA 3fec685f-b7bb-45a3-ad9c-e27c3fbc9951
#> 557            22003       6880        NA 05cb1d47-3517-4410-a61b-75adabbfb910
#> 558            12330        738        NA d7eec5c7-c401-485e-b0c8-fb0784c07b27
#> 559            21396       6632        NA 009c9b30-a6de-46b6-a3c0-3f51a4fc6997
#> 560            19228       4371        NA 1ad3e535-2b5c-48a8-82f0-c7a933d250f0
#> 561            18083       3322        NA 42bb4895-bdfb-40e2-8119-f5b06611bf1b
#> 562            20998       6157        NA 0ee41c7d-1afa-4ac7-ae6d-66e4da18052d
#> 563            16976       2517        NA efe64fc8-9987-4fe6-b7a4-e2ff363cf443
#> 564             8433        353        NA d14302ef-0224-4c92-961a-6d10452936ff
#> 565            21143       6269        NA ba1032c6-bcbd-430c-afae-40898b9e83bb
#> 566            21693       6770        NA 3023ac10-4e7f-425f-9fc5-2b8e6332c92e
#> 567            20759       5885        NA d935df27-5be4-4aab-b117-8ec8e81c2196
#> 568            18079       3318        NA cd571cfc-9b44-4b69-a801-431db9aaa85e
#> 569            18118       3357        NA a8c3bcd7-69d0-4c5e-a876-6b33857942bc
#> 570            20990       6144        NA 478fcd24-2617-41d5-a900-b272aa6ef515
#> 571            20906       6108        NA e2f3af7f-dd17-44f2-a000-d487a29f0f03
#> 572            18993       4147        NA e601812f-ce24-4e99-bee0-e33c1e9014e4
#> 573            18858       4018        NA 7797f36e-87e8-4282-b6d2-bdb1774fc3b3
#> 574            14916       1386        NA 24cf6148-f0af-4103-a215-e06956764953
#> 575            14925       1395        NA c9e9bbc5-2aeb-4f72-9b7c-1a688fb235fb
#> 576            17991       3230        NA 656b68e1-651d-4596-8f6d-c97b4e4d9536
#> 577            20116       5642        NA 7917b396-b7e0-4722-9a5a-7c608dd0a6ff
#> 578            20917       5956        NA 897df186-8ae8-4eaa-8a83-90952b47ab55
#> 579            20987       6122        NA 165b77bc-9a63-4b1b-9111-70994af6c864
#> 580            16985       2525        NA 449401ef-0251-4895-8f56-eaf5ef7f9cf8
#> 581            20831       6024        NA 95cd7ce9-e92a-40d9-997f-c7b16d0efd83
#> 582            21151       6558        NA b170b3f1-682d-411c-ac28-b9d2a60e75a7
#> 583            19219       4362        NA 53fd9a69-1b10-4fd6-90e7-ee84cca9e041
#> 584            19075       4229        NA ca6c7b35-6ae1-4ba7-ae98-1f26174e407d
#> 585            16917       2460        NA 19858900-5c8e-49a7-ab02-34ef625724ca
#> 586            20931       6001        NA 15a4f552-ecaf-45bd-9006-aa5dda93bee6
#> 587            21800       6894        NA b2d98b60-b4b3-4610-81d2-2154c723fdbb
#> 588            12845        830        NA c9701373-23f6-4058-9189-8d9c085f3c49
#> 589            20886       6069        NA 8f32cbe6-9c50-4bf7-9e68-057d718fb490
#> 590            20057       5130        NA 75a646ac-b2d2-42d9-91c7-3b00fdf71ef9
#> 591            22238       7237        NA c272aa3f-4ef7-468c-ad4d-a4eed44a6ab7
#> 592            21690       6801        NA 7963b029-5de4-4541-b00a-44eefe4349af
#> 593            18197       3433        NA 6bb4d6f8-c8fb-4ca7-a416-a7010526114d
#> 594            17986       3225        NA 76a5edec-5ff7-49fa-a8ec-5768a372279d
#> 595            18445       3652        NA 88856dfa-45ce-4b6e-bbf7-4f8413ac89ca
#> 596            21263       6598        NA ee79ad2e-353a-40cd-9344-c9d84f7e4b63
#> 597            18881       4038        NA 938b363a-6967-4cef-bcd2-bb358a9f6c98
#> 598            15140       1529        NA 671d2fd7-41bb-457a-8e93-904ee7d94eb1
#> 599            20908       6022        NA 7475baa8-7662-49be-9b41-526450f28bfc
#> 600            21948       6907        NA a21c5573-d9eb-4c4d-838a-12b63c513a1b
#> 601            18289       3523        NA bdebbb66-ceff-4cc9-b74f-00e14be21530
#> 602            20300       5448        NA d962a98d-cbba-47e0-ad20-dedc094a1822
#> 603            20985       6123        NA 54feeb01-a1d6-4313-b8b5-5663f698b5bd
#> 604            16370       2067        NA 94f04ef5-238a-4f38-b45a-de2e7f3b9f9e
#> 605            19061       4215        NA a5780ea2-376e-4187-8be1-7c7fd2d0a12f
#> 606            19830       4964        NA aefdc3d3-0851-4782-b298-f06f137d42c9
#> 607            22046       6876        NA 07dbf3ec-0d6b-42f1-a2e8-7dd437339417
#> 608            20203       5492        NA b76155e8-ea98-4dbc-b0b6-13cd1b0fc5db
#> 609            19893       5055        NA 3d405d21-bfdd-4495-afe3-9e96d1972ee2
#> 610            16777       2321        NA 12f4a38f-17b4-42b1-a1e6-9fd6ef08d150
#> 611            20217       5519        NA 0a63f97d-9cc2-44d0-b65a-ac2e78db73f9
#> 612            21918       6799        NA 1bbe7ce0-3707-4d4d-b8f6-7577008f1763
#> 613            19027       4181        NA 5af719d9-4a47-4a93-a522-a5060fd0df79
#> 614            12554        770        NA 39ee3bee-1177-49cd-a78b-7a790ffd0b84
#> 615            20923       5983        NA 32b601e7-4491-479a-895a-2f96add83e09
#> 616            19252       4393        NA 8b44e3b8-81ae-4f02-b598-965872d12816
#> 617            20780       5996        NA 20395574-a767-44be-8e79-e1b15eef0f11
#> 618            20821       5923        NA d0d2e26b-f5a7-4455-86b8-096508ac8eea
#> 619            21874       6854        NA 5f313f6e-4a5b-495b-8442-176c145f68c4
#> 620            21246       6339        NA 60c63a9a-f44c-4f12-b724-f65bcb8cce77
#> 621            18807       3973        NA a85a0ba9-674c-4f37-a944-474fc6cdf557
#> 622            22247       7247        NA bd4a07dd-aeae-4ae0-87e4-a8b65ad6870c
#> 623            14646       1259        NA 3be41614-5c70-4b0a-89c7-c7ae061d9223
#> 624            13355        961        NA 072ec285-1430-48d4-9342-5a1b9af527f3
#> 625            22059       6841        NA 445efcfc-1646-4823-89f7-8b6005266d13
#> 626            14894       1372        NA 81e211e1-547a-4475-bcf6-8c8ffde057f5
#> 627            19099       4253        NA eb904c68-f01b-4af3-9427-dd6a6c35511b
#> 628            19082       4236        NA 4e710e1a-2654-4e2f-9be0-5b9941025477
#> 629            18026       3265        NA 82fcb439-d5da-4f6b-a68c-17778fe19ce4
#> 630            18952       4106        NA 915f567f-ca74-426a-8ed0-123c45f67baa
#> 631            20581       5569        NA 85e3651c-cde0-48ed-a5ea-93477a1fe99b
#> 632            18093       3332        NA 2c35ed5f-7317-4776-8ee7-0438e0286508
#> 633            16125       1900        NA 0207678d-d682-4916-ba20-74a218d5b6b1
#> 634            21241       6569        NA 4501f87d-6436-4fa8-9f53-a8a475eb984c
#> 635            19962       5097        NA 2b6a749f-5e78-484f-8a87-92c6da991b19
#> 636            20034       5335        NA e1f9e986-6deb-4302-8478-eb64abe7aa24
#> 637            21946       7273        NA 955c65c6-5557-4525-a549-3fab45765cec
#> 638            20466       5386        NA bd49c4a4-1314-45e1-bff5-fc67ba41d1dd
#> 639            16236       1974        NA 4b99ead5-0f79-4899-84a7-075c08890698
#> 640            20994       6131        NA 0790a8d6-5316-4204-91a6-8508ca48973b
#> 641            13480        997        NA bcebf5f0-0224-4cc8-9a78-1aefd55bfc87
#> 642            19101       4255        NA c362b855-a313-4b46-ab26-a82082e1e8ee
#> 643            21979       7006        NA 894c783a-ddcd-4dba-b337-06d7db037a6e
#> 644            20029       5305        NA 36b878c8-7d53-4e90-8403-6f67fa911a2e
#> 645            21108       6211        NA 471db686-fa8e-484c-8525-0169b0a8f773
#> 646            18031       3270        NA 981cfb99-ff6f-452e-806c-116f56a484a5
#> 647            20338       5646        NA b220a72d-6870-418a-98af-ef50632be774
#> 648            16760       2305        NA 43a74ae6-ddb7-405e-8ccd-69d14da6c374
#> 649            17968       3207        NA 67760ee1-c969-488f-b449-b8c37e7e32bb
#> 650            21279       6452        NA bc63567a-81e7-44c9-a85f-8aa9532ab4fd
#> 651            19913       4996        NA d11ad65e-9d24-4157-9f5b-ef8495bcc791
#> 652            15694       1737        NA 1b3d350a-478b-4542-a430-d12cc96adc22
#> 653            19790       4892        NA 30198d30-9769-4e10-ac86-b4c91d940802
#> 654            19957       5076        NA 27156b0b-e82d-4d02-8a04-ca1891d77110
#> 655            20937       6161        NA ce185a29-d0ff-4519-9133-e01c691ead57
#> 656            19798       4988        NA 4bd60b33-9fbf-4156-ba2b-8264ac37b418
#> 657            21593       6694        NA f46e812f-14c6-4af8-9316-01a880adebc5
#> 658            18944       4098        NA 0ef0d0ca-2d2d-455b-ab63-a20c01303e37
#> 659            22251       7251        NA bea5ccd6-b05b-43f8-975f-396399349a42
#> 660            20059       5528        NA 7ca273b2-a4bc-44c4-a670-98d86942adb5
#> 661            22252       7252        NA 4a7d7bfc-9fe6-4869-a741-d5d17b177edc
#> 662            19904       5025        NA 9b96ef63-04bd-41ae-b59c-acc0f2561d19
#> 663            17952       3191        NA 741c1ab2-378b-45ce-86c7-533e6a031f22
#> 664            22024       6787        NA 543deccb-0e8d-42ac-b213-dfd458fc0602
#> 665            14959       1407        NA ffa1d197-25af-43a9-ae61-05ab20a0a5be
#> 666            21217       6566        NA e3a0e17e-fb75-4284-b89c-ddbc758f3d20
#> 667            22246       7246        NA 017375c1-6522-43a8-b099-3ea0d15c95c9
#> 668            17490       2985        NA a87f6156-c028-4634-84a8-e3388d6dff2b
#> 669            19672       4753        NA c5ae93f5-f293-4e9f-89a0-6d8bda64ee1e
#> 670            22019       7028        NA 491a4774-9f2d-4b70-9933-2c7c89abbeba
#> 671            21113       6224        NA 8f0e2ff1-fa77-4049-aa94-159a37ed5c51
#> 672            17936       3175        NA 0e7d7ddc-6515-4034-8857-5ab9da6b7c25
#> 673            21783       6850        NA f58a5899-8b78-46e8-a29a-ba6273b7d872
#> 674            17963       3202        NA 90c2a93f-d837-4e1b-b57c-56648903a8db
#> 675            21278       6451        NA 013477a2-0271-4441-a0af-9bc25924a2f6
#> 676            18876       4033        NA 8f86fcea-90e8-49ea-bc78-5c7659313e57
#> 677            20264       5253        NA 501aa2d9-4202-40e8-810b-92cacea26cd7
#> 678            21770       7378        NA 3a337668-7978-4310-b17c-8e1279ba4a4d
#> 679            19184       4330        NA 2d52ede5-1c65-4f18-a8ac-9306192ef625
#> 680            18971       4125        NA 29972cbe-2912-49df-916b-200eead9a218
#> 681            20477       5539        NA bdeddbb2-2b56-4b46-915b-19eb71fbbe45
#> 682            19008       4162        NA 6259f62d-e16f-4369-a3be-ca02f79f3026
#> 683            16389       2078        NA 354dec38-b88b-4ba0-8974-859123f27c45
#> 684            20679       5773        NA 6f124753-5c6c-454b-97c7-0f9b4d14e7c2
#> 685            16020       1825        NA 06e41dc1-d5dc-4bdc-8fc3-e0d7c3a99ac4
#> 686            18717       3895        NA 1283923a-9716-4936-920a-a57f019bb2e8
#> 687            21754       6824        NA 924edb03-29a9-42ae-92dd-ef7e8a498095
#> 688            18089       3328        NA 7e34053d-00bf-4f3f-a464-329c8f5057d0
#> 689            21312       6381        NA d0780152-5d3e-4add-99bd-e330c258df10
#> 690            22244       7244        NA f1236815-5ed7-4bab-808f-700c4516fd7d
#> 691            18274       3508        NA 5a1e63b3-6dcc-48f5-927c-0fc141085f32
#> 692            21995       6835        NA f5b61bef-6214-4d70-9a34-d58da29ce2d5
#> 693            15083       1486        NA dea8f688-602c-4b48-946f-e634fb81d737
#> 694            18370       3590        NA 1b379101-6c8f-42d4-843c-9a3cc44993ff
#> 695            14505       1227        NA 0e581a51-e705-45e2-85d3-bc2c073e626e
#> 696            18125       3364        NA 32884cc4-ff90-42d0-b02b-f9a7df6ce6fb
#> 697            21187       6254        NA 9e82eb73-21f0-469a-ac85-b4fde70a6a4e
#> 698            22051       6809        NA 02753dc9-52ac-4ed1-8086-7894d35a3bd1
#> 699            18106       3345        NA 6445ca00-93b4-46d8-8ac6-451ae70a75f5
#> 700             2760        105        NA 23893852-6ef4-48a9-99a0-c51f41670508
#> 701            19140       4294        NA af433e33-5d77-47fd-b6ef-70815e6aa0a1
#> 702            18953       4107        NA 5e11c306-6387-46ed-8a6d-3ff7a8210ed5
#> 703            17337       2869        NA 6d62aaa2-fe41-4672-941f-7314a0b9b367
#> 704            18975       4129        NA 7ff68f1d-204c-4d49-9179-ecb2514094dc
#> 705            18054       3293        NA f8c2e532-8de2-4c8b-85bf-ed2e24c3b273
#> 706            20947       6138        NA 5f871c3c-9df8-4869-a967-9df253747a73
#> 707            19084       4238        NA cd09c042-0bfc-4866-8d3f-a14ef4c3d7fc
#> 708            20316       5741        NA 43211a61-4d89-4982-bbf1-9b932316b571
#> 709            18001       3240        NA 3ec4f630-592c-4848-a76c-c30ecc090ecb
#> 710            22087       7114        NA e44308c4-2505-4b79-855a-18d83d407fc5
#> 711            13453        986        NA 3d22209a-9800-4199-aa36-b9c86c86455b
#> 712            22253       7253        NA 2e9e0b4e-d7f6-4d9b-850f-e1a5a8e17a5b
#> 713            16366       2064        NA 3e3bd10a-6462-47f8-8938-42518781d060
#> 714            21870       6827        NA 854d07f2-11cc-4dc1-bdaf-e8cce2c89a75
#> 715            16821       2365        NA 5c913725-c52a-4633-b3b9-efa6a9d2cf05
#> 716            19932       5330        NA a28daf84-6354-49e6-a047-1bc549997f29
#> 717            14146       1146        NA dc632746-2240-41d6-8141-695194706989
#> 718            14081       1131        NA 9fdc477a-af02-4345-baca-cf026fbc645a
#> 719            19493       4604        NA 32b5fb32-1fcf-4955-9621-669c246a9fd3
#> 720            20803       5989        NA c6c5ae5d-59c6-437d-9768-34e377fddcec
#> 721            18244       3479        NA 6575474c-d106-406f-9b90-ef9b598a213d
#> 722            17327       2859        NA 1fb9a153-f1e0-4396-81fd-c3b1d331338f
#> 723            21242       6335        NA de41a84a-9f98-42c3-b35e-7c99b0ffa5c7
#> 724            22078       6825        NA fda10175-38e3-4678-a94c-ccd6008d40ec
#> 725            14789       1308        NA 5a20a439-bebc-4ef7-8b9f-30e1d677a26b
#> 726            16369       2066        NA 5a001d28-b271-410a-8c91-3159a6096258
#> 727            20871       5913        NA 0c827cf4-d8ac-4efc-b030-019baa3c7216
#> 728            19875       5039        NA 96d94c76-9563-460a-91e5-47b99f29587b
#> 729            14697       1266        NA 93d11276-45d2-4168-a9b7-df0cbf12dabb
#> 730            17307       2839        NA c008f3d4-7141-4d58-aa63-cb86088b0c0b
#> 731            19838       4980        NA b6ab79d0-cbb6-4e2c-8a9d-2e4a092325bc
#> 732            17926       3167        NA 0bf6b11f-920a-4ced-9a69-0b4afc5df36f
#> 733            21449       6612        NA bc8260d5-231f-4337-9979-7c1c40bc6cd0
#> 734            16492       2147        NA fa059382-e52c-40c8-93fd-bd69decdc1c8
#> 735            21915       7068        NA 41bc429b-f4c2-4edd-bbe1-9a36a178caeb
#> 736            22016       7254        NA fc833ad5-955b-4129-9280-63d8eda84df2
#> 737            11276        576        NA 439874cf-4057-4a7b-922b-f77a90a5bba2
#> 738            21904       6962        NA ef978985-2123-411b-85bd-c59c04618dbd
#> 739             5668        225        NA 58ac0e67-b0c1-4a2d-b89d-ccf3296c787f
#> 740               NA       7516        NA 48efc038-96b7-4c63-a33c-41f6abe6d3de
#> 741            13119        903        NA 4d1f4c44-3666-4014-95fc-4b0013b6d9a5
#> 742            19461       4574        NA 4595c8ea-9d85-4504-8a34-2c8a02349105
#> 743            12841        829        NA d2a0e5af-3850-4f16-8e40-a0b1d15c2ce1
#> 744            22146       7143        NA c744ade6-bce2-4c71-8f1b-742cb183c8eb
#> 745            18055       3294        NA 86197778-8d4b-4eba-affe-08ef7be7c70b
#> 746            16621       2229        NA 56073e7b-84ca-4d4a-a2e7-1bfc0277e8d4
#> 747            20912       5967        NA 33b0227d-4c21-4e71-b4cd-be35f7db9123
#> 748            21952       7021        NA bba755a2-63b6-4ac1-b806-0609816135de
#> 749            21971       7055        NA fb48038c-8f33-47a5-abb4-cda19f66c853
#> 750            17923       3164        NA bef8b2b4-78bd-4a4d-bb5d-6b55ada9ef6a
#> 751            21123       6291        NA 2e9ef3ac-eca5-4eb9-a41d-f404dfaae460
#> 752            20849       6050        NA e1705a56-ae89-4af7-baac-4e72b6f7bd7a
#> 753            19258       4399        NA fed820cc-3104-431a-b38c-efa192216035
#> 754            20009       5299        NA b74ad3e6-b540-4f72-a4e1-3ee6d73c3163
#> 755            21079       6417        NA 9240e2e7-b6dc-4498-9abd-eb79a1df5462
#> 756            22392       7409        NA 5478c682-15ff-4932-97f3-6725c413c2c1
#> 757            20818       5988        NA b620e5ee-840c-402d-97be-9b2e0405e1f8
#> 758            16780       2324        NA a25c5a77-967c-4a4f-a885-0178868bbf67
#> 759            13129        905        NA c3f2ea91-98d6-4d37-b5bd-3c7ac07e5b24
#> 760            20286       5541        NA c40256f1-0bda-464b-a6b7-3a4ebb385573
#> 761            17058       2591        NA 2ff5e7ad-4ac1-4e26-9572-69bef348b1bc
#> 762            22041       6899        NA 9b1a3246-4f3b-47f7-9bf8-a33d6e454723
#> 763            19457       4571        NA 43e8a6ac-d451-4dbd-b145-797764f91494
#> 764            19920       5001        NA 8caec1b4-e0b6-4a84-b8c8-617d6e91ef6a
#> 765            16878       2422        NA 0cc4e449-185a-4b08-9f07-c907ad0c3e05
#> 766            21781       6964        NA 0f369885-8ecd-4ca0-a3dc-df8530a0db6e
#> 767            19326       4460        NA c4caac75-07d3-44b2-88ca-524e495a1a6b
#> 768            20684       5781        NA 82a7e1ff-019a-4f4b-aeb6-c41420e44891
#> 769            20511       5661        NA b2c4ef6b-4caf-4f4e-9cdd-3bd9f2e38d01
#> 770            20013       5113        NA a964f59b-af2b-48e1-b64d-c376cc1d8c28
#> 771            19080       4234        NA 36f62824-1cdb-4e9e-8a11-55df97e562b9
#> 772            16765       2309        NA 00f88be8-45f9-4237-b2b8-3271ec790d07
#> 773            19867       5038        NA 9e174ff2-ca0e-4e6b-96f7-90f0088f7edd
#> 774            21679       6786        NA a72ea15b-5199-4101-a300-846e1c655add
#> 775            21954       7462        NA e479ff14-6e5f-42a2-8b05-bca76c62111d
#> 776            21451       6420        NA bc67a9f0-8c96-4114-8b46-4c97fdd577d1
#> 777            21969       7091        NA 08df3736-14f2-465e-af74-cdcdebe19a66
#> 778            21997       6903        NA 8753f2f2-16df-41c8-b25d-c93ada64d78c
#> 779            20179       5182        NA dfa9fbe0-286b-456f-966e-14a9f70cb85e
#> 780            16044       1840        NA 726c066b-4ce6-4af3-85b2-7ec34807166a
#> 781            17328       2860        NA 8a7fa9bc-f589-4458-9a58-8ac3432a3df9
#> 782            22427       7449        NA eaacee31-0a3c-4f9d-be85-86490ae16f6b
#> 783            17651       3022        NA 8491b12f-68a7-4227-9b8b-17630ff52101
#> 784            22086       6925        NA 34853ce3-5e1f-4b23-b730-6f51444291ac
#> 785            22080       6983        NA bc399631-6a3c-4515-9f8b-acc9a08bc434
#> 786            19048       4202        NA aaa9228d-7399-4b53-a2e7-259438bd2959
#> 787            11105        544        NA f7b49d9d-2ce4-459f-8065-fa3b52d28069
#> 788            20111       5629        NA 3c20f5c4-3ac8-47aa-ba3c-c09ddf94c814
#> 789            15478       1674        NA 4d6c923d-4776-4558-a30f-739dc4070ffb
#> 790            19884       5028        NA c2ee7e58-321d-44b6-9db8-f333b75b3a1b
#> 791            18134       3373        NA 8a214c9b-8c31-48d0-a83a-039ec6ddbd9d
#> 792            21373       6419        NA 155980c2-e289-48c4-a047-09c08d0ce7ae
#> 793            20807       6104        NA 1e8293b4-25ec-479d-83b3-ef231d84ebca
#> 794            18023       3262        NA 2df474e5-7117-4650-8d53-34b3fd0f1bbb
#> 795            16319       2033        NA 20d66704-9c12-467f-a6ca-9cf9dc00730c
#> 796            18932       4086        NA e1048910-1b5f-4d91-8702-f5ad06844b24
#> 797            21466       6467        NA 29815a83-1d6b-4e1b-b1c6-9bf44e7166c9
#> 798            19832       4967        NA 66313049-299d-4e58-beb9-8e051ab6548a
#> 799            21559       6584        NA a1329bf2-4f70-48db-9785-3cd29fc7b56f
#> 800            20842       5865        NA 92c8bc67-756d-4e3c-981c-3df010e15e2d
#> 801            17295       2827        NA 9492f51a-22eb-465f-b3bb-aaee81ce76f5
#> 802            15042       1460        NA d15dacdb-17c6-4010-83d1-e332f9610422
#> 803            16088       1872        NA 1de5c7ea-54dd-4a1a-a319-4429ce604b3d
#> 804            21535       6601        NA b22c91a2-e11c-4ca2-8dd1-54c6bce8225c
#> 805            18421       3633        NA e9a7f92c-241c-4172-9874-6eb0c1576899
#> 806            16963       2504        NA d3186202-386f-443e-92ad-37d8e41dca55
#> 807            22082       7111        NA ea01fa3b-cebd-40c3-9de8-3dc7f5e44e58
#> 808            12912        846        NA 31b604a7-4f2e-4cfd-b040-5d749f7f5d5b
#> 809            22032       6924        NA 64321852-52e3-4ac0-9b3e-898f0b1e500c
#> 810            20482       5439        NA dbed6759-8ce2-4f1b-8757-aab4ec66dcc9
#> 811            20926       5867        NA 570c17a4-c14a-45a0-afda-93ef879b2604
#> 812            18020       3259        NA 22b2030e-ec57-4f96-b722-57b3e495c83d
#> 813            14996       1433        NA 6444feb1-f5a4-4b45-9a45-79308a4445fd
#> 814               NA       7518        NA 52766d25-2e8b-408f-ba3c-2ef9c3d082dc
#> 815            14635       1255        NA 98c7ad4f-8e63-4028-b3ca-84dd37a5ae64
#> 816            16972       2513        NA a54dc10d-c7a9-4413-ab4f-5c7c3fdd53c1
#> 817            21366       6436        NA 7f35aa83-30f3-4997-b5de-11b0c19e90cb
#> 818            13022        871        NA cc9528c4-3a18-4d3f-8d8f-cfef4dcd2d38
#> 819            22000       6977        NA f8f0760e-8f04-45bf-9371-fa33c945bc1c
#> 820            20907       6055        NA 92e78492-1e80-453e-ab31-862e12ffe7d7
#> 821            16334       2042        NA 614c6237-8fe9-4a62-beec-0c44ca0fc2ad
#> 822            13756       1040        NA 9279ccd9-3088-409e-8bc5-215363e7a29e
#> 823            19933       5334        NA a473e7a2-8f31-43ad-b87f-c39e6635f1b0
#> 824            19458       4572        NA 5554177a-c14b-4931-85c6-fc302eb6770a
#> 825            17362       2894        NA ccd34e5b-38a5-4633-8279-77e3a47f5424
#> 826            21873       7154        NA abbfa41c-ccb6-4378-b75b-28ec7d54e277
#> 827            20715       5822        NA e9b50746-32c9-478c-a8cc-3f037e762ecc
#> 828            19293       4811        NA b2d80e3c-1485-488d-8033-52443c63909b
#> 829            21364       7077        NA 04d09b84-6c99-4d99-a1f0-c30d3360ab52
#> 830            15375       1640        NA 291aca07-a3b7-4666-a8c0-2e0c01024de5
#> 831            15125       1516        NA 80b403da-381f-467e-883b-5b83ac02aac3
#> 832            20859       5854        NA 94325301-e0ad-4a9f-a0e5-ffec0f529be3
#> 833            18123       3362        NA 4d517d8f-fe4d-4c89-9a2a-fee836ba4a71
#> 834            20929       6037        NA 9ab44516-2a26-4049-b630-66539c7a5dfd
#> 835            21240       6334        NA d4f0aa89-6309-4977-b779-7501eb8c8508
#> 836            21846       6959        NA 53022661-b6bb-481b-9ce8-b603e521925f
#> 837            20128       5170        NA 8322b598-ab65-4b2c-8a54-af37f67a062d
#> 838            21177       6246        NA 3eb32502-2ecd-44b9-978e-33473fdd8354
#> 839            16776       2320        NA 0f8ccece-d663-4069-944b-f318f64c60b7
#> 840            19823       5046        NA 82f459c4-bf23-4d60-9eb6-b062994f5517
#> 841            20302       5449        NA 18911a2e-1c57-49cc-b7a1-c2cbc599264f
#> 842            20418       5442        NA bfdeb053-b503-4f35-968b-78d8a9997473
#> 843            21406       6409        NA 16423bd0-6239-454c-9ec8-f90477de17b1
#> 844            19479       4592        NA 00fdaebe-c8f6-43fa-addb-6a57dc6c5969
#> 845             9223        447        NA 002a02ca-e569-410e-867d-e317bad07fd1
#> 846            21228       6457        NA 67e5566c-73df-43b7-80ae-3d50d68ac189
#> 847            18899       4053        NA 09fab9a8-b0af-4580-bf55-5c9167912f89
#> 848            16015       1822        NA ec2895a1-4907-4a18-a526-f2db4b663c3e
#> 849            22360       7372        NA d764aa2a-9318-447b-a108-6efa55268e5a
#> 850            19973       5092        NA 579d92e6-ab4f-43e0-803f-b2d5a54d106a
#> 851            20753       5857        NA cdc98acc-9eb6-4b44-81bb-61d7b8a3b55f
#> 852            18997       4151        NA 6d49d4d1-a254-48de-9f6f-eeecac82ad88
#> 853            21794       6843        NA 617aee8a-70be-4bdf-9a71-2e2b74e647e6
#> 854            18019       3258        NA c731aa8a-778b-4ccd-a19f-517eb66f47b7
#> 855            21369       6396        NA 92c3ccc0-b808-4852-a65d-c2c7e9118cef
#> 856            21227       6323        NA b556a98d-16aa-4a0d-9134-1b59c46cc640
#> 857            18999       4153        NA bea00842-e4db-4955-857a-ea8d4a0e215b
#> 858            19800       5045        NA b55ae5ba-593f-4560-9cab-14e10698e01d
#> 859            19671       4752        NA 1eaede88-f9fd-497d-93bf-2849948c993c
#> 860            21692       6783        NA eaaa4a61-c2a7-4926-8e9b-3ec71be2f991
#> 861            19916       4998        NA ccd5239f-e8ba-484c-acf5-af0bd9f6dadc
#> 862            19207       4351        NA 2a443351-5e63-4a49-819e-912b51a745f2
#> 863            22213       7210        NA 0830e644-2d6e-446b-9da6-57d7e3472fcd
#> 864            21368       6395        NA 40a9d668-269b-48ec-be2f-128d89aeb20f
#> 865            21737       7032        NA 8cd3d1bb-5b04-4351-bd03-4b4f9b9e33e4
#> 866            21759       6805        NA 89338a12-65a8-4670-ac99-97281732ff79
#> 867            20722       5828        NA 379f98b1-2f12-4f9e-8332-61cb930ac97a
#> 868            19760       4860        NA f527c2af-05ac-4086-a35e-8efa1136860d
#> 869            19845       4987        NA 44176cc9-9025-4dec-a790-fbfa57686a6c
#> 870            16104       1884        NA 5b6c34e0-6b28-4c60-b31b-0aba6290c546
#> 871            20903       5888        NA 3e4c9bb7-6ff1-4bf8-bc25-cd6717ddf568
#> 872            22044       6785        NA 790ae305-a3ea-4a98-a13a-31dacadec04e
#> 873            17006       2546        NA 5ce96781-4dea-4995-a6ae-7e8ba7acfdbc
#> 874            18529       3721        NA 2f01f1dc-8e8c-4d74-95d9-1b36b42257fb
#> 875            11579        633        NA 688f7a3b-4d66-4fcf-802d-6a3cb133ea30
#> 876            15183       1545        NA f14e6b34-3c77-44e7-bc9c-6c691d3fe46b
#> 877            18661       3841        NA be4f1dbd-6ffd-4054-9f49-cc398d4ce5f3
#> 878            20281       5691        NA 965df459-3f21-4a93-9a99-15559eb977a4
#> 879            17037       2572        NA d766ee35-8ece-447d-94e6-1d33ba427b02
#> 880            22258       7259        NA b80be347-fd65-4a40-bdad-e11c75bded39
#> 881            18033       3272        NA 4419b655-867f-436b-8233-6d45f4dfef77
#> 882            21201       6266        NA d0dcbe53-8c71-4488-b468-785a756ee489
#> 883            21930       6902        NA f90ce4a1-b876-4114-958a-e90768761749
#> 884            19876       5064        NA 6b8cdb8a-db1d-4a3f-85dc-37cedef65c0a
#> 885            21647       6724        NA ab47d1ab-af14-4054-ace2-0cd2fc1def85
#> 886            21887       6851        NA e91734d9-8e7d-4e55-9027-e7c338cc809a
#> 887            18210       3446        NA 30f9ff1e-e66c-40b4-b6a0-46186de3b932
#> 888            22147       7145        NA 564fdf8b-c21e-4889-b371-e8ca079ae9b7
#> 889            21048       5942        NA 5314292d-aac5-4fe1-be7e-8f2ddf2d45a8
#> 890            18268       3502        NA b53384f0-6eb8-4d50-80f5-a2f955183317
#> 891            19934       5351        NA e4114f9d-80da-4e39-bd12-cd9cf2c0d720
#> 892            20331       5660        NA ef0a8abc-074e-4ed1-a053-846c3b1d9cc5
#> 893            16862       2406        NA 57deb6ba-ce26-4ccc-a859-adf0564fb78e
#> 894            20592       5591        NA cdcd43ee-b31d-42d3-adcf-8afb4458976e
#> 895            11414        605        NA 54475db4-f0e8-4513-bcc8-7e76362c19f7
#> 896            20330       5659        NA 648bcdd5-7239-41b4-b346-a2424f6c01d3
#> 897            20815       6026        NA ded35e89-0ed7-44e2-8e97-5566330e6d3d
#> 898            21883       7128        NA 00a28b92-3567-45bc-9fdb-61276dc57755
#> 899            16773       2317        NA cb491475-1814-4914-9777-fb865ae0d70b
#> 900            21536       6536        NA 6c8c270b-7412-452a-a221-7ec5600cc2a3
#> 901            14974       1414        NA e03775ef-3287-476c-9386-ff16ea31d7b8
#> 902            20554       5610        NA 8fde3481-68c2-43c4-a9d4-de73f0a259e3
#> 903            21944       6952        NA cc1cc1ef-551b-444e-be5b-1eeb5c3a4177
#> 904            14890       1368        NA d46e3db5-f89f-4211-b8a7-baeb1a35df46
#> 905            18068       3307        NA 952d6412-2351-48aa-8053-35a456d4e869
#> 906            22026       6884        NA cf95d473-31b5-4bf4-b52c-386567c51caa
#> 907              549         17        NA 67f5e782-f91c-4536-9818-cf4a0e7e821d
#> 908            21203       6268        NA f0c7de3c-9e8b-4c3d-b42f-985f29ce163f
#> 909            21543       6651        NA 23df1eb7-f589-4e49-bb31-0b4ce983fe32
#> 910            19009       4163        NA 61e1881b-a33e-4d33-b518-017145d5fc03
#> 911            20074       5565        NA da8694f7-3e30-4500-b890-bd28c7bc0ddc
#> 912            20959       6179        NA dfb05fbc-7329-4893-8dc1-3d30033e49d0
#> 913            20003       5367        NA 37476573-91a5-454f-a849-baf46c293940
#> 914            14885       1364        NA ca760cb5-83dd-4415-acc8-ef8b508ba976
#> 915            18913       4067        NA 808fe9a2-51dc-4d22-8f09-da1857b5a699
#> 916            17937       3176        NA cda62c8b-89dd-4c03-a86d-dba70541693a
#> 917            16647       2244        NA 69c1e87f-7ffc-487d-8724-09f4fba12b59
#> 918            16434       2110        NA 10d49d75-aa4a-4d26-b9b5-c74f4e3c9ac8
#> 919             6300        252        NA 046a6f57-6927-4f46-9c0b-67b762f2e42b
#> 920            21376       6523        NA 7141ec7a-4f3d-44a4-979e-6644ab9e8f7b
#> 921             9038        421        NA ade43b1a-0601-4672-83b6-d246bc066a19
#> 922             9902        490        NA 0045a36c-f464-49e0-a25a-9210edc94bc1
#> 923            21277       6450        NA a259d6b2-0238-4f22-b3aa-de7132cf9285
#> 924            19822       5068        NA 6faa5a10-56b8-4dd0-b8de-0cf1378b6726
#> 925            21684       6790        NA cc4b5f58-a11c-4450-a1df-617ad88336e4
#> 926            20982       6175        NA 0a040f48-4fa1-479d-ae9d-3ab1457539ee
#> 927             4807        184        NA ab58c0ac-a747-47e6-9b3c-505e41d2bd3d
#> 928            20600       5619        NA 12c39c1f-d579-4bd5-b736-62afd23b8208
#> 929            20018       5116        NA 452520cc-4921-47f1-8d6a-55f7cee8bb0c
#> 930            14887       1366        NA a2802951-e573-4e8f-ad31-14b9ae5f8e7c
#> 931            20791       5920        NA cae34950-dcb7-4021-ad21-0a8ae7cf47f1
#> 932            20191       5220        NA be8e5962-f2d9-4316-9fdf-212a95dbb590
#> 933            19624       4716        NA 8106a0d3-1cc9-4038-8c1b-9c7886a6bcba
#> 934            18081       3320        NA 8af5d867-302a-49ae-9acb-fede2cebe979
#> 935            21411       6633        NA b38b6c46-7b53-4c5b-864c-04e261c97ddc
#> 936            17946       3185        NA 1b17a67d-c771-4e7d-80ea-fb1d19adb200
#> 937            19975       5106        NA 47ba2a5d-1177-4421-a9f0-4db1906afff7
#> 938            17154       2686        NA 98a944cf-0fc3-4a0b-9011-490722667d37
#> 939            18101       3340        NA 47426d59-7af4-4714-8050-a85a0ae70f65
#> 940            16920       2463        NA a37a5bfd-b48c-4d8b-817a-d8ce7ca3592d
#> 941            20865       5975        NA dbda3235-5f3a-4c16-81da-48c093ad6c85
#> 942            21683       6846        NA 826c6c22-2a3a-48bb-befb-8e552fb391ea
#> 943            20805       5844        NA bd1120b6-38b3-4225-a4b0-20660a149d0d
#> 944            19044       4198        NA c871b3a8-72c4-425e-a357-2de37e033c8d
#> 945            21556       6588        NA dc51b38c-dc82-44ee-a88b-764d681ce58a
#> 946            13878       1071        NA 1726a359-9444-4761-a1f2-cb35ee6fa60e
#> 947            13870       1067        NA 1a2fbc23-e6db-4d2f-a152-2c774341b7c4
#> 948             9906        491        NA 973bfe3c-6d0d-4130-a79c-f860650b1da6
#> 949            21729       6895        NA 3bd012f5-1fdf-4ed7-b660-5013122df93f
#> 950            19317       4453        NA 30641ad1-3511-48a4-a63a-95c88846b705
#> 951            18269       3503        NA cadecca8-a102-43a5-9a0c-f7cef0b9a579
#> 952            18977       4131        NA 659d31a3-9c62-4e3d-a0ea-b2e4967d6947
#> 953            16481       2141        NA 8a55e15e-9385-4648-8123-bc5f50f6b304
#> 954            21942       7132        NA 4d224244-dbb8-49db-b8d9-8bb974cea82e
#> 955            19994       5091        NA 2177026c-2b34-4b88-bc88-50d7c9962064
#> 956            20178       5181        NA e669f022-4065-4ef7-b850-a90e8b2367c0
#> 957            18925       4079        NA ae0498b4-0ccb-4b11-9449-f26c621d7c79
#> 958            18004       3243        NA 771d19bc-f5e2-4a25-8553-4ad3c341c1c9
#> 959             3942        146        NA 640710b9-72f2-47e1-9afa-f3070b23c119
#> 960            19839       4979        NA db9fa46f-f0f6-40b8-a207-60d46173d7e1
#> 961            21116       6222        NA ca08b2bc-7fad-4dec-88d9-5f5f9712a830
#> 962            19856       5029        NA fbf2dd5f-b324-424d-8cd3-335b0d695c6a
#> 963            21418       6619        NA 23424024-3b7b-4de1-9b0c-09d170f845b3
#> 964            16902       2445        NA 81aaf55d-df8f-47d6-9bf1-06b78df37bf6
#> 965            22269       7271        NA 959f035c-b8ce-45a3-bbe3-fda439c1e9f1
#> 966            22148       7146        NA 41ff2f2c-6ddb-4bc5-9712-3664501f7af9
#> 967            20293       5545        NA 374036ec-f329-4098-8972-0d9ca326fd37
#> 968            22069       6916        NA c1bbdfa3-5171-4018-a812-1dddacb3b421
#> 969            18056       3295        NA 0df44cfb-8dab-4fc1-8556-108505a4b428
#> 970            13911       1086        NA 408aff57-2b32-41f7-9520-0064ad14af21
#> 971            22461       7487        NA d13f374b-649e-4762-bcbe-660c6dcc2131
#> 972            18978       4132        NA 794760c3-b654-48fa-ba3c-3b07fdb4c03e
#> 973            21891       6981        NA fa797d7d-4537-4e2e-8fd1-cd8831894092
#> 974            20848       6103        NA 0681ed0d-6b7a-4582-85b8-2692f0c2f058
#> 975            21435       6542        NA 65a702f3-1e60-46a3-bce9-8b4e3f939888
#> 976            22265       7267        NA 5616e0f0-8306-43a8-8347-e5b8e26f8cbf
#> 977            13816       1053        NA e85680db-639d-49cd-ae29-28e5cd4ac9a8
#> 978            18537       3728        NA eddd3f47-fdd1-4d53-9e31-93b46624fd0f
#> 979            15583       1702        NA f9ec0e39-86d2-4f99-84d6-b4e7bb387d8b
#> 980            19379       4507        NA f4a43515-f437-499a-8c57-086eb579c5af
#> 981            14905       1382        NA 2dff7d82-426e-42d6-8c7c-170ad3a24ad6
#> 982            22263       7265        NA 80422fa0-20c3-40d8-a3e6-93f55b09b872
#> 983            20828       5877        NA b5d116d8-11d4-43b1-8f0b-9a3ba26648c9
#> 984            18710       3888        NA e9615c8c-3a7e-4b10-92f8-86f48edbe9a4
#> 985            22040       6980        NA 13bbc7df-2a25-44db-a79a-89ba6c1ac009
#> 986            22042       7067        NA 7e6798b8-b33f-4a35-ab5b-67fafd8d9e65
#> 987             1694         59        NA e0856548-6fd5-4f83-9aa0-91f1bf4cbbd8
#> 988            21991       7504        NA 8ca83e4e-d3a5-4dcb-a917-e58e36b77721
#> 989            16799       2343        NA ede260be-5ae6-4a06-887b-e4a130932705
#> 990            20767       5839        NA 99847f76-5bf2-4cbe-8573-9a477f7fb472
#> 991            21906       6965        NA 586bc34d-f368-4d82-96b1-816d08fa2837
#> 992            19902       5031        NA ab9bd5b1-eaf9-4f2d-8acd-fbc143980b17
#> 993            21125       6294        NA 5203e275-5554-47de-bc0a-5b13639e5b50
#> 994            16883       2427        NA af3599a5-5eb4-4dd4-87ab-e0032ebfa644
#> 995            22266       7268        NA fc081a72-124d-4648-86a4-45aebb95a5ba
#> 996            22007       6890        NA e1917291-e27c-4221-b62e-36b5d9df254c
#> 997            21417       6517        NA 3267e534-526e-4db8-8e1f-49fc7ee8aedb
#> 998            18208       3444        NA 0b06c168-c660-440a-922e-954ac15c0df0
#> 999            16133       1905        NA 462bfd22-1159-408f-8f92-7fde712ffc3a
#> 1000           20061       5321        NA f1fdaa82-25bb-4ae7-8945-c0b9864214ca
#> 1001           17947       3186        NA d848e4e6-ff3e-421c-9bd3-c2f62a16efd4
#> 1002           20288       5483        NA ca113409-c714-40f8-82db-727eae1e455e
#> 1003           20607       5639        NA 80ebeab8-891e-4a54-80ec-3f102fed7cc7
#> 1004           19977       5087        NA 5067e5ee-bae8-411e-bc05-011a88a3d954
#> 1005            2593         96        NA 0ce48193-e2fa-466e-a986-33f751add206
#> 1006           20283       5257        NA d897b70f-29d9-477e-a72a-c9bfbadb70d3
#> 1007           21841       6804        NA e5094779-e94f-4052-8597-bdbee3719f6b
#> 1008           21156       6231        NA fbaa74ff-f6d3-4bbc-bdc1-12aae7fae484
#> 1009           20984       6153        NA a2e0f742-e608-4e29-99cd-e7cd765afba1
#> 1010           20976       6159        NA 3f454d05-40b8-45a8-b195-ff2565b6c79e
#> 1011           21823       6963        NA ef87e355-8e0c-40ed-a85d-bca4896d4f1e
#> 1012           19045       4199        NA 27dd5b6e-ea65-4622-a6b4-460fd144407c
#> 1013           18041       3280        NA 442eb96a-deb6-4e73-b65a-a2bb25ffa968
#> 1014           21802       6828        NA e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3
#> 1015           18995       4149        NA 122e131c-b08c-4b10-901d-481a20aeffb8
#> 1016           21107       6210        NA e1b066fb-d077-42a3-9f5d-4ed560c9d777
#> 1017           17998       3237        NA c7fccdf9-dd52-4483-862b-d58a94560135
#> 1018           20913       6067        NA 7191cfa4-01c7-45ed-95a8-0d503ed1cc1b
#> 1019           16029       1832        NA 7788ca8f-88c8-447f-9110-3cfd3ca5efd8
#> 1020           20895       6008        NA c589d918-f69f-4284-aa85-5f9c30e006a4
#> 1021           15131       1521        NA a750e7ca-12ab-4d7c-bc65-f58793c3ed16
#> 1022           11241        569        NA 52366445-a41d-4b7c-bd42-1ea4cb940695
#> 1023            3061        111        NA 9c21e9af-681c-41ef-9b00-fbc9e1668ed1
#> 1024           20952       6139        NA f808794b-3135-4f75-b46a-ba90bf6b8502
#> 1025           22477       7502        NA 921d49c2-64d1-4108-a3a3-0c237e17748a
#> 1026           21798       7050        NA 7874d188-0fcd-4af9-9289-27c27e2bbd16
#> 1027           20893       5957        NA e0755328-7fe1-4df7-9dfb-93e9cf9ef5be
#> 1028           18000       3239        NA dac819b2-245f-4845-a73e-b6f92fbe3abb
#> 1029           19491       4602        NA 7c9c7800-69d0-459b-812b-a07ac48e9f2a
#> 1030           21420       6469        NA 109cf714-fc59-468d-b02f-2db4e75a56a7
#> 1031           16470       2133        NA e7d6ae25-bf15-4660-8b37-c37716551de3
#> 1032           21169       6239        NA 228b0dd8-3f75-4b60-90d1-59036858b8ae
#> 1033           21708       6763        NA 6fb8803e-2a84-454b-827f-df747e9157d8
#> 1034           20398       5323        NA 0b97067d-9e06-4ec0-97b2-e1cb491e12a6
#> 1035           20182       5223        NA a3055591-6c57-4ff0-9a2f-5e2547c62820
#> 1036           16326       2039        NA 27e60657-f73d-4125-906d-aa72cc3477dc
#> 1037           21513       6519        NA 4bfd6f35-f0ac-4c43-a023-f8236df31deb
#> 1038           20145       5185        NA 6a23db75-021b-4808-99e6-21a33d34202b
#> 1039           15215       1567        NA 502b3a6c-e965-478a-858e-964b4ac2296c
#> 1040           19976       5086        NA e7f0a505-8060-403e-a3b3-9d4e88dda1dc
#> 1041           21115       6223        NA fa7bdbe5-23b9-4cba-9015-98c5e2d09c9e
#> 1042           16802       2346        NA 7f5f2a81-ac40-420c-9421-5b9e2a21faf8
#> 1043           17982       3221        NA bbf8d4d6-8f5d-4847-ad1e-0d205d38f0c5
#> 1044           22001       7338        NA 3b8a2ce7-52d1-4ca2-af53-b7d7617936b3
#> 1045           21030       5932        NA d6ac9c49-ef2f-44be-a5df-dc57ce23fcc9
#> 1046           20219       5520        NA 411c2af8-64c9-4982-8d72-3ba4c683c0db
#> 1047           17955       3194        NA 0da88ee9-26f4-4d59-aa66-1e2dbda05580
#> 1048           22061       7052        NA f113cf01-5a86-4ed9-ae34-dcdbac9e11a6
#> 1049           20840       5883        NA acbf5978-d7da-4d01-8f1d-22dd65d4484c
#> 1050           20758       5968        NA f60017c5-e44c-4256-831f-86c8d8626481
#> 1051           16283       2008        NA b6c9d494-a3cd-4d57-96e1-f807f0b9be63
#> 1052           20032       5344        NA 0a08ca62-e488-4369-8e26-8b158443865f
#> 1053           16297       2017        NA 5f173aec-86fc-40b5-b0ae-805b46476022
#> 1054           15561       1696        NA cdb10720-0d41-4cb6-9fb8-c00713754a1e
#> 1055           20070       5317        NA ce0badde-28c3-45ce-a6f4-e2f82ef129f8
#> 1056           18903       4057        NA 96f646e2-0984-4092-8031-22d2bf9b620c
#> 1057           18029       3268        NA 16e4ffec-959d-4210-8702-36c0bf20dda5
#> 1058           20513       5662        NA f9ae156c-f690-401f-b964-34b0ff6187f9
#> 1059           21931       6923        NA 95f3b8ac-e10f-4f0d-8650-b464b37ded86
#> 1060           19999       5378        NA b7337487-017c-42f4-b500-6802a35efbfc
#> 1061           20901       5934        NA eff1c40e-715c-49c4-93d8-6155322c1205
#> 1062           19012       4166        NA 1df2f078-18d8-4bb4-9d6a-9ba4bcb126bf
#> 1063           12955        856        NA dc11299d-6c24-4048-8b2f-f929e4ed0b92
#> 1064           22054       6795        NA 7e2046da-1bdb-49b6-abb1-c35e725d84a3
#> 1065           19889       5066        NA b4974d96-a831-4914-9de6-6758a4ae12dd
#> 1066           13091        894        NA ac540ab1-95e1-48a2-ac93-6c0037c5a026
#> 1067           18053       3292        NA 389438be-4bd0-4842-9021-b614289b8d98
#> 1068           18967       4121        NA 3618e094-0273-4e99-9641-65cc488128e5
#> 1069           22273       7276        NA 2d233d49-fca4-4ddf-a73d-21f4451ce3fc
#> 1070           20761       6084        NA 04ca77dd-b55f-439e-a593-37dfc8ea8320
#> 1071           14481       1220        NA 0a821a41-cff9-4b6d-9140-301a09edf895
#> 1072           16295       2016        NA 5408024f-0014-4abe-9d27-4467d802d50a
#> 1073           18215       3451        NA 203b60aa-cb94-499c-a4ca-d3c6b94dddc4
#> 1074           19496       4606        NA 1817f16b-5ff3-4d64-8d7a-f64e02f5a033
#> 1075           21478       6430        NA dd62d18d-3438-408f-8b53-a68399bd4a04
#> 1076           16804       2348        NA 5aac7b03-3b39-4084-bda5-8423abf28903
#> 1077           20783       6027        NA 2b13e2a3-22c5-41cc-b13f-30c501f7c810
#> 1078           20021       5325        NA 872967b4-d1ab-4b27-82e9-c40774fc995e
#> 1079           18956       4110        NA 8cb76d80-0326-474f-86c8-869a86405777
#> 1080           13977       1103        NA eafbc0f8-2e3b-4014-af9d-81fc14b5009a
#> 1081           17081       2613        NA 4688d4e5-bbea-41c9-8a6a-c06bc34ac7b4
#> 1082           21879       6900        NA bc69c92c-58ff-44b2-a18b-07a08ee78dc6
#> 1083           19978       5088        NA 43aeb127-28e7-4fac-a611-39c38f3f7628
#> 1084           20094       5147        NA 68c82358-44df-4884-9e5d-f5102435c32d
#> 1085           18545       3734        NA 5a422c26-d686-4ad2-af10-d7d691150e27
#> 1086           16913       2456        NA bb4619b4-30e6-473d-947e-41d75a573475
#> 1087           19309       4448        NA 0d4fd512-e1fa-466e-a984-d2a4389c512b
#> 1088           11120        548        NA b23e22bb-d478-4312-a085-e7642017ccfb
#> 1089           16429       2105        NA 29626ee6-b528-4618-a4a5-771a5b0ff54d
#> 1090           19966       5077        NA 0df7834e-6373-4f30-9935-5c05d28e752d
#> 1091           14017       1113        NA 6ee71282-c2b8-416a-8de1-29c0185d9b7b
#> 1092           18857       4017        NA eec5265c-7731-4bb6-8af2-4f98a67f9ab7
#> 1093           16116       1895        NA d4b30988-e8c5-4689-8037-f79a0d3c2774
#> 1094            5282        208        NA a261fd0a-b096-4db7-bd51-2f13bde485da
#> 1095           20566       5536        NA ef21feb3-991e-42d7-bb16-8bc92f7894bf
#> 1096           20318       5271        NA 7f5c931b-4ebd-4309-a1d2-e04a5cf782e8
#> 1097           16847       2391        NA 2c8670ae-0c23-4d20-9d2b-f4c3e25f8938
#> 1098           21856       7005        NA 26e66f79-5f08-4ee1-bbc5-85c8f5f7fddd
#> 1099           16838       2382        NA 31c376b7-2e10-473a-aa54-d9f709a5b93e
#> 1100           21126       6293        NA 1731325a-0303-4a56-81f5-3c4a588cf0d6
#> 1101           15589       1703        NA 16e13f52-32b1-416f-83ae-1cbf2f92cffc
#> 1102           19866       5036        NA bb9db665-7f9f-425d-9e4b-df78c65c8b97
#> 1103           16071       1860        NA 19da8eea-111c-4e70-b516-0259015ad9db
#> 1104           20813       5901        NA 8abf63a5-6f5d-46c2-8a3a-b9b03d0cab26
#> 1105           19042       4196        NA fa7465d1-4d84-452f-97c4-cdc14c607a34
#> 1106           20936       6150        NA bb5156b6-adca-425c-b336-54507cdd0cf8
#> 1107           17918       3159        NA 813c2073-8f69-4f6f-94a6-6819cd14b4f3
#> 1108           21947       7115        NA 608ebe54-1b57-4775-808f-ab2e02637a75
#> 1109           22359       7371        NA f6153509-d21a-439b-a33a-007a9f25218f
#> 1110           19903       5032        NA 0cb5a32a-a340-4671-ba2a-93f5fa6aee8d
#> 1111           19304       4443        NA 6733b953-de77-44e5-acbf-c2d3a0940243
#> 1112           15247       1592        NA 54d4e35a-2e6c-48f6-86ad-92dd596c173c
#> 1113           20974       6164        NA a96e777e-120a-4843-8bfb-59069bd1bd52
#> 1114           13227        928        NA 3283f152-d373-43b3-b88f-f6f261c48e81
#> 1115           20067       5132        NA 775e71fb-96af-4831-af0c-78b2e89897ff
#> 1116           19021       4175        NA 6335a39b-9cb4-4703-bed9-1835b9fc4791
#> 1117           19937       5007        NA 40caae08-0389-4c59-b796-d924047f57f9
#> 1118           19969       5080        NA 6e01959d-9860-49e4-a997-eee257718812
#> 1119           21967       7085        NA 0063fe36-d8c2-43e6-8ab1-af890eb58cea
#> 1120           19935       5006        NA c95f9fd7-9c7e-43d3-a6aa-2ba78ce09fbb
#> 1121           17916       3157        NA 095e0c1a-0bea-4bc6-868f-e4bbe2ce6c30
#> 1122           19569       4670        NA a9b58dcf-40f6-4c27-a415-b922fc39f0bb
#> 1123           16568       2197        NA b6b954eb-4591-4b7a-86b9-a481f15fdd58
#> 1124           17948       3187        NA 66990fc9-f98d-4712-8a0e-524372b9102f
#> 1125           18131       3370        NA 30e8767e-a208-494d-b684-4f1905e0ac10
#> 1126           19974       5093        NA c3de87d2-5461-491f-8f36-1421ec9c0a76
#> 1127           16312       2029        NA 3f0613a9-f060-4b43-95cb-3b263f05cd0f
#> 1128           21190       6257        NA dba7bc1b-c414-404a-8845-4b0245df64a9
#> 1129           20028       5328        NA aecd8785-d22b-43b4-bbff-76b7e4319ed6
#> 1130           21001       6128        NA bbeb74ae-87d4-417d-ba57-670391baf8ca
#> 1131           19948       5382        NA 91714138-9d0c-446d-b509-709d95f9202b
#> 1132           15151       1536        NA 81a5c010-2e89-4b65-a924-015cf4ea3f94
#> 1133           21530       6645        NA c9b2e966-bdfb-4ccb-be3c-42473f63929b
#> 1134           22139       7133        NA 72100db3-2daa-4c17-aaa8-6c2c52bea5f3
#> 1135           19287       4427        NA cbfb7144-357e-4feb-82d7-a6104fdbf908
#> 1136           20961       6143        NA 8d44783d-6149-4e6c-8a5f-5fead0ec7677
#> 1137           20604       5674        NA 9fe24e8f-360b-4ca6-8e46-6d60d8728efa
#> 1138           16876       2420        NA 294b8433-6560-4117-82e9-79f51d361b0b
#> 1139           22268       7270        NA 82cdfc87-01d1-49bc-a9c8-ecf8f5bde7f4
#> 1140           22109       7044        NA c2ec4712-147c-49b1-b6ec-fdb298913080
#> 1141           20492       5445        NA b736f05a-38a5-47b4-aaab-734667967ac2
#> 1142           18920       4074        NA 3cb26a5c-9c90-46ad-b539-e29ad6934e30
#> 1143           19878       5057        NA 7b06a505-ea09-4f2a-adad-f0f1c9b3ebc9
#> 1144           16310       2027        NA a21d1e4a-aae6-4ebe-8f70-1087151b2b50
#> 1145           19879       5058        NA d22c6b00-da97-4ccf-ae49-f06405fccc3e
#> 1146           13036        878        NA 98841eb4-0f2a-4073-bc91-0fa8548b305b
#> 1147           19105       4259        NA 08875a0a-0a3c-4fc1-b5f7-41d510503628
#> 1148           21022       5971        NA 8b1f53bc-d0c1-4fbb-8d7e-3ab7188132a3
#> 1149           22279       7283        NA a1be5d02-d5c4-42f6-8749-7ac2ff2a6f09
#> 1150           22278       7281        NA 8f36321c-c317-40ce-ae09-fca8694083b4
#> 1151           20169       5191        NA 4ab9df5a-3e40-4402-9f68-bbc659a94784
#> 1152           21871       6893        NA e26bb68a-8987-40b6-a2d1-af013a13306a
#> 1153           17933       3172        NA d97529e5-f1cd-4fe0-8697-4b51bbe52fd4
#> 1154           16895       2438        NA cbbf7b76-cd26-462e-bc18-d80f5109723b
#> 1155           19831       4970        NA d3fee51d-67f5-413b-a4b2-bde86b97babe
#> 1156           22030       7118        NA 22febe45-170a-4f01-b144-3b35b44c7da4
#> 1157           19164       4313        NA db392145-7bee-4453-8762-ec946b3130b3
#> 1158           22112       7062        NA c8bbff7b-3b6e-413f-8945-24c01bfd84c5
#> 1159           19852       4990        NA f9a138e3-829d-442f-8345-43d1cdbac225
#> 1160           20023       5345        NA 73040fb2-2b26-444b-956e-df0927985bb2
#> 1161           19049       4203        NA 14b52c32-e9f6-4b64-aa22-1d96bb20cf84
#> 1162           14377       1193        NA 9552a04c-6468-41e0-bc5c-c91efedf2fc3
#> 1163           20428       5450        NA 6bfc1107-7883-47db-85ef-3f8f24222a20
#> 1164           20897       5944        NA 6c338c70-42d9-4d35-bf87-04fe7e2f690a
#> 1165           22140       7134        NA 08765a08-c1cf-4065-81b3-67cbad7e0e17
#> 1166           20015       5331        NA c897e280-6597-4dce-9c0d-ed845148d714
#> 1167           21117       6218        NA e653effc-2bdc-4bfe-bf3d-272e783ae4c4
#> 1168           20024       5346        NA b0ad00bc-3b30-41ce-8892-f8105e0943e2
#> 1169           18381       3598        NA 8da0fe32-1758-44ed-9acf-21b3721cbd0d
#> 1170           19014       4168        NA fae57441-a198-4674-8a37-401b64d17961
#> 1171           19419       4540        NA bd1193d4-ec52-46c1-bf6f-74a11f712097
#> 1172           19187       4331        NA 8237c04f-a1c4-4c31-b5de-3afb3c81389f
#> 1173           15559       1694        NA b1a2aa6e-7104-4e35-910d-fbefddd74a78
#> 1174           18018       3257        NA ad2258ab-67f0-41c2-bcf3-f3ba145187dc
#> 1175           18897       4051        NA 878d95f5-22d9-4f20-a3ec-2b5b117a8c5c
#> 1176           21820       6823        NA 060d05d6-aa31-4571-9f91-12c8050b6aaf
#> 1177            8244        331        NA e47706c7-e14d-41fb-b13b-83a835a1f3bc
#> 1178           19912       5347        NA ed5bcd2c-6335-4c0b-93b7-2116684a9b02
#> 1179           19979       5100        NA 070850a3-7387-4836-b3eb-b1c8f8731aab
#> 1180           21792       7038        NA 9a5ebed1-839d-40f9-a86e-ba9c65c7c7e6
#> 1181           21682       6813        NA 925195a4-06ba-4e37-ae7d-a3d6a5419139
#> 1182           18998       4152        NA 413f7971-4d5b-496d-a11b-f623e9bc3b7c
#> 1183           17972       3211        NA 73015642-080b-48a9-b1b5-bfa4a606cfd1
#> 1184           18132       3371        NA b6ec1773-309e-422c-b82c-b55a557031d6
#> 1185           20991       6152        NA 26421b57-c32f-45d3-abcf-c23defaf4f2e
#> 1186           13753       1039        NA cbe81592-1ee2-4bf1-870a-2578c4c8267e
#> 1187           18623       3808        NA bc6aa137-cef3-481e-a87a-e06dad32882c
#> 1188           18011       3250        NA d71abd0e-7a69-4e28-a2f3-d8d516f3d8a7
#> 1189           22277       7280        NA f1f4a350-cc5f-43a2-bde1-829058d6c338
#> 1190           12960        858        NA b44fa657-e4ea-4cc8-9581-33740bc417e6
#> 1191           21600       6698        NA 0864f928-283f-40e4-9c04-f2b2b374e237
#> 1192           19031       4185        NA 8255ee3e-cd6d-445a-8f45-7ac60fa3e794
#> 1193           16852       2396        NA 89c07ccf-8157-4246-8c83-898a81d2dc77
#> 1194           19857       5060        NA e550d0d9-2e56-4c71-8a9a-8a683daf32a3
#> 1195           20378       5667        NA d7afa203-07a1-406d-bb1d-eb81f331955b
#> 1196           11369        589        NA 1ed30e79-c25f-4ce1-a17f-94a4bf6d3686
#> 1197           20020       5117        NA f993832a-f81f-4706-90b8-80fd193bdfd7
#> 1198           20083       5156        NA d83c2f7a-3195-4e6a-b1a0-4745b5dcca38
#> 1199           15602       1706        NA bd413539-9351-454e-9d61-4e8635d7e9f5
#> 1200           18900       4054        NA 8809c0dd-786b-4255-a7d0-333c9498c19a
#> 1201           21796       7404        NA 86707c8e-fec4-4ebe-9111-4d3ad238ad43
#> 1202           15965       1793        NA bc0f07a4-3e7b-4e61-987a-05533dc225be
#> 1203           22458       7483        NA 2c73720a-702f-4f39-9b54-c4da9d9f632c
#> 1204           21959       6985        NA be29caf2-9942-4e21-939a-a29407555c56
#> 1205           21005       5880        NA db0c3b1c-8d18-435a-864a-cdd696f963b6
#> 1206           22276       7279        NA 18a3fb57-3220-4fa3-af42-20e179ec896f
#> 1207           16919       2462        NA 617269c1-88b3-45a6-b4a8-b2806a0cdaea
#> 1208           19981       5102        NA 5226f6a9-a6af-45f9-93ec-669542f3cfc9
#> 1209           21349       6427        NA f374262b-d642-4d05-9584-5955548ee4d1
#> 1210           20829       6045        NA 49f9f357-e90a-45b7-9f55-fe451125149f
#> 1211           19172       4319        NA 7fc949b6-a1cb-4f9d-a06d-b65773409a44
#> 1212           14005       1110        NA b8426cea-f8b9-4061-8d56-e70d1230103e
#> 1213           21744       6819        NA 1aefd5e2-1f85-471a-91a5-4aad4cf6fe6d
#> 1214           18049       3288        NA 5dd5a4bf-08f1-46e1-bf31-eab422cef869
#> 1215           15067       1472        NA 5c4ec28a-5393-4073-a71d-df0dad8858c6
#> 1216           19344       4476        NA 593d31fd-212e-47a5-b3cc-0793cf075a98
#> 1217           15359       1633        NA 20b43016-a174-423d-9551-7f62ababad3c
#> 1218           21333       6354        NA 78ca0233-a32a-4435-ba06-6ececaa3c537
#> 1219           21175       6244        NA 095f659a-2aaa-4961-912c-66f337755787
#> 1220           22057       6935        NA 72d2a51c-7f02-4db8-8cce-19c45820f170
#> 1221           18929       4083        NA 4de23d54-2169-4b17-b0d0-c47b2edd9f73
#> 1222           22289       7293        NA 56d8015b-aed7-4a46-868e-a85672cde790
#> 1223           20148       5188        NA f3de155c-da4f-4487-abb5-76225a8e3c17
#> 1224           22052       6791        NA afbc5ac8-8e3f-4cb6-a96d-3b28b039bde9
#> 1225           22141       7138        NA 039d817f-17a4-471d-8949-197335dcd1ad
#> 1226           20460       5479        NA 3db8b3b4-d3f5-4b35-bc19-ee56ec6d29da
#> 1227           21281       6416        NA 65e778fa-4639-4973-bb82-c76efa2ff309
#> 1228           18434       3643        NA 0e41e388-6e5b-4a12-aa2f-45bf83ffadc5
#> 1229           22201       7199        NA cf82c333-e8ca-4128-9aa3-375ea5629b30
#> 1230           17993       3232        NA 56c81bc7-72ac-4356-a737-b8010f931b56
#> 1231           18528       3720        NA b14bcb8f-a563-4b68-8a4f-5ef7da8b181d
#> 1232           20737       5840        NA dd7be5f3-c615-4621-92e1-2434519cb1f9
#> 1233           21888       6800        NA 74439c42-a6db-4a9a-be25-559f3e03ef59
#> 1234           18959       4113        NA 887dc7b2-fb32-4126-be14-509b40424d34
#> 1235           16877       2421        NA e4a401ce-3740-4e6b-8dcf-f2b41a3beeb9
#> 1236           15029       1453        NA c9bbb2aa-f044-400b-9f09-5321604a3b79
#> 1237           12450        754        NA 7011a0e7-f402-4bc0-bba3-b31d3613e47f
#> 1238           20269       5532        NA 55998ec0-4d69-4d14-a2f4-cf72de36e998
#> 1239           19846       4975        NA 3971d35c-17f6-400e-8970-86bbf92cc744
#> 1240           15441       1663        NA ecacc01a-e71d-4028-9bb7-37fcee0f1708
#> 1241           22285       7289        NA cc5a9d21-10cd-4966-ad17-44edb238834d
#> 1242           16463       2126        NA aa82ed23-934e-451f-ac47-65c63a84bf16
#> 1243           19508       4617        NA 8bfbee63-feb4-4862-b3c8-08d2f65c8b5f
#> 1244           16874       2418        NA 8a73dcfa-3e7c-4a8d-acee-7d2b1fee6c2e
#> 1245           13446        982        NA 9be8224a-4a19-4f6a-a2be-ecbd3a24868c
#> 1246           16264       1993        NA 62ae1c72-f5ef-4c45-bac9-aac5569b034c
#> 1247           16828       2372        NA 56657521-aabb-4c6b-a6d1-9b809e6495b6
#> 1248           16560       2192        NA b90a3e2a-66fb-4b1a-a6de-7482fbe2d1b2
#> 1249           16259       1988        NA f5eaf900-592e-4a3a-8514-4426dce7d3c3
#> 1250           22454       7479        NA c9dcada0-7f61-48af-84fc-d147a31c60e6
#> 1251           12594        775        NA 40cda44b-2ee3-4ad1-834e-995e30db84d4
#> 1252           18619       3805        NA 1a59e864-5282-4d94-b678-8537d524e181
#> 1253           17139       2671        NA 69bdf41e-3c32-46c1-93b8-e952edf5c61d
#> 1254           18645       3827        NA 8fb2ca06-3d13-4552-98e0-7b913b4ab5b9
#> 1255           22006       7000        NA 6a2ee9da-4df9-4486-8060-8362a20bbb40
#> 1256           21974       6997        NA dd7218be-5eaa-4d51-94f8-a9f68d2f0af9
#> 1257           17967       3206        NA 82a70525-35cd-4389-a5d1-3b0f11f05a28
#> 1258           21109       6214        NA 8227621d-ad2e-4dea-aef5-64d4f154adb2
#> 1259           20772       6105        NA 62976179-ae2c-495f-9e94-cb3e49933243
#> 1260           20736       5993        NA 4d094a58-1cbe-4ede-abaa-cd2f1a492f0d
#> 1261           17977       3216        NA 08c01429-e747-48f1-b38c-8e712fa53c8e
#> 1262           20026       5315        NA ef65234e-2459-4ecd-b9d1-8751a7c7153d
#> 1263           17925       3166        NA 66e776e7-f354-4939-835b-a23dc889c6ae
#> 1264           22287       7291        NA 818450c3-93a0-417e-80c1-b49a1bc541b2
#> 1265           16670       2259        NA df4d7b62-ef37-494b-b068-f319ad336bbb
#> 1266           22291       7295        NA fb18e325-eab9-459f-a559-b482894eb0f5
#> 1267           21869       6972        NA a94f0507-44b0-4fb5-9e8c-fd21157ec1a6
#> 1268           20928       5926        NA d61b7bc0-beec-4cab-97b0-7dbd27ded26e
#> 1269           21660       6739        NA ee894f69-ff62-4f60-a5fb-5307fce1de73
#> 1270           20063       5314        NA 8301d82b-0ad1-4988-a978-2925e2ae9377
#> 1271           21814       7084        NA c81ae6df-f87f-4197-b68f-a460321b48b4
#> 1272           15201       1559        NA e1235f1e-26ce-438c-8168-3b1ded4ab893
#> 1273           20880       6011        NA dabb52c0-455b-48fe-996b-abf758120623
#> 1274           20904       6068        NA 25bc08ac-8420-4340-94c6-93993ff87d6f
#> 1275           20743       6007        NA ce079a73-5884-4184-909a-8feafd4645d9
#> 1276           15102       1502        NA 0366fd06-19a3-4b69-8448-6bfbfad1250b
#> 1277           22441       7466        NA bc43e18a-c2f9-4e49-a90c-41a95cffa736
#> 1278           21970       6955        NA 5fc196a1-2015-49c7-85b2-1adbd2c33cf5
#> 1279           21564       6659        NA 0deb1dc9-0945-470d-8352-220d26d03d7d
#> 1280           19626       4718        NA 42b57148-fc06-4aee-b40b-bb941271b5b7
#> 1281           18321       3550        NA 0a4980fc-0ffc-45b4-a2a9-f9d38334618f
#> 1282           21928       7053        NA 15a6249f-f4cf-47c2-8251-8a3a802b3db0
#> 1283           18955       4109        NA 8ddd0a30-563c-4fae-a6a8-a19747721924
#> 1284           21573       6674        NA f093ef0b-6f2c-4fb7-8477-71f1eea28ac0
#> 1285           22012       7060        NA 53b64223-ded9-41c1-9d2b-a8c2de8963d0
#> 1286           20457       5476        NA 3fa9a860-a1ee-4355-ab3e-ba81490a4385
#> 1287           19938       5313        NA ca8b966f-3c0b-4219-a28d-0c020c365ff4
#> 1288           20777       6028        NA d48dd5f2-79ea-4821-be32-5c177c674bc3
#> 1289           18910       4064        NA a7f7153a-c574-4f57-a8cb-760aba8eb629
#> 1290           22444       7469        NA cedc5875-2b9f-4fc7-8e86-6895732bafa7
#> 1291           20960       6121        NA 8f07843a-6f68-409e-8cdf-1207f521b12a
#> 1292           19035       4189        NA 582dc00e-e7ec-4ca7-bff0-f7b1d604017b
#> 1293           16933       2476        NA e5c6b0d4-3e77-422b-a6d8-574a10ed385e
#> 1294           20196       5194        NA 9eb60195-a390-4a96-bebd-8a761551c163
#> 1295           14918       1388        NA 14ecf9dd-3a77-4847-8e62-407cd1182f1c
#> 1296           22284       7288        NA ca393469-d587-4bf7-905d-838e960de851
#> 1297           22138       7131        NA e7a9186e-5e19-4f70-b45c-527c888e6fc7
#> 1298           20899       5973        NA dc83f7af-7b30-4c4a-9c93-f67bd8db954b
#> 1299           20775       5977        NA fc36fcb2-0125-42c4-a8b4-0a2ca9c15ef3
#> 1300           19514       4622        NA a8c96abf-a911-47a0-ac16-dd51a8782b5e
#> 1301           21254       6363        NA 019f8019-2a29-4131-b6fb-ea32568c1fc8
#> 1302           21528       6549        NA 967a20b1-e334-4ebb-a1b5-f46111ab7325
#> 1303           22283       7287        NA 32494eca-34f8-4d7f-88ee-e3319128e8e0
#> 1304           18992       4146        NA 046c51bc-319e-4fbb-9cf3-f6ab808b8edf
#> 1305           21697       6814        NA 131d3b1a-5746-499e-98ee-4bbf67cd377e
#> 1306           19816       4951        NA c2a7bd8a-d141-423a-8810-0988a59ff0b4
#> 1307           16837       2381        NA bd01d907-cd57-48cb-9136-5692a4764a20
#> 1308           19179       4326        NA dcf6b57b-6706-4d73-8242-2f71667be0e7
#> 1309           21730       6857        NA 214ae0bc-d6ed-4216-a154-f253c85bb90b
#> 1310           13444        981        NA d03aa6ca-ae90-44cb-954f-507213a73b22
#> 1311           22034       7298        NA 24c28a64-43b0-4855-a9e7-c46c7b30c15d
#> 1312           16981       2521        NA a64aaa83-6381-4b2c-84b2-daf2002c9060
#> 1313           18658       3838        NA 9bc107dc-1920-49db-b009-436d1a77955d
#> 1314           21594       6695        NA 3565220d-9fa0-497d-9fa1-e3bea7c302e8
#> 1315           16407       2091        NA ba905b34-8412-4553-9055-3460368cc608
#> 1316           22149       7147        NA 04401033-2785-4a87-b19a-312f45a53502
#> 1317           21934       7117        NA 92b059b3-6b1b-4db4-a535-ceba629176d1
#> 1318           20754       6014        NA a76eb878-71ee-418e-a46f-b35f6950aa95
#> 1319           20050       5508        NA bb5e3914-d941-4f05-8c45-bc9c520490ef
#> 1320           20204       5493        NA 04f6abef-834f-470e-9c15-8c0cc62fde4e
#> 1321           21020       5852        NA 02d1b3c3-f292-4174-89fa-9ecc6286adb0
#> 1322           20965       6145        NA 73ec5a10-dd68-448e-938f-25021cbc3004
#> 1323           16303       2022        NA d1e46e40-5e8c-4b5a-ae03-5d0093b98633
#> 1324           21919       7304        NA 79d98440-d152-49be-8259-ecec2a3afaa9
#> 1325           15228       1578        NA b200f413-296d-49f3-9ef2-f60e21c2f5fd
#> 1326           21225       6321        NA 70ce9a98-8dbf-4e16-a20d-f3cfb76e70d7
#> 1327           18919       4073        NA aaff3798-2b50-47a1-b629-5771454a45d7
#> 1328           16824       2368        NA 490c15eb-accc-4441-be7d-c7114e1e42fc
#> 1329           20189       5218        NA 3180d257-5f46-4a25-b50a-3311235bc8b3
#> 1330           18960       4114        NA cb43fb1e-9c65-4462-8c05-798d5885b845
#> 1331           22095       6958        NA 9e9d2934-a273-4e39-a413-d991d083297b
#> 1332           22185       7183        NA 17206178-c048-47ed-9f79-9f4c5efd607b
#> 1333           20934       6177        NA 757c55e1-2f3a-41d2-a211-16bf577a1586
#> 1334           22452       7477        NA 6e8d8647-209a-4985-a346-70197e587f10
#> 1335           22295       7301        NA 632a8382-27d6-45ae-b3d2-a37157e09ab7
#> 1336           18331       3558        NA ef7b5ce8-a929-46be-b9f3-328752c6d125
#> 1337           16215       1961        NA 61536454-3173-4ff2-b76f-f0bdf9e59fb8
#> 1338           13848       1058        NA 45fe5280-b366-4c8a-8f2e-99fa5a4ff631
#> 1339           13073        890        NA 65006631-45b1-4920-b0a3-f00277119f1e
#> 1340           16293       2014        NA 1d334dc2-7fa8-4d4b-8359-b4bfd50b758e
#> 1341           15374       1639        NA cb3b5df2-231e-4040-867e-5b6020457be8
#> 1342           21129       6292        NA 806f81d1-6d4b-465c-8a16-b1a767c30fb0
#> 1343           19073       4227        NA 4ceb866c-8eaf-49b5-9043-56228e43a2e5
#> 1344           19905       5033        NA aafe4b32-1a8f-4691-9702-3141c14ff5c8
#> 1345           21984       7023        NA 9b2d5497-738b-47bc-bd96-2c550b4649ee
#> 1346           16888       2432        NA 96c822e6-5484-476b-8ab0-64b3cff791ef
#> 1347           16364       2062        NA 919cdf12-3811-49d1-a7a5-65ff29a59434
#> 1348           20498       5576        NA 46689e7b-4a03-463b-9978-1496ab89313e
#> 1349           20096       5149        NA ff984603-4e6f-4095-a0c7-11dbf89cb189
#> 1350           21379       6551        NA fa443b6d-6d31-4030-9afa-b223f08b03d7
#> 1351           22296       7302        NA 877c9dd4-a60d-4b8a-865c-ab46fb2efefc
#> 1352           15917       1785        NA 996a0607-8046-46c2-97a0-b94ff9f5a1c8
#> 1353           16486       2143        NA 8b9bc551-66bb-4948-849f-c0471caaeb19
#> 1354           19880       5035        NA a1182eb3-26cb-4d34-b29a-df673973f08b
#> 1355            8243        330        NA cdf8908a-7092-4054-a49c-a9884211aaa1
#> 1356           22300       7307        NA edfc712a-54f7-4c34-a838-c50c14dbf7dc
#> 1357           18890       4046        NA 11cad59d-90dd-449c-a839-dddaba4fe16c
#> 1358            5834        233        NA 76d7615e-8eb5-4761-b6a6-1e895d01baf3
#> 1359            2405         89        NA f55053e4-4bfd-495d-981a-d62e3662f01b
#> 1360           21612       6730        NA c14f8faa-62db-4fb2-a7b1-d9b5998ce604
#> 1361           16031       1833        NA 90908a56-901b-466d-8689-943075da96fe
#> 1362           13418        973        NA e033ce15-9fc5-430b-90e2-90dfe52b21c1
#> 1363           20964       6178        NA a1a73c32-c409-4ee0-8a7b-0ae589db85c8
#> 1364           19109       4263        NA 13ade86a-20c7-48fe-9d18-b3bfc135f5e9
#> 1365           20500       5549        NA c2a19a09-74a2-4ace-8cc3-6dfb65070a70
#> 1366           14967       1408        NA 7735c02a-ee75-447c-86e6-6c2168500050
#> 1367           21769       6820        NA 8aa01565-4481-443a-9951-642c98ded113
#> 1368           19939       5329        NA 046b6d1f-cc56-486c-8d45-45b3a150b141
#> 1369           15226       1576        NA 8c8b7d6e-6ed8-4a10-8ae9-b50300bd766b
#> 1370           15647       1722        NA 776e4a24-08d7-46f4-a713-d384cd567f21
#> 1371           19596       4693        NA 725011ba-b505-4658-a2b1-5d41f941223e
#> 1372           15046       1464        NA 10bc7a15-0e66-4cdc-bec3-5a60b0b39159
#> 1373           22018       6883        NA a829e280-38b4-41fc-a46e-a5c8034dafd2
#> 1374           21998       7297        NA ed37f30a-de45-4af6-b7b5-5f218bf786ab
#> 1375           19877       5034        NA aa5741d8-cafa-4bac-bf36-85f92a7e995c
#> 1376           13905       1083        NA 8cf11162-ffe7-44ad-b5d6-8eef717b5ac2
#> 1377           22020       6859        NA 7df12cd9-5890-4a9d-b78d-0987de2cd804
#> 1378           20332       5277        NA cad43704-4231-4a72-b616-c66642103452
#> 1379           19410       4531        NA 52735659-a294-4f64-a7f4-3591450834e5
#> 1380           15048       1466        NA c3859e06-5f23-4302-a71b-04820a899d5f
#> 1381           19559       4660        NA 5cc0007b-4561-4ff2-8fa7-242bec47dc5a
#> 1382           19494       4605        NA fd25a007-dedb-42db-a31e-55dcd5e17967
#> 1383           20563       5465        NA cafbcd5f-8b40-444e-baec-a48f49d8c5f0
#> 1384           18047       3286        NA 46b16198-116f-4913-85db-2bc21462bd66
#> 1385           22235       7234        NA 7c9e5221-50be-4c58-89f9-aa61cf67ed25
#> 1386           18058       3297        NA b4e5a9af-6d00-4d51-9bb9-c7d5f69898df
#> 1387           16003       1817        NA 7d80b51f-1462-442e-aa7f-8c320a62deed
#> 1388           18974       4128        NA 35c970b1-cd2c-42b8-bcb6-e0b8dbe39423
#> 1389           21383       6665        NA a01ffd42-5fdb-42f8-95ab-157025e3fba8
#> 1390           19917       5310        NA 71d9c2a0-81ee-4788-86bb-7ae326396e73
#> 1391           20788       5917        NA fe6dc768-d576-476c-b150-53b85af2a1d1
#> 1392           19358       4489        NA 5727f7d5-35a6-4ad9-a96a-8408f8a84bd3
#> 1393           20150       5199        NA 9e55ec9a-ce18-4b4b-b69f-e2d82c219846
#> 1394           18082       3321        NA 01d8aee3-e1c4-4988-970a-8c0c2d08bd83
#> 1395           19361       4491        NA 11b9bcde-b2c8-412b-9689-4420182ca928
#> 1396           18164       3403        NA eb6c7e5d-987f-480d-9618-43f56e0b565f
#> 1397           19941       5304        NA ad9a0044-67f0-4303-ab38-a8459e32a9cb
#> 1398           17294       2826        NA 5b9acfe7-f166-4a55-85f6-a654799b08dd
#> 1399           20861       5914        NA 57bda6af-7324-4e96-a207-525501224c41
#> 1400           18577       3765        NA da918fe0-eb5d-42c7-b952-2f5da5197c20
#> 1401           17919       3160        NA ca53fda9-d20a-4bc7-b8dc-deef28355399
#> 1402           20570       5526        NA a40a9b55-7850-4572-8197-f57a5354f921
#> 1403           22335       7347        NA d014789f-6cc0-435b-bd18-9faaf12ffd6e
#> 1404           18979       4133        NA 8c824157-eb33-4378-bf19-6c738a186ceb
#> 1405           21131       6301        NA 4d383922-53ab-48f8-bb8a-29176ea3ffbc
#> 1406           21937       6968        NA c72cb618-fb6b-4327-8ced-91088c936c81
#> 1407           21935       7046        NA 4c577f09-a082-43f8-b249-c821350302dc
#> 1408           22337       7349        NA 22666f2a-8d3f-45ed-9cc6-3349f838291d
#> 1409           18963       4117        NA 7d1d8954-3836-4bbc-9d70-cd85e57c7c69
#> 1410           18555       3743        NA ed54f1f3-65b8-4b54-8a64-81858ca9f50f
#> 1411           22332       7344        NA d92a275a-a102-4768-965b-60fffe155288
#> 1412           14397       1197        NA 30119d63-584c-4fd6-95aa-67b7af4998f5
#> 1413           22329       7341        NA cddaa0c5-2d55-47cf-93aa-cfa344604710
#> 1414           16618       2227        NA 8bb5c7ef-e7be-4015-8874-2f0982286acc
#> 1415           17979       3218        NA 3f44e069-a9c7-40dc-bfa9-cd403ee9cdbd
#> 1416           22330       7342        NA 073d1bf8-7a0e-4c2f-b890-dbbd47978737
#> 1417           21298       6390        NA 7e4f9b27-edc4-4f5c-b77a-81604220a454
#> 1418           19984       5072        NA 5fb654f3-cc56-42ab-842a-5eb8c3cf8999
#> 1419           20527       5429        NA ff826814-d167-4337-a9a5-9d0ac09ccd6e
#> 1420           19895       5014        NA d24f72af-88e3-46d0-b132-1fe77e5c893b
#> 1421           20747       5904        NA b7a0f6d0-af4f-4134-8382-c59c4283576e
#> 1422           19851       4989        NA 9290324b-eb17-423b-8019-e5d26839fd45
#> 1423           20533       5454        NA 9e885643-3f46-49f4-94e9-714a3b1f586b
#> 1424           14740       1287        NA 5514afb6-bd43-49a8-9bf7-b8baaaecdabe
#> 1425           22123       7095        NA 7f97446b-4e10-4b1d-b68c-9b1bc7f1c85f
#> 1426           20769       6083        NA 2b90e091-ef78-4753-93eb-0acf3632c206
#> 1427           19926       5300        NA 13a9ad48-6886-4390-b2d8-9c79cda111d1
#> 1428           21709       6764        NA 34de33c5-fc2c-4818-aa03-294e28cbcfa8
#> 1429           21332       6353        NA d0412c6f-ac97-420c-a9e2-1ca587c480b2
#> 1430           19987       5075        NA eacc232b-701d-4a67-9ce5-61b9b931fd42
#> 1431           17935       3174        NA 13c4b449-65e4-4a3e-9152-85e9cbb2b8c6
#> 1432           19986       5074        NA c16fcef9-ecdb-4696-9c92-5d5b959aafeb
#> 1433           20068       5307        NA a4ce9a04-668a-4120-938b-3f05983cc0f3
#> 1434           20808       6076        NA 210bfe87-1c9c-48c3-951c-81aef4b2c763
#> 1435           19016       4170        NA 1d05c82f-81cd-4fad-84f5-8be990c5258d
#> 1436           22334       7346        NA 49abd11f-fe2b-4d15-99ed-f316d2ec67e1
#> 1437           21903       6837        NA a0ebc174-02ad-4bf4-8c0f-517d04a29a95
#> 1438           20911       5851        NA 9c34c6d3-29c9-4f89-b2b7-e01f0fef0f4a
#> 1439           20030       5306        NA 7874842b-9b5f-4307-81cd-37f48e981e9f
#> 1440           22013       7263        NA 3b676675-0ed6-4892-bd6e-e03cd92596f2
#> 1441           19116       4270        NA d3b0e29f-d97c-4fc4-ae29-c5266686e39d
#> 1442           13388        965        NA 3128aa52-4c62-4096-bf31-bef0fe8d6abc
#> 1443           20764       5981        NA 724c3e97-bd2a-4d48-850e-352829e51708
#> 1444           19985       5073        NA 21c60b9f-98f3-4b6f-8911-89aba2622347
#> 1445           22292       7296        NA 61980614-1609-4b68-b11f-05aa30fefb89
#> 1446           14409       1202        NA 380435a9-1833-4381-a12b-498a43732798
#> 1447           20703       5806        NA 2ab1b694-1013-4661-85d4-55415d3b147f
#> 1448           21562       6595        NA a577ef90-17c3-4dbf-b6b8-e054f21a778d
#> 1449           16245       1979        NA 6723249c-5fb5-4b0a-9373-cb59cdc99ec8
#> 1450           21819       7335        NA da837572-0558-4946-9af4-aeb11582cca8
#> 1451           17922       3163        NA aba8f925-ffbf-4654-bfa7-a25d3d237494
#> 1452           21688       6938        NA 74980532-8158-4b56-91db-5053878737b4
#> 1453           21855       6988        NA 748d5fdf-8a06-4cc1-a8b1-257f4377236a
#> 1454           21839       7088        NA 70110b01-060d-443d-b799-5d4edc9272de
#> 1455           20798       5916        NA 380c4d9b-d4c8-456c-ba50-25519edde899
#> 1456           17053       2588        NA 0e7e6cbb-0e88-4a74-b457-1753851e37f3
#> 1457           20919       5882        NA 1cccc54a-c168-4359-bfbc-30556db0ca73
#> 1458           21588       6687        NA e22127ac-1bc7-4f68-bc34-6e20f82a4c24
#> 1459           21922       7036        NA b222de39-0a5e-4bbe-b239-083a500194bb
#> 1460           16818       2362        NA ec810fdb-ae6f-49ad-9538-31d1e6dfa578
#> 1461           21330       6426        NA 8ef99bbe-602c-4796-aa04-833f357991ba
#> 1462           21983       6944        NA 14ab97c3-4ace-4bb6-99de-3b22dcf610fe
#> 1463            5099        202        NA f1ce3e7d-6afc-4db4-94f0-475bd63507b3
#> 1464           20752       5948        NA 65b9a754-40b9-446b-b9c0-b2dee46ba3f6
#> 1465           18935       4089        NA ebeceb00-57e0-4b74-9cf7-853da2afed18
#> 1466           21678       6926        NA 39cb1520-dda8-4167-95c4-4947c8383bc4
#> 1467           18032       3271        NA 0df7912d-9e81-47ea-b4f7-d04986df4ee8
#> 1468           21032       6081        NA b5e95ece-3b71-439b-b7b4-ae102f9e7c08
#> 1469           19165       4314        NA 6414998b-5831-44aa-8bd8-39e42a323c2c
#> 1470           14871       1352        NA 618bedee-9259-4536-b0ff-fec98d2a20de
#> 1471           21739       6853        NA 8e1285f7-6e4c-41e4-aac9-92e09f9f32b2
#> 1472           21725       7009        NA 9a2cd41e-a6e8-42d6-aad4-65c42939d733
#> 1473           22327       7339        NA ccf4746d-903a-4d51-8874-30953a304a84
#> 1474           18882       4039        NA 2806e915-c46f-492f-8a29-71d3a85e5620
#> 1475           19017       4171        NA 682eda79-0026-4ad8-8f45-a61ce42cb908
#> 1476           21295       6387        NA bbc981ff-556b-4346-abea-f6efc0f94001
#> 1477           13698       1023        NA 041c36ad-0d7d-4ed1-8157-95092b3027a4
#> 1478           18087       3326        NA 3e061410-a4e0-4e16-8043-2f63842410a6
#> 1479           20721       5827        NA 68b3f7e5-cc33-41e1-833c-8f48cb70bf72
#> 1480           20434       5416        NA e11ce848-c797-460b-bb46-6b9ceae48542
#> 1481           19560       4661        NA 86099301-67d0-4370-8e42-d14f34bbbb91
#> 1482           14285       1175        NA a278c39e-7d4d-48c2-8145-2f8ad882ebeb
#> 1483           13018        869        NA de185684-3a02-4e63-b2b1-405e562b3a77
#> 1484           20733       5881        NA 279be739-bfd5-47aa-8302-fc58bcba37d5
#> 1485           15306       1620        NA e005ee7b-3fb4-4219-8de3-a9b0302cb2dc
#> 1486           22323       7331        NA ffe9639a-7ce2-436a-a291-868e66e9dab8
#> 1487           22325       7333        NA 323db6a2-c9bd-4598-920b-480c102902d3
#> 1488           19837       4971        NA 01c52412-7257-4213-b8b3-effa7c5dd5c7
#> 1489           22316       7324        NA ba760d2d-a35a-4f9c-912d-05217aff53ab
#> 1490           17915       3156        NA 1ce88c74-024e-4288-94ee-5dca10362153
#> 1491           14128       1141        NA 2cae991f-878e-434e-9f76-fad263fad23c
#> 1492           19117       4271        NA f89332c7-decb-438a-bf7c-220d6c28e098
#> 1493           22317       7325        NA bab100c6-1a6c-4411-9286-f719244f5d35
#> 1494           19859       5061        NA 40941261-cfd0-4e8d-b895-21fb7e20b407
#> 1495           20967       6129        NA 9da6119d-b135-4b90-9f9d-7d08ab00b15d
#> 1496           22319       7327        NA 39fd7f0b-4be2-4fe4-b228-65c9e5442552
#> 1497           19881       5063        NA c82a3f67-90b7-4cc8-ac3b-e6cf469cc541
#> 1498           21130       6300        NA 6ee96e28-60b0-4e30-b014-6962e7d1c3db
#> 1499           18968       4122        NA 92c2dfb2-6929-4192-94cb-9ae6845dd2f6
#> 1500           19983       5104        NA b04382c6-7138-4dd4-8ad8-3e10ce8403aa
#> 1501           22315       7323        NA 2154a63e-279e-42bc-b6f9-5a849cc02cfc
#> 1502           16433       2109        NA a2e26ea7-db98-4611-8947-692b0cedb541
#> 1503           16563       2194        NA 96341b4d-152a-4020-b68a-3ff93e1baba5
#> 1504           18940       4094        NA 0b699477-6801-4154-ad51-e8352a3bdac4
#> 1505           20499       5577        NA 65bfa813-7bcb-461e-8716-7072e4705ad1
#> 1506           20144       5230        NA 375b0d7f-8d03-4111-8c1b-62907f0326a1
#> 1507           20968       6141        NA d468dfe5-8ad2-4c8b-b7ba-0962316a2156
#> 1508           19872       5016        NA c3e579cc-6693-47c4-91a9-b688935ae048
#> 1509           19940       5348        NA c6303f3b-9c18-4afe-b0bf-d8270ca9db21
#> 1510           21985       6811        NA 79bf0ca5-a8db-4c39-a40b-67674ccb60d0
#> 1511           18015       3254        NA c44b31cd-0480-4aa0-b500-12e9ba0765ac
#> 1512           16809       2353        NA 9fc6e49f-c863-419d-9dca-8f0da3f3c9c7
#> 1513           22321       7329        NA ae372a9d-6f85-4e37-a910-47fd77483ebc
#> 1514           20750       5978        NA c5e24b59-cafa-4174-b5dc-e02f5934fb2d
#> 1515           19441       4558        NA 1d1d59bc-ed91-4ed6-adf3-f40d0e296554
#> 1516           21102       6204        NA 3a212660-0028-47dd-8ef2-362edd1ea2b2
#> 1517           11302        579        NA 6c48b2a7-924e-43ec-bcd9-f1cda06b2332
#> 1518           14851       1334        NA fc28047a-18cf-4431-9e1b-317db75c4495
#> 1519           22318       7326        NA e735b2ad-8c89-450b-8241-3f602016b897
#> 1520           18151       3390        NA d57ef862-8cb9-4f27-a294-f86eb26b6cce
#> 1521           17118       2650        NA 2b129eab-b967-4d0d-bc6e-28c0781bcdd3
#> 1522           12831        827        NA 7f3ef024-eb34-46af-8b9e-544cdf09378f
#> 1523           20953       6185        NA af291d43-a51f-44ce-b8ac-430ec68c78c8
#> 1524           21681       6797        NA f0a8f8e3-b9e9-46ed-85e4-eec6452a8a44
#> 1525           21776       7045        NA 62542e04-3c44-4b75-8165-be674c8be75f
#> 1526           19562       4663        NA e5b8c439-a48a-4f83-b63b-1a4d30e04cd3
#> 1527           21826       7316        NA 06f3e98d-7d73-4007-b673-4a74ed72bda3
#> 1528           18764       3934        NA 5a9401fc-e43e-43e8-9e63-dadecb12491b
#> 1529           19824       4994        NA c6728282-0648-4926-a07c-be64f3ff5e0d
#> 1530           22310       7318        NA 538cf938-8f65-435f-b8fd-2856ce5c4e6d
#> 1531           20064       5131        NA e6c3f896-0223-4fc2-be09-c959ea4a475c
#> 1532           21939       7069        NA f3a7ab39-ead2-4dbf-b760-d652b8a26853
#> 1533           15981       1806        NA 2d28c7f5-21e8-40cb-afb4-a8391a5923e7
#> 1534           19026       4180        NA 18f174c9-a956-4c14-bd23-9e799fef6dc7
#> 1535           19118       4272        NA ec7404cc-ff2c-4afb-aebc-3cde1322d5de
#> 1536           21110       6213        NA 42931961-6deb-4e33-bbe9-bf8f77d29da0
#> 1537           19486       4598        NA 3d169c3f-93fe-44b5-8495-681241f285bb
#> 1538           11385        596        NA 2f80e90d-dbff-4395-81c9-4e61c247d0f1
#> 1539           21162       6458        NA 850b8283-0a1d-4a47-8586-8398df905c58
#> 1540           17975       3214        NA 705899da-3c20-4bc3-b5d0-2e6e40655131
#> 1541           20905       6074        NA 4f246e92-3d21-450f-977a-dc16892c7238
#> 1542           13016        868        NA 6ef43c53-53d7-4b0f-ad99-17664d663ae8
#> 1543           21158       6233        NA 21a33144-63ee-4125-ac44-3fc911a39d50
#> 1544           18262       3496        NA 5cb0bf9c-03b4-4201-97c5-a59c6db50841
#> 1545           22433       7455        NA e4edfc2e-c6f7-42fc-b8b1-8e5282457000
#> 1546           20838       6063        NA 064c4eda-1b10-40ac-a9d2-66caf76a213a
#> 1547           21178       6247        NA 8346e196-ce56-4cfd-8438-f3c39131b327
#> 1548           15076       1479        NA 5f424505-f29f-433c-b3f2-1a143a04a010
#> 1549           21758       6866        NA a42da2a1-42c0-4d45-85f0-ab5c9af37e6f
#> 1550           22311       7319        NA 2b0e3931-07d2-4b03-9b28-489258465ac2
#> 1551           21718       6913        NA 4c449f2b-a566-4c9c-882c-a70991d1aa54
#> 1552           21448       6421        NA ae9495b2-4c62-4e14-8e43-beb53e1ae28a
#> 1553           18914       4068        NA 12f27311-7cd6-4ca5-ba7d-571e9de5e1eb
#> 1554           19328       4462        NA 03611d74-221a-4436-913f-d23f95542598
#> 1555           13037        879        NA 1f0d9995-7ace-44ab-8d61-2f3924d5b75d
#> 1556           20825       6004        NA 20a45a8e-a917-439d-ba28-33b84ab2401e
#> 1557           21239       6333        NA e94ac14d-0122-4dc8-ad20-b71226cb8cfe
#> 1558           22089       6896        NA 23525664-b547-413b-9221-b09091b90edf
#> 1559           16625       2230        NA 99d9eebd-808f-4573-b39b-b9fef4ce5e98
#> 1560           18095       3334        NA 89f84d50-39b0-4a76-a004-d18b1c255413
#> 1561           18007       3246        NA cbce4c7c-b22f-48de-b653-cdc19f9a6320
#> 1562           22045       6840        NA fe85708b-4644-4f77-ba2b-5726ff83439a
#> 1563           19284       4424        NA 3390c94a-f1f2-4be0-9787-5cc9fd8c64f7
#> 1564           20887       5853        NA c5e92aff-ce1e-4ce0-b838-6149f8ce875f
#> 1565           20833       5951        NA 079575a5-029c-4960-bd45-66cd63f659fb
#> 1566           16457       2122        NA 7ec05721-dba9-4e27-8cf0-92d626754624
#> 1567           22413       7434        NA 5a90f110-9291-4688-84d5-2730898ba0bb
#> 1568           22303       7311        NA 3f95afdc-2140-424b-8250-7d4e273c2efc
#> 1569           20642       5736        NA c281fdc7-76a9-4734-a13d-19ad354c67db
#> 1570           17899       3144        NA 3cd103cf-cc2e-458e-94bc-a7a7ce1632c0
#> 1571           17995       3234        NA ed2317f2-1cc5-4a84-a46e-7423a9a1c730
#> 1572           19492       4603        NA 27488f5f-e895-499b-9e33-fddd3d5d603c
#> 1573           17747       3040        NA 9061a751-bfd4-41f5-a585-9f3b20708b94
#> 1574           18915       4069        NA dcc7a0e1-05e3-407f-84e1-fdedf8eecbbf
#> 1575           16265       1994        NA df08d4a5-2979-469d-9775-ed34fc3f43ee
#> 1576           20757       5842        NA 108759bf-8c78-41c6-a409-b87c63985c21
#> 1577           19896       5067        NA acc85868-4848-4de3-8e6f-5427e93c8d80
#> 1578           21015       5991        NA 3ae55cda-ad32-46c5-bde7-470755f37f3a
#> 1579           21128       6272        NA 461b76db-dbf6-44c1-8cfa-a3c3edb100fd
#> 1580           15137       1526        NA 3258dbca-9194-4fd7-bc2b-8440c73d0d9c
#> 1581           19921       5002        NA 81b159d5-86ac-4130-a87d-dbd5e0b211b3
#> 1582           15090       1492        NA 9d53adf2-4c3f-48a4-b7f8-6bb7f207c1f8
#> 1583           20346       5470        NA 0cd46b5f-5397-4947-9331-8d3420af7852
#> 1584           17997       3236        NA 54f13aa1-4a2f-46a3-99ef-743c1d3ee234
#> 1585           20819       6109        NA 7ade135c-0760-4548-b7d9-cf1174e2be33
#> 1586           17014       2554        NA 9294afec-7804-41ba-b948-51a213705abb
#> 1587           16320       2034        NA 1a1830c2-9717-4af0-82f0-7d7b254764f1
#> 1588           11664        647        NA 58b30f9c-384f-4e36-9e79-d4442ce8bb31
#> 1589           21012       6110        NA c34c65c7-541a-4f33-8473-beb11e3b43ad
#> 1590           22031       6875        NA 55fe8587-9190-4ad9-8517-fcb330341ed3
#> 1591           22307       7314        NA 2bd96d27-08b2-42b3-ad89-b01442c07fe2
#> 1592           19989       5095        NA 7bb70550-c28a-4e47-9a13-cc0c0fef8b38
#> 1593           16769       2313        NA d1d46ded-4585-4760-81b4-62b80d31a3b0
#> 1594           19310       4449        NA 7c1a8ecd-e3e5-4123-b89f-36e58b99126f
#> 1595           18035       3274        NA 6e16ec27-2cd9-49b6-848a-df17d654683d
#> 1596           21932       6990        NA b9f364a0-5553-4475-8388-6dfd1d7a2e62
#> 1597           18936       4090        NA 8aad56a2-0589-4ebc-99f8-b07c5023fd70
#> 1598           18559       3747        NA 385953af-6b16-42b8-9a58-23fd8d50d935
#> 1599           14167       1148        NA cdbaf089-9c7e-418f-829e-d903c28b2628
#> 1600           19051       4205        NA d8f5b9b5-4cbf-4817-969f-99e638313383
#> 1601           19567       4668        NA 4ca6d7fd-43f7-4c0d-8992-aa28d91710e6
#> 1602           20249       5461        NA 378df3b9-0a5c-4d68-a173-79bc0df07a66
#> 1603           20469       5393        NA 8b6a4108-ccfa-4af4-a37e-c617d5793de7
#> 1604           21516       6555        NA 36f93677-a95b-4362-ac5f-6722f5c05b6d
#> 1605           16311       2028        NA 9f026fc0-4449-4dc5-a226-2e2830619381
#> 1606           19475       4588        NA e23505d9-b677-4a86-ba17-564c165a6e66
#> 1607           19029       4183        NA 4e4ba1f9-35c6-4e41-85f5-d8f12d32f459
#> 1608           16763       2307        NA 7c16c04c-04de-41f3-ac16-ad6a9435e3f7
#> 1609           17970       3209        NA cd705357-f282-4cbf-8f11-391618d981c3
#> 1610           20824       5850        NA 61694ab9-b099-408e-b48d-6a643dd069ec
#> 1611           18690       3868        NA c78c299b-7c73-40fc-9155-2ede7f9849c7
#> 1612           15126       1517        NA 62d4e94c-443f-44ed-9404-c6d6bdd9aa64
#> 1613           15576       1700        NA 30a193de-13a3-4e22-a1a5-ce240f498280
#> 1614           19869       5050        NA a494c7f4-3d8a-4a2c-ae0c-95dd6855f719
#> 1615           20731       5860        NA 26b6ac3e-facf-48eb-ae5b-afd30b2544b2
#> 1616           19888       5065        NA 47e64968-acea-454d-a95f-107a90960aab
#> 1617           22471       7497        NA eac6612e-0eab-4a65-9057-60fc95d9ca3a
#> 1618           17003       2543        NA 173831a7-d33d-4d2a-8dd9-4e36182e23cc
#> 1619           20137       5202        NA c0561c0e-ca00-48bf-a38b-2636451c1640
#> 1620           19840       4986        NA e4085e9f-ab3b-4dd6-9cb0-bf6f2bd428fd
#> 1621           11289        578        NA f28f45f8-a617-4caa-8332-ccfff0dddc07
#> 1622           21719       7308        NA bd30c0ca-196e-4f7d-b37d-d4d52dd40b62
#> 1623           16954       2495        NA c257b2e6-dfc9-45c8-b30c-a497f2ce82a2
#> 1624           16964       2505        NA 14c97c9f-26e8-4944-9299-f90de6aeada3
#> 1625             722         23        NA e38c9b1b-7c51-48a2-ac1d-a752502e8930
#> 1626           15640       1718        NA d3fab07b-f02a-433d-9612-cb0a751f324d
#> 1627           20884       5985        NA 9c3a67fd-5c6e-4689-9e08-9ff6d4db6c9a
#> 1628           20388       5295        NA 191847bd-6b12-4824-a832-29cddfffb046
#> 1629           19131       4285        NA d0879c68-6387-4edc-b55b-07e128546ae7
#> 1630           21694       6789        NA 8a453858-7309-49ae-b8eb-de691847393f
#> 1631           20079       5139        NA 35341f6c-bca9-427b-a8eb-f9a24a334184
#> 1632           17048       2583        NA a6fe5f18-d78d-4a56-aea2-ef4bed7e647a
#> 1633           18926       4080        NA a28f7368-0306-4d20-855f-285a1a09c09c
#> 1634           18257       3492        NA 577c7e9d-e647-4c22-9371-e51d282f5cfd
#> 1635           20924       5955        NA 34c523c7-bc58-49f0-a9cc-f9edd91fe00f
#> 1636           19811       4942        NA b2a9b0d4-b5dd-4d6c-9ad3-8491502edb51
#> 1637           21736       6870        NA 5abee27b-2710-46ed-b110-fece5c2654e8
#> 1638           16781       2325        NA cfb0ff68-51cb-4dad-ba81-f9e019a93a91
#> 1639           21072       6032        NA fcae1e29-5ca2-463e-92a6-0be893f5eb4a
#> 1640           19377       4505        NA abedbff7-21c5-415b-b890-259b5bebf400
#> 1641           21271       6456        NA efe7d321-9ce8-4a43-9c00-999eda83d73a
#> 1642           21065       5898        NA 6d96bf47-e8c7-4683-8291-74dc426a38cb
#> 1643           18137       3376        NA 7830196e-cdca-4b86-bee2-eae97de2ee26
#> 1644           19557       4658        NA 8d56094a-7aaa-45fd-bfb1-348f2a994d99
#> 1645           16788       2332        NA 64b1bda8-8c0d-4c17-b8a9-6b5ef292c924
#> 1646           17008       2548        NA 76392d70-bbcb-429c-82df-853b72a926de
#> 1647           22072       6817        NA b4b346b6-6175-407c-a6cd-103368a1609f
#> 1648           21192       6258        NA 03e6a751-5206-4f9e-8ffa-f92672f7c159
#> 1649           17976       3215        NA e6bcb4f1-c2c8-4dd9-b826-af01182875f2
#> 1650           16905       2448        NA 7f32c3e6-113f-4922-b51d-a1a5a1d43bcf
#> 1651           21927       6911        NA f0c60c6e-513b-40df-9794-d555ed59202f
#> 1652           21917       6929        NA 73b6e69a-516b-4b95-9edd-0a8959500956
#> 1653           18128       3367        NA a6493c08-f70e-4aef-ab07-914625b9c047
#> 1654           22064       6974        NA f1eaad31-8784-4db3-b52d-ea0fe22761dd
#> 1655           20665       5759        NA f8f7c003-1c6d-4715-bef7-5238bdb600dd
#> 1656           22362       7374        NA 6750320a-1b60-4bf5-aad6-7c605a88d5c6
#> 1657           20051       5297        NA c85c0efc-3391-4a8e-b8a4-370b32fd09ce
#> 1658           21878       6861        NA 67d2e7dd-e937-49d5-bf37-0efed947609f
#> 1659           22344       7356        NA 160934d8-6fac-4a5f-8121-d8bca301d1b4
#> 1660           20983       6120        NA 6c640668-de81-49c4-a0da-e367e1747923
#> 1661           17958       3197        NA 2300fe3b-c81f-4786-ae0c-0c229644239d
#> 1662           21892       6830        NA 14766908-6ec1-461b-b6fa-e874287a6517
#> 1663           20854       5945        NA c03646a8-503b-49a9-8251-b9c44f13a2ff
#> 1664           21098       6197        NA 890deaca-e542-4565-95f7-b0bacc9c46ba
#> 1665           21868       6999        NA e9746156-842c-475e-806d-4bcb26032e3b
#> 1666           21412       6534        NA f24fb71b-8799-48d8-aa5c-510a40cfaeed
#> 1667           21132       6298        NA ee3d7a82-d3e0-4d12-b2f8-116aefdb7cb6
#> 1668           19240       4383        NA 478f29fe-7f2e-48a0-b086-b8c509621689
#> 1669           16770       2314        NA dfdbe925-912e-4eca-9a71-e38cd3c88479
#> 1670           22037       6971        NA 1fcb4a37-ca9d-44ef-8f2e-7d4be04c32ea
#> 1671           20033       5119        NA 5ffb654f-0de5-424b-aa2f-ad511deb5b51
#> 1672           20971       6183        NA 7b47d190-168b-44bc-bb91-a688fe28f768
#> 1673           17943       3182        NA 89919ab7-0fa2-4fbc-b018-5f2d3e3c21e3
#> 1674           18991       4145        NA 28b0d2fd-18d0-442e-a9ec-70b2f8065ff2
#> 1675           18124       3363        NA bcbbd7af-5a61-41f2-bae6-1e034755e7ef
#> 1676           19538       4643        NA d3ba3eca-c71d-449b-b5f1-7397a9cab3f1
#> 1677           16467       2130        NA 0ad845ff-44e8-4576-bc91-61b557e06f05
#> 1678           20724       5830        NA 3b4c4797-d35d-4885-93a3-06d85242b522
#> 1679           22463       7489        NA f21aecce-d8e5-4a11-9ade-9307e55952a2
#> 1680           19882       5056        NA 53e7c80e-8bf9-4ab2-ab3e-80cb556ea784
#> 1681           18130       3369        NA f6d7cf0f-72d2-473f-a44b-4a253587ca0f
#> 1682           19208       4352        NA 93d10760-436e-4638-b506-a5c655ed5365
#> 1683           22472       7498        NA 1f3d0803-dad7-42dd-b149-da0c65f5a87e
#> 1684           21988       7043        NA 1b3524b6-bc24-4d9a-947f-ebda67be1c41
#> 1685           22062       6831        NA 9666a6bd-4321-4acd-823e-b872943a436e
#> 1686           19053       4207        NA 6e6dcc9c-06f5-40fd-9134-d0afd0e349d8
#> 1687           19249       4390        NA 9164fac3-2540-4f64-ba29-96fb0ce1c7eb
#> 1688           18108       3347        NA bfd0c6e3-dc98-4280-bd6a-f82902c0f46b
#> 1689           21677       6768        NA 26ad9c27-de38-495e-913c-6fb2428e76d3
#> 1690           22160       7159        NA 7debccec-8ec2-443a-b4a7-a52f14464883
#> 1691            8283        333        NA 0742d2ea-1cf2-49a6-a150-77ba6e034d8c
#> 1692           21211       6311        NA 5c424ecf-07c8-471e-a400-8d5f834af2e0
#> 1693           21843       6918        NA 0dbbd211-0372-4751-9751-e4df4ab1f8eb
#> 1694           19319       4455        NA 6249d2c0-75dc-4586-943b-1c103a9eb419
#> 1695           20768       5980        NA cad49098-1523-4e52-9f50-caa3423e1bb6
#> 1696           21962       7109        NA 73236a66-ba10-44a6-b12f-2ca13cad33b4
#> 1697           18061       3300        NA c7b7d27f-97c3-4c12-95c4-36205175c959
#> 1698           20935       6167        NA 38abfa4e-ad62-4392-89a0-ac2a012efd87
#> 1699           21743       6909        NA bd783f2e-b931-4d3e-ab71-60fa1431f598
#> 1700           18161       3400        NA 94001c44-9eea-4d2b-a766-079ddcb2e8b0
#> 1701           16808       2352        NA 30b045f1-b8e4-4ae9-b062-5181847b508c
#> 1702           21943       7041        NA c7ebe543-7fec-4123-bc6e-b0d509af22a2
#> 1703           22462       7488        NA 3d861092-3d64-4663-bf91-aa1f15e4e3a6
#> 1704           19011       4165        NA 473a6858-7c99-4521-982b-fcbaacc00b74
#> 1705           21949       6821        NA 412be3f1-210a-44b9-828c-d35cc6a1119c
#> 1706           17566       3017        NA d4b7a6b6-9ad3-4bc9-b781-dc09e9a5ba01
#> 1707           19943       5008        NA 7e42a22a-c47b-4387-aeeb-2cc2e76dc1d8
#> 1708           18931       4085        NA 87171077-4c1c-4b67-b159-2cc6242988e0
#> 1709           21531       6529        NA 002adaa8-5dc2-4b4b-95bc-53a38dce3849
#> 1710           19853       4993        NA 1012cbe0-7eba-4169-bfca-183a0204e1a7
#> 1711           16308       2025        NA 2958ea86-e2dc-4719-93e5-cc9d093ca963
#> 1712           22339       7351        NA 521f597a-0709-4cc4-afab-72d93eccb5fc
#> 1713           19023       4177        NA 93cb5790-1012-4c42-bccb-5748c27ba7d6
#> 1714           18103       3342        NA 5de11f0b-8da9-42ba-9a93-db7f0a58543b
#> 1715           16775       2319        NA e9ee9209-dd8f-4e4a-be3c-407756a2749c
#> 1716           16253       1984        NA 10952a8e-9da1-447b-a016-c699db00c5f0
#> 1717           19568       4669        NA ff05729b-558a-494c-b075-abdacb639279
#> 1718           19098       4252        NA 73af6932-2701-470e-9668-02d6cb35a5c9
#> 1719           20988       6148        NA 497758de-5f0b-481f-8c68-7aa5e21df322
#> 1720           21038       5855        NA acdd0b8b-d840-44ac-9dfa-05fe8baabe09
#> 1721           17435       2956        NA ec606880-b9d9-4765-b70d-7f249e06c2aa
#> 1722           22048       6871        NA c10aceb5-abcc-4e42-a399-cce8e5832671
#> 1723           19847       4982        NA 1f181c47-ad84-4758-a295-4c4f5c56120f
#> 1724           22053       6961        NA ef3475dd-30bc-4f1a-9c44-4a8ecaca476e
#> 1725           22058       6842        NA 6c606a72-1b9e-43e6-9fdf-2cfa5fd5a0e4
#> 1726           20164       5214        NA 27f3694c-a9a1-4c64-ab84-45bdea45d44e
#> 1727           21238       6332        NA f4a5d12e-9169-4601-85e6-79bc99eab455
#> 1728           19422       4543        NA 5aace1be-df36-4efc-92d9-b4bca2314eb2
#> 1729           20711       5815        NA 351963c7-bdc1-4966-bed2-845ccddfdfbf
#> 1730           18980       4134        NA ecd53958-08c3-4ef0-8984-ec68d58deec1
#> 1731           21210       6310        NA 588d8e04-98dc-478a-b3ba-9e3cb58d9afc
#> 1732           21036       5921        NA 96fdd2ed-d54e-40f5-beb1-40c5b3fd4bfb
#> 1733           13868       1066        NA 2b9494e4-953a-4aac-afe7-edd2d7be27da
#> 1734           17187       2719        NA a7413fb5-8d05-457f-a97f-504bee73a910
#> 1735           17488       2983        NA dfa638bd-7c3a-4269-8b39-b9e6b2148a41
#> 1736           22353       7366        NA e11eff18-b567-47c2-99e6-f4c6bc3d10c3
#> 1737           21929       6901        NA e135eaa4-1688-487a-a924-4d83b16977df
#> 1738           22453       7478        NA fd7b9398-15b3-4967-8758-8743006dd6ff
#> 1739           19102       4256        NA eb2c9e63-3a33-441e-aa95-462eaf97a371
#> 1740           16849       2393        NA ba7fe857-df63-4aed-803a-80993b157be4
#> 1741           19911       5333        NA 9b8e379d-2362-415f-b51d-ec3b8bedda93
#> 1742           18426       3637        NA fdc01035-18e4-4928-808f-26ee414948d4
#> 1743           20450       5636        NA 3bdd0681-066b-477f-bca9-6b38bad6d8e9
#> 1744           21893       6874        NA 3a10616d-e6bd-4328-ac4d-db423b0abbdb
#> 1745           21909       6868        NA 68356887-b59e-4210-9726-828ea7f83928
#> 1746           21894       6858        NA ce8b21f7-6f93-40e6-8068-0432e10d855f
#> 1747           20162       5212        NA 1146776b-e591-4f81-8a56-459c1845bead
#> 1748           19019       4173        NA 016a6d56-0b72-490e-8dae-41b5d3d2db63
#> 1749           18652       3832        NA 971fc9e5-bebb-4a2c-a822-8c52f92a3d07
#> 1750           21018       6114        NA e33df0c0-1f12-450a-a178-b7e5478c479e
#> 1751           20930       5887        NA 33f18199-2fa9-4871-b324-2547aeb4ff1a
#> 1752           16061       1852        NA a60226b6-cc0e-45bd-b31c-097242ae07f7
#> 1753           21993       6922        NA c410eacd-2692-41cd-97c4-4d7a0eaf1dd5
#> 1754           22155       7153        NA a78d3d14-3cc9-4adf-96fe-dc7660cb4c2d
#> 1755           13109        899        NA beb64618-614c-49f7-a3aa-c0c75b7839ea
#> 1756           18231       3467        NA 63e63ae6-5a88-4b04-a3a0-5e0cb0404f95
#> 1757           20325       5272        NA a2aab80d-174c-4639-beac-e2b70bb3625f
#> 1758           20944       6176        NA 14d47b4c-ff6b-4718-8a6e-ab9b3b82f7d0
#> 1759           19225       4368        NA 2c33ff53-6c16-46b5-a3b0-20db70fe430a
#> 1760           16806       2350        NA b345f3db-d5aa-43ba-9f17-914c54864236
#> 1761           22352       7364        NA 299cb403-1cea-48da-baaa-b55510a6b78b
#> 1762           19018       4172        NA 1cf282eb-ab14-4d2d-8a0d-702ddd83cfcc
#> 1763           19273       4413        NA bfe704fc-266d-4f6a-afbf-c903b5934e23
#> 1764           21011       5979        NA 598a8d06-43b3-40f2-b4e1-59e06baddf83
#> 1765           16496       2151        NA 23616a22-8266-4b0c-b0b9-5f8187178168
#> 1766           21040       5954        NA cd9b9d93-4368-4495-803e-f5d2524c8468
#> 1767           17157       2689        NA a5c2a8bd-7935-4819-800f-32e3eefe4f61
#> 1768           21994       6941        NA f070d4ef-1904-47f2-87d3-b9e2788789ed
#> 1769           21144       6305        NA f31cee33-d73f-40e5-b3e1-78162a1b27ca
#> 1770           15646       1721        NA 740ac0fa-f4b9-4944-9b7a-78b97c5dd1cd
#> 1771           16515       2163        NA e1b3b636-39b5-46cf-aa7f-216b09ead7e6
#> 1772           18481       3681        NA 9aa0b292-f4ad-4517-83e9-717567edec19
#> 1773           20975       6186        NA 1cb784d8-de4d-4962-a775-c7379b7053c2
#> 1774            8679        385        NA 26164d5b-1e27-445d-8684-67b80e576567
#> 1775           21046       6111        NA f2f29019-7306-4b1c-a9d8-e9f802cb06e0
#> 1776           14252       1166        NA bbd0942c-6f77-4f83-a6d0-66ec6548019e
#> 1777           21812       6892        NA fa781bd3-04ed-4536-8d48-af9742c8aa13
#> 1778           16850       2394        NA 91ead748-e3b0-4926-bd3b-3e327b44e6bc
#> 1779           16815       2359        NA c5e430c5-7a8e-4e29-b30f-1a527f05cb89
#> 1780           22346       7358        NA 5690a8b7-c298-426f-be4b-4bd2f0046ae5
#> 1781           20159       5209        NA 9424475a-fba7-4bfd-b79c-f372ad28082a
#> 1782           18872       4029        NA 8960d61e-433b-41ea-a7ad-4e76be87b582
#> 1783           20868       5987        NA ae4faec0-509d-4080-b5cb-d1a44d062858
#> 1784           14461       1213        NA 407f1923-6659-4564-800f-25b8746d6d3e
#> 1785           18315       3545        NA 6ca35fe6-900c-4903-aa23-a5ca55ac6a3d
#> 1786           14222       1159        NA 8048bdd1-62cf-4d01-8257-741a585dae8e
#> 1787           19883       5047        NA 60ff28ab-0edc-43e3-8517-cd57c78f6347
#> 1788           20969       6158        NA 8afd3fea-20d7-4a2d-9ce4-e610f7961e3e
#> 1789           22136       7129        NA 44dd8731-122b-4f26-a599-10c5aa37acbc
#> 1790           21161       6279        NA c1576aca-1bd1-4b9f-ba83-10235f1e2eca
#> 1791           13275        943        NA 1059e9dc-97df-4643-9116-883a0573d8b1
#> 1792           20949       6126        NA ed0e6a30-83d5-4f4b-bf49-f7ff80e21304
#> 1793           21344       6439        NA fe7dea44-fd21-45e4-a8f0-1436e1108da1
#> 1794           20069       5133        NA f0d17dfa-ebf3-416c-a8d2-c6bc30675103
#> 1795           20582       5570        NA 50eb4454-71bf-4012-a216-2fc9770ffd86
#> 1796           21714       7066        NA 3bf5c049-9daa-43ba-9758-c6c895a9d462
#> 1797           15534       1689        NA 2fa2b2da-4aa9-44b5-b27e-56876dfe2ad4
#> 1798           20836       6088        NA 814e9529-e00f-4d02-925b-158ba1c6f840
#> 1799           22345       7357        NA 92529995-41e9-48db-b429-c96540ad357b
#> 1800           21685       6794        NA 4131d4ee-0318-4bb5-832a-4dec80668a4f
#> 1801           19128       4282        NA e5266a8b-b610-4c5e-9bee-7269917ffd6f
#> 1802           22145       7142        NA 6c55bb5c-dde4-43ec-b4aa-0e5d65303244
#> 1803           16199       1950        NA b57c9d4e-b06b-4281-98d8-1295684c2e55
#> 1804           17443       2961        NA 94560629-fb01-43b5-b9ea-ca8372c18368
#> 1805           16671       2260        NA b05edab1-92b7-45f0-a6a8-4ded382332f3
#> 1806           14469       1216        NA f403d099-29d4-43cd-bf79-4aeeb8dc6cd3
#> 1807           21463       6476        NA 3f0926f7-103e-44d5-85f0-e53ec48fe452
#> 1808           13761       1043        NA c7c6dc46-a58a-4cfc-b626-2360434671cb
#> 1809           20822       6025        NA 63fd7882-5d20-426e-9834-e85c0ebb4d5b
#> 1810            8550        368        NA 7c73efae-bf01-4226-a2f8-ec6243da9b99
#> 1811           18177       3415        NA 537c88d4-c403-43f4-94a1-fdccea0ee24a
#> 1812           20986       6127        NA 154d65c6-b3fc-4ac4-99a6-48c191e90ffc
#> 1813           20167       5193        NA b590479c-79df-4505-be19-b0838574b434
#> 1814           19511       4619        NA b4464e0d-acbf-4a69-9450-ca7d59e8dff9
#> 1815           21926       6872        NA 1d8d5c04-15e7-4346-9d1f-f128e4df3adb
#> 1816           22047       6946        NA 7a51270b-cbdf-451e-a9e7-0f0b23435dd0
#> 1817           10978        518        NA 88d2dbf4-3b9f-43ea-bac6-a8722cb24f43
#> 1818           20637       5727        NA ded1a577-51cc-4f13-8b79-4f4c09655f44
#> 1819           14904       1381        NA 25a4ae85-e94b-4db1-b939-4c96f24ead11
#> 1820           19020       4174        NA 2516f9e7-9927-409d-adbe-b32d680ae71d
#> 1821           20995       6133        NA 5d235c9b-8d01-44a7-a3ec-b5c7bd4491ee
#> 1822           19261       4402        NA d38bd9b4-1927-4cca-84da-5c7dd5b21716
#> 1823           22356       7369        NA a28e18bd-eb1c-48cb-b1ad-b2de212313e2
#> 1824           19275       4415        NA 54814199-dd18-408f-9dc4-ce59a121431b
#> 1825           14743       1288        NA 0861a57d-b468-4c21-ba3a-7523b6838ed0
#> 1826           22476       7500        NA c3711453-41bb-4c2a-bad4-72d08f2effb4
#> 1827           15204       1562        NA 10969a29-e4ca-47d3-9100-0017774f2cc2
#> 1828           21013       6006        NA 3fa97e08-13d9-47a8-b155-39f975964d47
#> 1829           18114       3353        NA c9a7ce89-90f7-4061-b9ac-dfd4e6c3cedf
#> 1830           21100       6202        NA 12b701c8-7f40-4437-aeef-782fd1d25f2e
#> 1831           16892       2435        NA a8ac7c7d-301a-4e1e-afd4-04f88cad848e
#> 1832           21353       6609        NA 06748afa-6b89-461d-8de6-9f1628169845
#> 1833           22038       7123        NA 3ee844af-9408-42d7-ba42-aaa2d5ccc673
#> 1834           19578       4677        NA dbce7118-3f7f-42b4-8da4-83a864f91aed
#> 1835           20523       5438        NA b254f034-ab48-4a08-98d7-0dc6724e8a20
#> 1836           11694        650        NA b37c621e-1125-4c35-bea0-fcabb1527060
#> 1837           22134       7121        NA f8788fca-16b2-4214-b0a4-1bacff5e9fcd
#> 1838           17962       3201        NA d7072e38-e5f5-4ac1-93cf-9a93f6333870
#> 1839           20784       5990        NA 49bf0cd8-c01f-4d31-b6f1-fdda02b4999f
#> 1840           21898       6848        NA 56692800-dd44-4b82-a988-398314845fd9
#> 1841           17192       2724        NA d5ed27ed-e5f3-4d4a-a8af-79887c1881a0
#> 1842           22137       7130        NA 43d50dbb-38cf-4713-a667-15f4692d8c20
#> 1843           18005       3244        NA 12645147-c0fa-4aff-a395-496f8b9fb275
#> 1844           21889       6921        NA 8738c2cc-4ac6-4288-922d-ce4590d9af42
#> 1845           19944       5318        NA 3164fc4b-b2ae-43b3-9ff1-1d5f744b9f88
#> 1846           13748       1037        NA e7a18744-0608-4118-888f-f51de5645ce9
#> 1847           15423       1657        NA b6d2274d-87cf-4427-bddf-ee8a1b4ea652
#> 1848           16926       2469        NA 90517709-322d-47af-9360-77775a93496b
#> 1849           16851       2395        NA 50de642a-7e6c-4625-9966-ed8fc64acfa0
#> 1850           15960       1788        NA 8e16968a-ac98-4e30-a7b4-5e90202277f6
#> 1851           21017       6093        NA af1335c6-c262-4488-9352-86ba80754583
#> 1852           13320        954        NA 214e55e4-a089-412d-9598-a16495df0d25
#> 1853            8358        345        NA af4ba620-2f00-4b00-9111-7897f2b1cde8
#> 1854           21220       6317        NA 751d6fe8-85d9-4caa-bcca-493155dbff6b
#> 1855           20954       6136        NA 582fe465-135a-4901-beef-60aebce99067
#> 1856           16056       1848        NA 39f70428-a78a-494c-8676-438d953c289e
#> 1857           19828       4962        NA 1376da0d-0448-4a37-bd99-842c4580eeda
#> 1858           14917       1387        NA bd8052bd-0898-430b-99c9-2529e895ae79
#> 1859           20790       5890        NA 59482736-ce42-4058-b68e-0f9f66eac2d9
#> 1860           13741       1034        NA dba5e3ec-2c77-4f65-ad6e-cee246f816ef
#> 1861           21837       6973        NA 879325b1-c961-4c9a-a3a4-679d77a28293
#> 1862            8353        343        NA 64e89f8b-3e8f-4e07-bb73-c48f2a1dd8e2
#> 1863           15208       1565        NA 4f454037-be8e-4575-b332-5e40f4788970
#> 1864           16724       2287        NA 3c119ef7-fe68-439d-93e4-89ab4fd1df44
#> 1865           16078       1864        NA 5cb1fbaa-96f9-4211-96b7-f3492f2bc467
#> 1866           21950       7126        NA a756f0c5-c0c3-4d95-9a77-4fe1ef9baf93
#> 1867           21004       5891        NA 1be82e0f-4b22-4a82-b3fc-5835aa214f7a
#> 1868           20047       5349        NA afaf2f2c-06e2-4d7d-9d6e-1b9bc5a1c8ff
#> 1869           19036       4190        NA df94ce97-af26-4f12-be2d-14779270e670
#> 1870           18008       3247        NA 4ee0937c-1250-4456-93d4-2d6afa064d5a
#> 1871           12764        808        NA 99b8d78e-6d23-4e85-8eef-d286ba5ddc0c
#> 1872           18066       3305        NA 8b3ee955-f2ac-4606-9066-42b82fb4131e
#> 1873           19848       4977        NA 27b1ba46-842b-4bca-a434-56c60102c1b5
#> 1874           20199       5235        NA 268c8b1e-b217-474d-a92f-4f924273c938
#> 1875           21808       7082        NA 4da5e05d-fc5c-4e87-aa38-d9cde42dd476
#> 1876           17415       2944        NA 25e58aee-1b33-4468-9a81-6586426b91d5
#> 1877           21771       6956        NA 05e15d81-6bb1-49f7-b677-63475d073961
#> 1878           19988       5094        NA 40b8fa44-b289-42dd-9606-a1ae30adc7bc
#> 1879           22437       7460        NA 9d919856-fa8a-4f06-bd1c-89ebdaca1808
#> 1880           22436       7459        NA 17a17a1a-787d-46b3-94c0-8d4e1928c492
#> 1881           19198       4342        NA 5f5fd1a9-1085-404b-a978-426a8895fb83
#> 1882           17141       2673        NA 48d7bc31-808f-423c-afc8-45c2c5dfa45f
#> 1883           20876       5947        NA 73e194d1-a4b7-4de4-b1c2-3c24ef502918
#> 1884           21749       7458        NA e83c7957-58c7-48eb-aaf2-47e410607957
#> 1885            8355        344        NA 2bb70d56-a79a-4fa1-ae37-99858a3ffd55
#> 1886           16798       2342        NA ca2d277b-835d-4f4b-bf3a-3993001d71d8
#> 1887           20375       5292        NA 5f58e780-62ff-414e-8d32-b0608679e9b3
#> 1888           21601       6699        NA 625a1777-dd9a-48c6-b512-c450b0914450
#> 1889           22417       7438        NA b9a6720d-9c6f-46f2-bcee-b80550026437
#> 1890           16232       1971        NA f404283a-7c04-4a1c-899c-3243424a8d70
#> 1891            7651        312        NA 9d404288-65c5-414f-8ea5-ceb97eccaea0
#> 1892           16258       1987        NA 4c3c6b63-aa1f-4452-9d1d-662073f06142
#> 1893           20792       5878        NA 3e6e15ce-1c81-408e-9a94-b0a2924d0b8c
#> 1894           20072       5316        NA 5328d551-cf7d-4ae5-a8f4-1968651748f3
#> 1895           20869       5875        NA b2fc64a2-3df5-4f65-92e7-922d41723bef
#> 1896           11493        617        NA 24a847e7-8a4e-4123-967c-bd6145d9c3ec
#> 1897           14412       1203        NA be7e6d3f-a5d5-4ba9-b694-5bdacab75606
#> 1898           20339       5647        NA 66dbd211-6835-4c06-9e4d-9f74cffac250
#> 1899           18905       4059        NA 66386076-7d61-47b7-88e2-34a883de250f
#> 1900           19501       4611        NA 35150d4a-0dca-4daa-91b3-ffc46d44d1b8
#> 1901           18190       3426        NA f12ecfb0-085f-42d6-b063-97f0bc4fd5ee
#> 1902           13886       1076        NA ae0de04e-f10b-46ba-b650-2a5c30d48cd9
#> 1903           16839       2383        NA 36538da8-9ac7-4f7d-beb4-8b773da4a080
#> 1904           18937       4091        NA 662bf69e-10eb-4c2e-970e-1a13f1c7fa07
#> 1905           22363       7375        NA 9c1cc275-861d-481f-9688-b65c170fb8df
#> 1906           14989       1429        NA 5486420b-b40c-4e7c-ab47-9d70b1673c3b
#> 1907           18453       3659        NA a46c1936-c00e-405a-82c8-297ebc2a7535
#> 1908           16105       1885        NA bbb3b4cf-0ba1-4d45-8650-9f8824d3781d
#> 1909           18981       4135        NA 41d217b9-ec7b-4d72-8a0a-5f0e3a16b693
#> 1910           17956       3195        NA ddde7b09-faa0-4fc4-a45e-aa38c3905f6d
#> 1911           13338        957        NA 543e5e1e-50e5-482d-a6ad-498d7fab497e
#> 1912           19835       4965        NA 9c2c9c29-516a-4e0f-8dcd-319291823370
#> 1913           20776       5912        NA d9cf7aa3-71b1-4ef2-98c5-3db5d44b6f1e
#> 1914           22198       7196        NA f183ef7c-c45f-4f31-9d54-2d5a94c4cfee
#> 1915           21899       7018        NA bb01a04e-0d54-4fc6-98c8-2b8614d07afe
#> 1916           21422       6627        NA c8fb3887-c2bb-4038-af6f-f9b81aeee0ac
#> 1917           21507       6510        NA 3df436ea-5825-4ef5-b33f-d221d8f5992e
#> 1918           19005       4159        NA 40d6eeb6-cd53-474d-97f4-a00fed5b4d64
#> 1919           18119       3358        NA 6a369c2b-debb-4bfe-8ea3-2a8364ceb7ee
#> 1920           18042       3281        NA 08d27d1a-e039-4ccc-9ba7-65a22f6002fd
#> 1921           16970       2511        NA 0c158936-9c0c-4ee4-a51c-4f937d3d163f
#> 1922           17949       3188        NA 3b1227f6-05c9-421f-a2c1-4c8f1368b80b
#> 1923           16793       2337        NA 7f911008-146b-43e9-a292-9ad90c621087
#> 1924           16928       2471        NA 80715ecf-ffc9-4a93-a305-2193451b3382
#> 1925           16774       2318        NA e07c45a0-22f9-4ba2-9bbe-6c63e623bc38
#> 1926           21424       6635        NA 962bcc09-65ae-47e1-a3ba-39290a1e95c9
#> 1927           22036       6816        NA e05e1927-1dd4-44a9-9b70-f552e6939a97
#> 1928           16086       1870        NA e381248e-ea78-433c-a9cb-7043e9f3335e
#> 1929           17457       2966        NA 6e150bf7-49da-4d65-9b8e-e39dc074c539
#> 1930           14463       1214        NA afac3e25-d72d-43f7-be4b-d33ed91a0bf8
#> 1931           18478       3678        NA c4cf84d0-6022-4ac1-a9ba-85587921c53f
#> 1932           20787       5952        NA 3f6d588b-dfcb-4758-95f0-545f61ddf275
#> 1933           13810       1052        NA e6221da0-1ce0-4f60-85b5-f2094e9d2863
#> 1934           21907       6815        NA 719a7e8e-8286-453e-8aee-d2487c45e53f
#> 1935           18964       4118        NA 8bb2d40a-6dd2-4108-9810-5def1b45f192
#> 1936           14711       1272        NA e699246f-a474-4f91-a164-49b1d80bdad7
#> 1937           21134       6302        NA 7c51883f-8ea7-4f54-8c03-a562b4524858
#> 1938           16885       2429        NA fd3bd475-4327-4ba7-8540-ab6cc8ecf12f
#> 1939           21445       6611        NA 8ad3600e-08b4-4390-8ce0-70065776b781
#> 1940            5377        212        NA ca1aab05-e07b-437e-84c6-2bdb47433782
#> 1941           18704       3882        NA 94510e36-d0ea-48c5-9c7e-b09b31c5c218
#> 1942           22442       7467        NA 53213f81-77ad-48d0-9d42-00e3633b0e90
#> 1943            9201        445        NA e5371625-0c83-4f1f-9252-c7e0b6bc616e
#> 1944           16762       2306        NA fb3b36fc-b985-4807-8199-d038d7e62a93
#> 1945            7242        289        NA bb5957e6-ce7d-47ab-8036-22191ffc1c44
#> 1946           19238       4381        NA 3c8a55dd-20a8-4375-b711-49eb5e6e1d0e
#> 1947           17009       2549        NA e23dc743-ecee-4cf3-a263-69d3da3bae94
#> 1948           16855       2399        NA 0c39e276-7a5b-448f-a696-532506f1035a
#> 1949           21774       6984        NA 83d4c4c3-3c40-49b1-8b86-25d256a0b5ad
#> 1950           18878       4035        NA d9c857b2-97da-4fb8-a527-afbbb2a67413
#> 1951           21194       6259        NA f6cc5ed6-81bc-4636-a8d4-88c47529a061
#> 1952           15071       1476        NA 540f8b30-900e-4d17-8756-c262ba5fa039
#> 1953           18152       3391        NA 30ff46bc-a039-4af7-9050-81af98901a3e
#> 1954           20559       5452        NA e0248ecc-27b4-4368-bf97-47a73cb41ec2
#> 1955            9196        444        NA 0a4c5237-08a4-41d5-873d-18f70c025149
#> 1956           20766       5893        NA 5fb6e9f1-2efa-44c9-876f-4d635484be88
#> 1957           21164       6564        NA 505b14e9-7ba1-4c7b-99e7-8dafa8cd0946
#> 1958           22043       7010        NA 4bc2be9f-9001-4395-a097-d3c89140a83b
#> 1959           18922       4076        NA d77eae11-9ecb-4713-878a-29900d67267b
#> 1960           15193       1552        NA 0cb6209d-2397-4be2-9cb7-f990bfb67e69
#> 1961           21786       6869        NA 4e14183b-f974-4745-9d7f-8f5eb2a92a7d
#> 1962           15866       1777        NA 687cdc33-bd0d-4b70-adb3-33f97dc26a3c
#> 1963           20193       5196        NA db4510bb-e692-4877-9b71-0c8d642bc16c
#> 1964           18522       3715        NA 32d58cfa-ffa6-46a1-bd3a-09b6ccca2370
#> 1965            8534        367        NA 3b7a1409-d154-4e5c-8c94-9d4a0e0993c7
#> 1966           18716       3894        NA 3cacaa27-a790-43ae-927c-8163b06f1a53
#> 1967           18587       3774        NA 1532328d-614e-4cd6-a43f-ff56073e2ff2
#> 1968           17960       3199        NA 90c1756d-1f47-41b7-89fe-b113c9850bc1
#> 1969           16276       2003        NA 132721b4-fd32-4795-b214-ab4baaaceb3a
#> 1970           19897       5026        NA c65b8d70-ac93-4782-996a-ef96fd11047c
#> 1971           21163       6234        NA 8f1147cb-3040-4128-b113-5813816241ec
#> 1972           21355       6552        NA 1a97a708-09bb-4f04-94e0-8aac160de8db
#> 1973           20816       5938        NA b7f930af-ddd2-4a48-9617-96bda81b0334
#> 1974           19276       4416        NA 4316bbf5-0d02-4392-9fbc-33be86f87446
#> 1975           18401       3614        NA b103b096-6be9-4f87-9ae4-5d217f560685
#> 1976           21738       7002        NA 0226b03b-f91d-4223-9813-9fcd2e9c3acc
#> 1977           11063        538        NA fd4e8681-f2f4-47c7-b954-a72be9b1ca00
#> 1978           21750       6989        NA 1364cb22-1bfa-429b-8bde-dfd0d2938163
#> 1979           18686       3864        NA dcce5f4a-0bb5-4ed6-a8da-9b2cf64714f0
#> 1980           20337       5645        NA 8fcc6939-9e67-44bf-b9c9-effaeaf2bae0
#> 1981           18312       3543        NA 1b7258f3-ea04-47ba-b315-cc709fef4bfd
#> 1982           16221       1963        NA 90609ea7-4f12-4526-a274-455835ccce27
#> 1983           19901       5048        NA 5bde0a71-c7ec-465f-ad35-c195e1d10b29
#> 1984           20673       5766        NA eb264430-a673-41be-9d81-588d9a9e10e1
#> 1985           19407       4529        NA ba95b150-fad0-4a8d-b15d-a5e318d95b7f
#> 1986           18934       4088        NA 41ca30bb-890b-4d30-ae2a-2b12eee9423a
#> 1987           22050       6882        NA 8e19d167-cee8-4048-8f28-d476b11ec330
#> 1988           17992       3231        NA 0db6df51-945b-4123-a790-0ba9d0473415
#> 1989           22172       7170        NA 66d74e2b-9a7f-406f-97db-b5b82f0c4cd2
#> 1990           19123       4277        NA 24a58900-649f-4a29-a34c-26ff92b63be3
#> 1991           20864       5876        NA a1052a59-114e-4340-8936-bffb17431300
#> 1992           22305       7312        NA 3bed3959-22dd-4ee6-8fc9-7eda34fbeaf0
#> 1993           14888       1367        NA e829aa7e-04a7-425a-9717-c334ca9febe9
#> 1994           21936       6788        NA dbeff2ee-8d26-48f3-b345-3cd88c374c87
#> 1995           19858       5037        NA 54074654-5618-4b09-98e7-560d4b0d91f6
#> 1996           19946       5311        NA 2a5cf817-b88d-4dc0-a8e2-bd6212aeb4e2
#> 1997           22367       7381        NA b03240e5-759e-4e09-aa70-8fabe877f322
#> 1998           20852       5847        NA 31bd7a4c-8eaf-4ea3-871c-b44420c804f8
#> 1999           12880        836        NA 7bad73a1-c023-4b53-bd4c-dedf18480b8a
#> 2000           16767       2311        NA 2b5152aa-cbcc-439c-b72a-ac7577c8422b
#> 2001           19885       5020        NA 5c24d0c5-076c-4db5-9bd0-e67f7c42ad50
#> 2002           22350       7362        NA 0d5c19ee-8165-4af0-a3ff-f5dc54bef046
#> 2003           18617       3803        NA 6c6a6099-0169-4c9a-b024-0d8f4a795f38
#> 2004           17156       2688        NA 79a3c87a-85e2-41ed-aee2-ee6b33dd401e
#> 2005           19860       5018        NA 3a39ab56-f188-4924-862d-c79ce67a3420
#> 2006           13882       1074        NA b3e1206d-38e3-4ad3-be9e-8bf3daa62cad
#> 2007           22039       7022        NA c4ab37e6-e589-43be-94dc-441c81ca5fac
#> 2008           15672       1730        NA 7f614864-933f-4469-8df0-7fa9e2f3b851
#> 2009           10333        503        NA 63f8a401-f308-4463-9d0b-4335b98da682
#> 2010           16929       2472        NA 677a2fa2-55d5-4a1f-b56f-1f97b0a4b61a
#> 2011           21978       7020        NA 65533cd0-792b-42cb-808f-18cbac2e51cb
#> 2012           19886       5021        NA 074acf5e-748f-4d42-9875-0090f1480bec
#> 2013           20516       5664        NA 18264a0b-cb51-487a-b2cc-f9258f0325f6
#> 2014           22156       7155        NA 22f733ff-fd31-4731-acf1-97843e9eb665
#> 2015           21902       7011        NA d2f9e776-11e2-47ce-82fd-60908aeb2769
#> 2016           21000       6132        NA 9898a791-ba28-4a68-beee-ad12f61af7db
#> 2017           20036       5337        NA 6bf775cf-391f-4455-ba0f-264af0803ea8
#> 2018           18052       3291        NA 0392b852-2783-4ce4-ad39-dc8661a5be3d
#> 2019           19160       4311        NA eceef7ad-494e-4a84-a6d6-e7253fb554f0
#> 2020           22150       7148        NA 8969d7bd-b4c8-4cdc-84c0-a78eab2c2b2b
#> 2021           18016       3255        NA d073c3c0-b9b0-4382-84d0-5de88a427ad6
#> 2022           15454       1668        NA 12f55b0f-17a3-495c-9654-fe53f4c20716
#> 2023           16365       2063        NA d86d53af-2eb8-425c-90ab-851122cc633f
#> 2024           18333       3560        NA 014038bd-e9b7-476f-b7bd-bd78a46a9a57
#> 2025           18938       4092        NA 6371b42c-2783-49e8-8def-ce4d7dc91081
#> 2026           20282       5692        NA d58166e2-24ee-4dd2-ae22-36b05634eb6d
#> 2027           18144       3383        NA f45835c5-aa9e-4e32-b545-20d1e322fe8f
#> 2028           20841       5870        NA 0042266b-cb28-4012-bfd2-06650badad97
#> 2029           11047        533        NA 3699dfd9-d437-43f7-b674-adbb31e7e64b
#> 2030           11422        606        NA 250199f2-1387-4b55-b96f-17fedea6db7f
#> 2031           20966       6147        NA 3cbf12f3-11df-4ced-a321-4877b129420c
#> 2032           14657       1262        NA 1c6daf8e-d6dc-4d88-a5fa-c3ebcd93a6e5
#> 2033           22395       7412        NA a75efc5b-a4fc-4da4-8684-d170a0c40b81
#> 2034           12708        788        NA b25ba2bd-80bd-4295-9034-cf9242fb207b
#> 2035           18996       4150        NA 567fe739-5425-4d78-896c-f1486813910d
#> 2036           19205       4349        NA b8033c75-de94-46df-a645-284f419c4497
#> 2037           20122       5168        NA ddd1fbb3-4db8-4d77-b522-9efd938ec8c5
#> 2038           17360       2892        NA 37339e36-741c-4c1c-a9ab-bd89ed866fa0
#> 2039           19766       4866        NA 9811b753-347c-467a-b3cb-85937e71e2b9
#> 2040           14269       1170        NA bd10efdf-d8e7-4e23-ab1a-1e42fb65131b
#> 2041           18902       4056        NA 45ef2670-2382-434b-8f26-ba13f044236e
#> 2042           13744       1035        NA 93927d6e-9271-4c1e-8239-cc20fd788ba9
#> 2043           20794       6090        NA 66e7cb60-bf2e-41a5-96c1-4f7d4f8f9cda
#> 2044           22035       6905        NA ba5805bd-c67e-47d8-8d47-c8440a268cd4
#> 2045           21026       6029        NA adb1984e-17b1-4efc-9af9-94cec5835c91
#> 2046           20440       5475        NA e69d4c5b-930b-481b-a81f-aea5c22ff3ae
#> 2047           22025       6810        NA b493daf9-e550-497c-b382-4ffda2e47260
#> 2048           16039       1836        NA 248b6e0b-bb1b-4dd7-8eb2-b5f7e98c77b1
#> 2049           22091       7377        NA ae320fbe-15cb-4877-b05e-c626bbaba820
#> 2050           12778        813        NA b077b3b2-2fed-4c9f-9b8f-c4ff50a4f911
#> 2051           18912       4066        NA e21365af-8d66-416e-b0a5-8816d18fcfd9
#> 2052           20946       6146        NA 7bb7f5e7-f00e-47d8-954d-90bf5baf4292
#> 2053           22365       7379        NA bb3bf01d-c100-4a9f-9b7b-21aff82a9cd7
#> 2054           15378       1642        NA 67d56171-7522-430c-b7d9-8f7e2b6624d3
#> 2055           20117       5166        NA aec7472c-3e0b-443f-8c48-cd8cf0e9734c
#> 2056           11611        642        NA c88d9352-b835-45ed-a909-1cfec09a58bc
#> 2057           18241       3476        NA 0ee05dd7-e99e-43c8-ba2b-0922be1d8be1
#> 2058           19200       4344        NA 8db3a609-73f4-4797-ae22-8adf024d473c
#> 2059           21862       6873        NA 126811e0-f856-49c2-b36d-15e71e06f4c0
#> 2060           20943       6149        NA 82ed30a5-54a8-4ed0-b040-99c3a78fb055
#> 2061           21294       6386        NA 427038d8-ff50-4d6e-a088-4fdb8bc2f0e3
#> 2062           20939       6154        NA 97f6c20c-1110-4551-82c1-41d3247397a2
#> 2063           19854       4992        NA 20d16690-560b-4a01-af20-8870ef07ea70
#> 2064           18116       3355        NA fa6b16fe-d3cd-4296-a0e6-03ad13d27a57
#> 2065           17961       3200        NA 1ffc735b-74d8-44d2-ab32-00c5485c799f
#> 2066           17938       3177        NA 6efb8027-b537-4dd1-883f-459450708ad4
#> 2067           18062       3301        NA fbabd1f2-fe25-4cdd-9000-8fcc90372e82
#> 2068           19485       4597        NA 441ff2e1-53bd-47dd-b44a-0f97e0b97d9a
#> 2069           20502       5551        NA 99119082-a5be-4fb0-bebf-ad25cd564b4e
#> 2070           21234       6328        NA cf93a57e-129e-4e81-8d40-d8772ee0403c
#> 2071           18469       3669        NA 901c84c7-ef46-4c9f-9941-ac8becc02986
#> 2072           21021       6283        NA e3a4104a-ceba-4df2-b265-70843ecf1fb0
#> 2073           19375       4503        NA bf21bd83-9c97-4faf-97be-859f033848e2
#> 2074           20744       5933        NA 57df194b-d445-4e66-af51-7b781b0f529f
#> 2075           18392       3605        NA 22d9354f-3277-4ae6-bfaa-351ce38f1140
#> 2076           22170       7168        NA 9c95fee4-129e-4765-b99f-f09f517c1f4f
#> 2077           22076       6833        NA e81fcb68-e579-455f-9278-1bc28d5d332b
#> 2078           18939       4093        NA dfbbaf35-08d6-4f58-8577-c2e53a492454
#> 2079           22081       7392        NA dfdf250e-0457-4008-be27-a0be2a3ae5bd
#> 2080           22049       6994        NA 22e0f7ed-9b46-4a75-9780-d9b66c245744
#> 2081           16396       2083        NA 144ef260-a22e-45df-9bbe-52a11f9188ba
#> 2082           20785       6013        NA b8db855b-fd1f-46e6-ac23-466f68130e6c
#> 2083           20271       5534        NA 98166be9-2705-496d-ae1c-3bbcc2fe60bb
#> 2084           21165       6235        NA 4e2c85e2-3efb-4c5e-ba5e-3c75202e4f00
#> 2085           19942       5466        NA e08d71dd-58d9-4295-bcf8-9a6faf59c333
#> 2086           21910       6897        NA 2160ed45-4a2a-4d3b-9da4-d18446dfa292
#> 2087           22377       7391        NA 07b963d4-aef7-4874-ba04-f9b1ec1142d3
#> 2088           16854       2398        NA 2d3a6c81-183f-431b-9b3f-d7f1ce2b294b
#> 2089           19993       5090        NA acc3f3fc-12b7-40b6-b773-b73b2b10cf32
#> 2090           18476       3676        NA 8905d02c-c7f7-4a50-901b-6eee71e39cc6
#> 2091           19097       4251        NA 243b786c-744d-4a6b-9a8a-0b4e5fd2ad18
#> 2092           19887       5043        NA 4be6de2f-0a6c-43fc-a91f-d01cdb5dca6c
#> 2093           15961       1789        NA 18fc2ade-5106-491d-9e5f-97926e64459a
#> 2094           18961       4115        NA f9d87dfe-4a57-482a-a77f-37906daa4382
#> 2095           19690       4771        NA 6d7ca819-8c58-4c41-bba7-643ba9553eb8
#> 2096              NA       7515        NA 1f2c7574-f56a-47b3-bd75-5dd0d5ff8d93
#> 2097           21542       6650        NA 12d28404-63e1-432f-adde-c93631a5c39c
#> 2098           18735       3909        NA f61e6429-3f9b-478c-8697-e00fe813ce9c
#> 2099           15220       1572        NA b94f3978-ba88-428a-924b-3fbfdf04b058
#> 2100           19679       4761        NA 1aec5d74-58c8-4bf2-9508-f09e6384952c
#> 2101           15176       1539        NA fe1eeca3-7ad7-4bc2-9c55-b5662818642c
#> 2102           18480       3680        NA a5111f5d-0b0c-4745-874c-672904200c32
#> 2103           16093       1875        NA bf5f7564-349a-439a-a8a9-4ddb10448a8d
#> 2104           17145       2677        NA fa4ae025-fd66-4752-94fa-63e22ae8abd4
#> 2105           21118       6217        NA 17dfbad4-f4fc-4a65-a085-6cdcefe36879
#> 2106           18958       4112        NA d7068799-55b7-47c2-91d9-0e532957939e
#> 2107           21341       6666        NA 5a79cba5-d633-4ed0-8aa7-a244060432b3
#> 2108           18012       3251        NA ae3bb00f-84e8-439f-ab56-38c6838b8b97
#> 2109           20411       5580        NA 717ebb17-f54f-4052-b9fb-af641a25ebe2
#> 2110           19286       4426        NA d3e192b5-4523-4d65-94e0-a1fb164b6542
#> 2111           16983       2523        NA ba447b79-44c1-48a7-b30a-a2460f219afe
#> 2112           20382       5669        NA 571152e1-0a76-4562-b257-4729e4401549
#> 2113           19178       4325        NA 04ae0bca-f5c5-483b-bf55-967f1423cb45
#> 2114           20989       6118        NA b8e0fa49-1122-4e97-9fe2-d90f6b7cb444
#> 2115           22094       6950        NA 85eaaf9f-59cf-4150-943c-c1abdaa78eb1
#> 2116           20542       6205        NA 977646e0-0142-4293-aea2-cb36742bfac4
#> 2117           16430       2106        NA eab69ec2-9cba-4783-8260-cf99121ed2c8
#> 2118           19972       5089        NA f4808328-86e9-459d-a2bc-18e90c7d211e
#> 2119             611         19        NA 64797df2-efd3-4b27-86ee-1d48f7edb09f
#> 2120           21965       7081        NA d0b866b8-6221-492c-a80b-4a12bbd13e64
#> 2121           19812       4943        NA 13d826c5-9b22-4e0a-a877-02d8c84c546b
#> 2122           20837       6039        NA 96e6687b-2b89-4dd9-98df-6e7507cd82cf
#> 2123           22121       7079        NA 573c2c6b-fbd7-40e8-a83e-30140cf43e7b
#> 2124           21797       6908        NA f86e291f-d678-463c-93cb-beedab9a309a
#> 2125           20883       5961        NA bbb3812b-cfee-4cab-80c9-6da225fec5b2
#> 2126            5820        232        NA 6a2b129d-a9e5-4131-b491-82269b323f77
#> 2127           20075       5136        NA 23b17031-de21-412d-8182-5a4bca1049a1
#> 2128           21476       6429        NA fe30ca46-c995-46ce-bca3-12451bfb5ad8
#> 2129           21925       6855        NA 7d491979-7d1b-4b55-9f3a-f68db22d8bb1
#> 2130           15302       1617        NA 9b80f314-0cd8-4a35-918f-a405b680e879
#> 2131           22011       7061        NA ca98164e-f504-48f7-8a55-48444dfb4df5
#> 2132           18051       3290        NA 9ca56390-fb0e-4261-ac0d-1770f65021bc
#> 2133           19104       4258        NA 6993aad2-269c-4211-bee7-2fcd324288c5
#> 2134           18599       3786        NA eb7f7d43-7837-400c-828c-bd5d609bca41
#> 2135           22009       6796        NA 8639eb45-a9dd-4b3b-91f1-01319af3bdd0
#> 2136           20746       5969        NA 668bbc04-3346-4ba5-b038-9b5485f79d1c
#> 2137           17750       3041        NA 75dfd9cc-5419-49e1-bade-0632d03ca4b4
#> 2138           19947       5009        NA 780a48de-d092-4e87-9c34-8d1b45a154cc
#> 2139           20977       6181        NA f6c34178-e063-444b-96b3-df6b3cf66419
#> 2140           22473       7503        NA da9fbb26-ca12-41a7-955e-a8abe04d19f0
#> 2141           14985       1425        NA cb1df42c-b59c-4e23-a9a2-fbfc2b39ef71
#> 2142           16866       2410        NA 8002dd5e-a75a-4d72-9a8c-0f4dbc80d459
#> 2143           20038       5121        NA 18f0bd30-1432-4fae-9cb4-c212bad6d0bb
#> 2144           19006       4160        NA c5a8b02c-d380-4f22-a690-b335001de8b7
#> 2145           21473       6453        NA 021f2c32-0876-4db3-9605-e829f7d449d7
#> 2146           17939       3178        NA c80914e5-5b9b-4ed8-a993-bcdf5f77f5f6
#> 2147           21078       6557        NA 767b1112-c77a-4a58-89b4-30f1ffa2a497
#> 2148           21741       6849        NA adfc13b3-1eb6-49f3-9ba6-d4d87fd13685
#> 2149           19925       5005        NA 74761635-c70b-4cbb-abcc-f882e5efae00
#> 2150           21728       7106        NA 2f2181f8-cb0a-42e4-9468-17f5f5a219cc
#> 2151           14828       1329        NA 8fc65820-f565-44e2-8635-3e1cdf165bf6
#> 2152           20295       5260        NA a63918a5-da89-40d9-8518-30a3e0e46da1
#> 2153           17219       2751        NA 1b016b52-62ba-4da9-9ead-6bad689f8d33
#> 2154           16787       2331        NA 0dc98d11-34e4-46f6-96a6-7707c6f29500
#> 2155           22388       7403        NA 1144d517-25dd-4b04-b316-d0bfc0d0c36f
#> 2156           12707        787        NA 1d02b5a6-fe2e-4131-a9ab-6ed3558f4026
#> 2157           20910       5943        NA 66170e6f-1c23-4bc0-80fb-b18344e98fb4
#> 2158           15127       1518        NA 2c3ef101-5fa9-41d0-a0b1-32a1d27a1f69
#> 2159           18135       3374        NA e431a42b-5abe-49de-9c8c-f143f393591c
#> 2160           15469       1672        NA 1eb8ad96-b4f3-461e-81a3-0a4e08844f73
#> 2161           18178       3416        NA 06a67b3c-d482-4767-b2ce-49edd8777525
#> 2162           20584       5583        NA cd340b59-3ee0-4829-8d08-be8744f670a6
#> 2163           19949       5361        NA 942b9da8-e0c6-4087-886b-370fe357f5f3
#> 2164           22389       7405        NA 8dde622e-645e-4e89-85b1-a8aca7bdfd7e
#> 2165           22066       6863        NA 208c5228-2b8d-414c-91a8-57d2fe4803b4
#> 2166           14419       1205        NA b7253ed5-d2c3-4757-8b54-5176fe9f45df
#> 2167           21346       6579        NA 1d5562b1-78c3-4d48-87ee-1b7ce1e0d5cb
#> 2168           22390       7406        NA 8782ad19-a41a-455d-84f9-aa64f7038ee6
#> 2169           21938       6947        NA 789af1aa-253e-4fda-a93b-cef346bd91b3
#> 2170           22065       7051        NA d6969476-95dc-42e4-9cd1-a1e8ae6973ff
#> 2171           22250       7250        NA aca3090e-ff88-40a2-a7fb-93e063f072db
#> 2172           19918       4999        NA 66a67b5d-500d-46e8-90c6-e2f127d38190
#> 2173           11315        583        NA b3e41b52-a8aa-4be8-8513-8ede6f3f83d3
#> 2174           13722       1028        NA e929b3d8-6f7b-41f2-acfa-fe3840d03509
#> 2175           22394       7411        NA 06087aa3-4538-4eb0-8713-090967c3a32e
#> 2176           20176       5179        NA 14063f54-4935-4043-90f0-a6d2d6ab6143
#> 2177           18911       4065        NA 2d74a108-2b17-4db3-8ef1-0c2e845b414e
#> 2178           21895       6933        NA 96d75855-2d83-4e13-b395-846d6aaaadec
#> 2179           13721       1027        NA 49671677-0e37-4c70-ae1b-ec36be357eb9
#> 2180           18017       3256        NA 3f8e4972-2361-4939-b5e3-c5f6c63b9f68
#> 2181           18038       3277        NA a72ab12a-751b-4a0d-9f9d-a44d2510ac23
#> 2182           14048       1124        NA 252da24d-9eb7-4871-ae76-199918f412d8
#> 2183           17082       2614        NA 07c51c65-489b-4bae-b997-f1a0f35deffe
#> 2184           19110       4264        NA 6a859e36-f31a-4a75-8cd2-905833042fcc
#> 2185           18009       3248        NA 447db942-40e8-4bb3-9710-b12cfaaafb46
#> 2186           13959       1098        NA 9fe21c07-823a-47a1-a4dd-0c611c0280c5
#> 2187           20799       5963        NA db099408-4fdf-44f3-9824-aa8006ac60c3
#> 2188           16833       2377        NA d34ef6d4-6a88-4207-9344-a867d120753f
#> 2189           20043       5363        NA 782c4f21-74b8-4fb1-b9a9-f908e4de81b1
#> 2190           20902       6102        NA db390635-a7ce-4508-9c58-4ac1c36740df
#> 2191           19041       4195        NA 059e5bb7-1842-4558-9aaf-77c352a21216
#> 2192           19970       5081        NA a56b9958-2eb9-47d2-a50e-be8aeaea3eaf
#> 2193           20749       5960        NA a7b4b50a-9431-4551-89e1-6b8cb80536d7
#> 2194           21914       7127        NA a004c949-7097-4faf-bac9-0edc5b1b2b67
#> 2195           18092       3331        NA 5a0c79a3-fd9e-4914-b3e1-27aae59d86fe
#> 2196           18945       4099        NA 16661483-3da0-4461-ac44-46fddb386e19
#> 2197           22233       7232        NA dec323b8-fb75-4182-b03d-6c412d3d51a5
#> 2198           17085       2617        NA 954d9ed8-41ed-4222-b0d8-b3cc8d1755a5
#> 2199           21987       6912        NA 423b3b98-da9a-4786-84c9-0662ec0ce11f
#> 2200           19059       4213        NA 8a6672c9-79b9-4c49-9d7c-0061a1141a7c
#> 2201           21913       7014        NA c44bdac4-0732-4f94-8bae-df47ecec5656
#> 2202           17527       2999        NA 444a23cc-f2db-4078-8eec-3f43f8542742
#> 2203           19552       4654        NA d2f6de91-089a-4845-9b90-bfbc00487444
#> 2204           22260       7261        NA fbae56c0-6400-4d46-9e76-621fc0d5fdd7
#> 2205           18104       3343        NA e1c506bd-9e36-45e7-b2b9-fff6a9728a06
#> 2206           21831       6904        NA 64bd0f02-6a5d-407e-98f1-fd02048ea21d
#> 2207           17920       3161        NA e9a5c16b-4472-4be9-8030-3f77be7890cb
#> 2208           21439       6637        NA d77d9cb1-7fbf-4f77-9f55-cd52afd0ba91
#> 2209           18067       3306        NA 4b09ab09-1457-4c9d-a99d-6a03d8e76c76
#> 2210           20809       5919        NA ebae3f19-b8bb-43d6-ae78-d21e9dc08b61
#> 2211           20933       6151        NA ef3ceaf4-b733-4e06-a7f4-a94fc67361c1
#> 2212           21842       7093        NA 2af6db68-3ad7-4699-8f86-0140fffce577
#> 2213           20039       5122        NA 768f6afa-ba24-40d9-bdc1-3184bba2ec2b
#> 2214           19548       4651        NA 69568326-f210-4b88-a5cb-10376c64893e
#> 2215           21764       7107        NA 632f863e-ad20-424f-a468-7ee40c098c2c
#> 2216           21133       6284        NA 4dcf9e8a-fc5c-43a2-9b83-4ca295490a9b
#> 2217           19069       4223        NA b12174ec-fea9-4e05-b54f-c00e10920245
#> 2218           18149       3388        NA 12563365-b4aa-4b85-93a3-b220c8212707
#> 2219           18113       3352        NA e1754596-4764-4686-8359-dc53fdabbd1d
#> 2220           14857       1340        NA 3edf64e6-603b-4437-a3be-53fe030c6f56
#> 2221           20042       5362        NA 4c01d331-f294-4836-bbfc-3369829d66c8
#> 2222           21661       6740        NA d0b809ac-b82a-4b66-98b1-9fcf613ace6c
#> 2223           21981       6942        NA 83657965-d1b5-4317-84bf-f9e471629993
#> 2224           21067       5858        NA 6c50f131-80dd-4aea-a34d-dac06d5cf91a
#> 2225            8920        412        NA 46aab8e6-3ca9-4213-a6cb-87db90786f6b
#> 2226           14856       1339        NA de3421f7-2147-4835-89a5-724e87bad463
#> 2227           18468       3668        NA 9c18801d-bdaa-4036-9663-24280c763bcf
#> 2228           20823       6040        NA 2fc1c9f1-9e85-449a-9a87-fa8203e8e8f9
#> 2229           19415       4536        NA e17b5817-d955-42be-bb8d-e34d89f6dd71
#> 2230           19863       5022        NA e8029983-87cf-49a2-bc04-04c8233a0630
#> 2231           20993       6142        NA a195e517-f732-4e55-a84c-2ce132a73c65
#> 2232           21056       5886        NA 472945d8-0062-417b-9967-430d381c80ae
#> 2233           16491       2146        NA e00b3426-238b-4bdb-85c3-bbf08b7469e3
#> 2234           14865       1346        NA bf52ff53-35a6-4696-ac6d-3fa952dc2c87
#> 2235           19705       6744        NA 0832c8ad-0872-446f-ad6e-0e309e8443d1
#> 2236           20373       5290        NA a4290c7e-ffc0-4f5b-a442-b1d821c24f88
#> 2237           20762       6059        NA 030f3ecf-f32f-497d-96a8-8f28d44fc311
#> 2238           21686       6798        NA 06ff7f42-5fe7-4899-84a5-9ba5349d17e8
#> 2239           21139       6288        NA 3ca39a84-5ba9-445d-bf6e-895be06edb34
#> 2240           21957       6927        NA ca85137c-205c-458e-8b77-8457849f614c
#> 2241           20742       5863        NA 0cc1a941-1a6d-4a4a-8c7c-88157165c126
#> 2242           14187       1149        NA 5c529c33-8a1d-413a-b635-880ac86f30c1
#> 2243            3943        147        NA 3e618eb6-41f2-4f20-ad70-2460f9366f43
#> 2244           21731       7086        NA 58e217cd-53c0-40e7-b40b-62f53d246751
#> 2245           11062        537        NA 6c2c4e4c-82f0-46e2-bcfb-3ed5f452266b
#> 2246           20231       5503        NA b556dfd1-ed9d-45c3-9328-00236ddd54b1
#> 2247           20853       5905        NA 4fce55c1-1afb-4667-9115-0e239b72285b
#> 2248           18202       3438        NA e7f4b773-e944-4b62-a67b-fa0968862a37
#> 2249           18984       4138        NA d8fc7bb7-333c-4caf-9512-893c334f56ef
#> 2250           11043        531        NA 3ec2ad5e-f4e0-474a-98a9-0bde4ff5aab9
#> 2251           18316       3546        NA 972f93d7-158b-4464-b119-952f298cea52
#> 2252           22068       7419        NA 6e0bbdc7-fa74-41d2-b3de-4eaa8e670f87
#> 2253           21121       6299        NA 44750689-c0ca-4d26-86eb-ed40882f00f6
#> 2254           16859       2403        NA c2e80cfc-33a8-43f4-a61e-57048244e4f8
#> 2255           21924       6917        NA 60871327-0349-4246-8996-4a594addd8cf
#> 2256           17989       3228        NA dfb0b126-9c75-41d3-9371-04065db7506a
#> 2257           19997       5360        NA c1ea7946-fb7a-4a5b-9ed1-c58caf7f8faf
#> 2258           18947       4101        NA 9ea97d0c-6af7-46cd-a69f-b61a649e5a28
#> 2259           16688       2275        NA a18446e0-c116-4d12-83d7-6b12c5fb983f
#> 2260           20520       5572        NA d7f79a32-6a28-4e14-bedf-6186dec771e6
#> 2261           21049       6033        NA 5ec1f072-8ce0-449d-bbc0-5e8160836007
#> 2262           11151        554        NA 1aa8d83f-c084-4893-b9b0-b1296ec822f1
#> 2263           16159       1925        NA 9758b9e2-5809-4a16-890f-e239f0808723
#> 2264           22217       7214        NA 821e5d53-5518-45f1-9679-6edabb0f63c0
#> 2265           12902        843        NA 9779acc7-ed88-4a16-b78d-230ace9ec3eb
#> 2266           22067       6995        NA 1dada1ff-5475-425e-8f38-0728d50c91c5
#> 2267           21007       5953        NA 5f644070-97f1-4b7a-b0b1-4a341ac10771
#> 2268           18115       3354        NA 7a3d664b-e4d7-48e8-899d-5f7db6ecc4e4
#> 2269           22132       7116        NA fb301e65-4c65-4b60-a8ca-d149fcdbcd97
#> 2270           19055       4209        NA e805571c-fc68-438c-b8db-2d1286d99182
#> 2271           14650       1261        NA f7e3c1cb-6ec1-45fa-ad64-6b01957c34b1
#> 2272           16191       1945        NA 441eb531-1ec8-4f65-9174-78bc6adada63
#> 2273           20180       5183        NA cc67f4a1-99e9-48a9-84f4-245d7425ba6f
#> 2274           20646       5726        NA 3b59e08c-0c3b-42c9-a4e2-9b79103ea715
#> 2275           14975       1415        NA 0adb6bc1-17fd-4ca5-90ad-89ca06950bc8
#> 2276           16783       2327        NA 48dca4c3-c6ac-4122-aee6-26f7cd259824
#> 2277           20155       5174        NA 80637f09-673d-45fe-b874-bdb1a9c20ee6
#> 2278           21054       5843        NA ab5d4d72-fb1c-4aeb-887b-f6ca35f679bf
#> 2279           18916       4070        NA f340201b-a1b1-43ba-a47a-484a44334553
#> 2280           16182       1940        NA a36dd143-6b0f-429e-95ba-335559ff4845
#> 2281           19749       4848        NA 0c306d14-6fe6-4b4e-b87f-871c72441947
#> 2282           21897       7113        NA 3f4025d1-5782-43e4-9f42-8eee2da66a95
#> 2283           20771       6057        NA d1e8f343-9556-46f6-a238-2053a50b57d6
#> 2284           19805       4903        NA 4642915e-8c37-4692-9169-fa210b6efc8c
#> 2285           18388       3603        NA 5d6266d9-b034-439d-9234-91c6c9696f8d
#> 2286           17470       2975        NA e20a7609-8129-400f-87b9-d11dda3836b4
#> 2287           22218       7215        NA 32b2d6f6-a636-4d73-927c-361c1aa809f5
#> 2288           19025       4179        NA 15bedebc-839e-450a-86f6-1f5ad1f4f820
#> 2289            3807        138        NA ea357add-1a41-4a8b-8f34-bbfade7f4d98
#> 2290           19850       4972        NA be4ca0ad-f3d6-4b98-a37f-79d0cbc06390
#> 2291           20795       5845        NA 6e4eda90-2656-434f-a262-4e5e9fde3946
#> 2292           19996       5107        NA fd4241f9-ab42-4dba-a701-455b896eca28
#> 2293           21854       6878        NA 30487ab2-836d-4e4b-a46a-89e31b414374
#> 2294           20950       6156        NA 74af3906-083e-49d1-b8c6-556101390381
#> 2295           19599       4696        NA 9b4e4d1d-ad88-4c10-b1c0-b9116755c184
#> 2296           18070       3309        NA c7d0a740-fcf2-4971-b1b6-43761d984bf9
#> 2297           18983       4137        NA 28a084c0-14df-499f-bd1f-b975603626b7
#> 2298           15380       1643        NA 784b55b7-2822-4f38-9daa-a704151d1b35
#> 2299           19849       4974        NA e4739abd-d524-4857-85fc-ed4845462817
#> 2300           21235       6329        NA 051ccf4e-e2b9-474b-b0c1-d5f6c0aebb63
#> 2301           19829       4963        NA 1aede0b9-557c-444d-9a2f-4cc690e1563c
#> 2302           19263       4404        NA 7f59e894-4ce1-4803-a556-2e02add60bc2
#> 2303           19013       4167        NA d088fb7a-694a-4286-a51d-4a13ec398088
#> 2304           20139       5204        NA 14fb27c9-f390-4f58-a257-7fe2c7e6705b
#> 2305           18044       3283        NA f3bdf34f-1424-4e26-911c-3ff45e2f7bac
#> 2306           19537       4642        NA e6d4351b-d073-4ed5-9d5a-51ea2e9298eb
#> 2307           16198       1949        NA 4c751137-cb2f-4399-9e5f-1cec4b59611b
#> 2308           19906       5023        NA a4e669b3-32f3-4762-8b01-df6ef8dd0e51
#> 2309           15980       1805        NA 08e9f65e-cf4c-4af5-939f-a93d1cf34b2e
#> 2310           22209       7206        NA ef490eec-3c43-47f3-b4a2-ae41c95108b6
#> 2311           21362       6437        NA 19f35c8f-4796-4563-bcf5-6bab1679571e
#> 2312           16451       2118        NA 9fbcfae9-dd14-415c-8952-9b1b5dff0dfc
#> 2313           15239       1587        NA 8f24a248-b328-43ec-8677-67600e42a8f7
#> 2314           20134       5171        NA 1ea6e870-84ff-44ba-8302-f0f08623fa26
#> 2315           20770       6018        NA 58f18567-a050-49c4-aeca-b34499338b37
#> 2316           20922       6016        NA 9d95c076-0ceb-4ecc-9187-4f77354c2d1f
#> 2317           21551       6591        NA 7b2e40ac-417d-4a86-b239-66bbe91c0bfc
#> 2318           21752       6886        NA 53ed110c-f022-4759-afd3-1cd3436dbba7
#> 2319           21077       5937        NA 244c00c7-fe9a-4f4f-adff-1d5b9c8877e7
#> 2320           20830       5929        NA e0dc9dce-fe33-4092-b6bd-6af3cbcb762e
#> 2321           19865       5024        NA 814aa074-fc61-4649-b7a1-098bd3a199fd
#> 2322           21964       7039        NA d25a19a7-7de6-4476-b42a-833c8c3cb208
#> 2323           19961       5096        NA f7ff7599-a175-4a0c-b887-3ae9e596fc64
#> 2324           18883       4040        NA 9547fbb1-0d4f-4d9e-83b9-e2fa30463bb9
#> 2325           18969       4123        NA 736c12de-b7be-4c12-bed2-57856b7c8449
#> 2326           20353       5561        NA 8d77a320-4b95-498b-ba8e-f1db36f033cb
#> 2327           21307       6349        NA bdeffac7-3509-4689-af1b-29e9fe86b008
#> 2328           20538       5655        NA 67c2f38f-b568-4bcf-a40f-750cef707a05
#> 2329           18986       4140        NA dd7640e6-d81d-4605-b900-451bf40e5bd6
#> 2330           17113       2645        NA 872bbe18-ea66-415c-b556-6d15bda05b0e
#> 2331           20878       6009        NA c5614795-d8e3-4104-ad9b-edfb575410bb
#> 2332           14730       1283        NA b7b3c187-7447-4d02-94b7-5d3ee64ca530
#> 2333           19951       5379        NA 73c958ee-0d55-49e9-a613-f4475b444fd5
#> 2334           21031       5982        NA 1c468a8a-355f-429a-a12d-d8528fdc6aa2
#> 2335           22412       7433        NA aaf9cdda-8da8-4b3d-95bf-6fea8070a537
#> 2336           16960       2501        NA 8092ffd3-3f39-43eb-a602-b14fff77d413
#> 2337           21111       6216        NA 9448aee3-538c-4ff3-8781-bc848b086bfc
#> 2338           19953       5372        NA 17664e93-8236-4eb0-9505-4e71f43b5a7d
#> 2339           16791       2335        NA b9e6500f-2bb4-47b1-a3ea-1e3f925a3743
#> 2340           20335       5474        NA 1163ba47-560b-4705-82be-69967c4fc096
#> 2341           21882       6910        NA 5670f3dd-822d-4d13-a6c9-f981354441fc
#> 2342           21901       6915        NA fc116de9-ceb8-409b-b322-60659c73e943
#> 2343           18689       3867        NA 21199f7c-91bc-4295-a6c8-bc0cfd017616
#> 2344           18002       3241        NA ccfcbd2c-6e35-49b9-b131-ba2143665260
#> 2345           19890       5059        NA 9912fa7a-040d-40cf-99b5-0a7a28e0ba1a
#> 2346           11023        529        NA e79d8a12-4ec0-46d3-ae42-384f16deebed
#> 2347           21008       5861        NA 9d546e3b-0eb3-4926-a5ef-eb5e48b9330e
#> 2348           15814       1764        NA b612c556-1285-405f-9294-733f0302869e
#> 2349           15092       1494        NA 03af0e0d-a443-4b09-9ab5-4f2695248346
#> 2350           22465       7491        NA 7dcdf083-2f41-4788-a668-000cbfd1c8b1
#> 2351           17981       3220        NA c02b49d3-ddc1-4ffc-9f40-487199882fa5
#> 2352           12787        815        NA eeb9e3f4-e378-44ca-94b6-a724011ad710
#> 2353           11585        635        NA 46664226-53c3-4ef9-9aeb-f708e3e8269f
#> 2354           22028       7003        NA 475aa381-25d7-4d6e-a6ce-bc7601f4b034
#> 2355           14981       1421        NA cf45fa8d-13e0-4c16-a9eb-301b090ef83a
#> 2356           20796       6077        NA 03f235b8-e338-450d-9107-8103b7d0a32d
#> 2357           19091       4245        NA 83ffd861-ffb0-4560-a79c-52acd2b6cb1e
#> 2358           19311       4450        NA 704cc12d-78b1-482a-bd2e-06dc9a633ceb
#> 2359           11577        631        NA d7055ba2-f8b4-4407-b491-60c05dff6162
#> 2360           17215       2747        NA 7af4c94b-529b-4403-ab66-2bfed3fcf0c7
#> 2361           21053       6098        NA 8fe853ae-184e-4c65-a00e-70d2f141504f
#> 2362           22005       6949        NA ef422c88-b74f-4720-a831-947010c44ebe
#> 2363           21025       6065        NA 577dfac0-3f0b-45ee-afff-c851c6aebb1e
#> 2364           19923       5003        NA 7c7d286f-5c3f-4fe1-864d-9351499bd530
#> 2365           15827       1770        NA 1886860f-ad41-41a2-befe-fc2b5d361e38
#> 2366           20972       6135        NA a1ed2859-499b-4dbb-96b7-0d8728290de6
#> 2367           14534       1233        NA 706bc0ab-7200-47e9-9b09-726110eb83dc
#> 2368           18946       4100        NA e1677afe-2d03-4e11-b6af-ba3810720799
#> 2369           14583       1242        NA 6fc3f73e-9c19-41cf-aa95-df4d83e29e9e
#> 2370           13484        998        NA 93ff0e6f-fee3-41d1-a913-6111cd9ebef1
#> 2371           16051       1844        NA c7e51d4d-18d6-442b-850d-040411225b14
#> 2372           21494       6494        NA f00ccf29-884e-4914-b9f9-aca0090ee9e6
#> 2373           20185       5226        NA 09b78e4f-e683-4c5d-b35e-35cc0dbbf7e5
#> 2374           19956       5011        NA d1ae3222-8892-49bc-bb3e-0bcd7c74522e
#> 2375           20044       5124        NA b47fe0b2-e002-42a7-ab84-4b9e61adc9e3
#> 2376           14895       1373        NA cfc93f5e-105e-4a5e-88d3-f4279893cfa8
#> 2377           20037       5120        NA e2104140-4ce0-42a8-8b00-346b4a9258b2
#> 2378           14536       1234        NA 409d4cac-ee90-4470-9710-ebe671678339
#> 2379           20012       5112        NA 5df36deb-d147-42e9-9059-11cb86d35b43
#> 2380           19799       4985        NA 2b119688-83b5-4d19-acbf-fa2087035fae
#> 2381           18088       3327        NA 990a689e-200b-4cda-85db-85d6c3af911c
#> 2382           16668       2257        NA 3a29784c-832f-4e41-a4ac-71d4f9ad410c
#> 2383           22405       7425        NA 01d96b53-488d-4d98-8623-b2b29c7ebfbf
#> 2384           21804       6931        NA 48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2
#> 2385           20810       6012        NA 4afb77d8-4564-469b-be4c-5a8587df8046
#> 2386           19119       4273        NA 0afca88b-83e7-49d6-80df-1f68b21cca9f
#> 2387           18923       4077        NA 1a92b0ad-3eb2-4df3-bf02-04c4d9ffe10c
#> 2388           18987       4141        NA d5fde14a-1f7e-4db7-ad67-e6ea1cd415e2
#> 2389           19998       5377        NA 7c84bbbd-6bc1-4d3a-8fe9-263b807a08b2
#> 2390           19544       4649        NA ca8791bf-ca6e-46cb-9f79-dcf6283c292b
#> 2391           16782       2326        NA b2805ba0-6faa-404d-b0b5-7c8ccce85f3a
#> 2392            3617        131        NA f26bd260-a1eb-42ab-8768-bc8ad24e4f9e
#> 2393           22408       7428        NA 7483724a-dfce-4d6f-b499-481d37744fee
#> 2394           18075       3314        NA a2b2f929-e3a7-4d19-888f-49600cf718bf
#> 2395           21230       6568        NA 59eef23b-4c9a-4b8b-b681-6d8e24aa9252
#> 2396            1658         58        NA 587d0a98-7ec5-45a5-adba-8af26e8f256b
#> 2397           22407       7427        NA bad1a0c1-7ea2-4898-b5d9-ad1aec45c8b1
#> 2398           15263       1603        NA 16c67c97-ffd9-4f92-917d-ad6124ce1f6e
#> 2399           21807       6865        NA 1ea7affb-e5e7-491a-aaa3-55e200b2eb48
#> 2400           19950       5010        NA 383f4814-6836-4766-a297-fc063e8509cc
#> 2401           19281       4421        NA ad2a1d03-020b-487a-bd5f-7ca9fbc250fe
#> 2402           16830       2374        NA dffa69ad-331e-4f09-ae38-40a5a4406be6
#> 2403           20970       6168        NA c00e0b6f-367f-4cf5-ba11-d23b1aa114f1
#> 2404           21751       6967        NA df2caa7b-29f4-4391-8ce0-b1b711196379
#> 2405           21960       7135        NA 81997ce2-9e70-4014-999a-25ebb405dbf6
#> 2406           20793       5902        NA a296f2fe-7af8-4796-b50a-28ef010d0933
#> 2407           20478       5722        NA c99cb557-3364-4755-a353-82737ba1de6b
#> 2408           19668       4750        NA 4f4f888c-08d3-4ea8-ab8f-0ddcf8bf195e
#> 2409           19120       4274        NA aecc1809-4628-4c3a-8b2b-c8f2858d2492
#> 2410           20875       5846        NA 754faf0f-40f7-45f0-b23b-6ce990ecaf26
#> 2411           16790       2334        NA c682e8ea-fe48-45d2-af60-682a6125ab22
#> 2412           20963       6171        NA 16da963d-a300-4d72-8e4d-7771196c03e9
#> 2413           14587       1244        NA b228c353-bb1f-4ba8-aa6d-d18ecf297259
#> 2414           18418       3631        NA 2182217e-7580-4602-babb-c73beee0eb2b
#> 2415           15666       1728        NA a511a53f-8628-465b-b7ef-79c02dcef127
#> 2416           16400       2086        NA f42981b3-d272-4438-a024-f28277392ec8
#> 2417           18203       3439        NA 658f1215-e84a-4170-aaea-a6e8bacc8ff5
#> 2418           16417       2096        NA 5d03f256-0569-4908-a0bf-5f95325c8be3
#> 2419           16832       2376        NA 1c435ae4-8e29-4006-905b-7fa34f87604b
#> 2420           21137       6286        NA e289cb0a-2447-458a-a47b-5f843c0edd3c
#> 2421           13479        996        NA 29ac0dbd-2d1c-40da-88ba-36f0d3856d05
#> 2422           18970       4124        NA a80f1b08-3977-48b6-97e0-5991ca26bfae
#> 2423           20366       5436        NA ae6a5f6b-20ac-4b44-9d05-b75634aa1199
#> 2424           21145       6405        NA b4f07920-56e3-4e9d-b787-014b2f940b0e
#> 2425           14878       1359        NA 226723b9-fddf-45ca-8245-d8cc5442c400
#> 2426           16143       1913        NA 63a656b9-bcbb-44a3-95c8-e8a63660e71b
#> 2427           16353       2055        NA 13112f4f-03c9-432c-a033-454870cda46b
#> 2428           20674       5767        NA ff214afc-4e6a-48c1-986e-d52271c6ad8e
#> 2429           16669       2258        NA d5ba025d-5e9d-452d-8b86-f68a3bff5e22
#> 2430           22103       7027        NA cec656f2-7a0b-4993-9489-7a0cef088c0f
#> 2431           18966       4120        NA 3c151ffc-4fd3-4785-96e0-3a257e99706a
#> 2432           19907       5040        NA 55414554-e550-435e-a108-6047a9318e0a
#> 2433           18239       3474        NA 2967c556-a7b2-407a-8013-cee8d99b41cf
#> 2434           16678       2267        NA 1b8414b5-3db8-4e89-8bcc-7ac7f7d0b931
#> 2435           18951       4105        NA 92c77d16-f8bf-4716-bcde-6328838f4e65
#> 2436           16778       2322        NA acb7169f-3ffa-4386-9866-e06af6ed7fef
#> 2437           19952       5371        NA eb864600-7562-491a-b7a7-9eb3068dba06
#> 2438           18904       4058        NA 74473bcc-5bdb-4650-8549-8a8a12874cbf
#> 2439           15122       1513        NA 436e0e45-f07a-4674-b21f-4fd8e1f24583
#> 2440           19481       4594        NA 09f4ba1d-6eab-4e9b-9f22-a5ff33f0f2d1
#> 2441           20713       5816        NA 987c5e68-21d5-4bcb-a5f3-2e09cc512374
#> 2442           14875       1356        NA 94ee954f-baf6-489c-b50f-3b60b2506f33
#> 2443           18060       3299        NA e8fa43ed-ae19-4603-b69c-a555664bd368
#> 2444           16067       1857        NA e00a7f77-8320-4415-8c71-ba9c5d0240b8
#> 2445           16294       2015        NA 6c434322-0ee2-4df5-a5e8-1a6e5f12285e
#> 2446           18949       4103        NA 764df188-bced-410b-ac54-84a86ef125a9
#> 2447           22073       7025        NA ac77e2b6-e094-4d79-a162-2d868b76e3d5
#> 2448           21867       6792        NA 1a8eff7a-1057-47c9-aa82-3dbf3f47a76c
#> 2449           22074       6975        NA 9b747474-db7f-4137-a559-38402c828139
#> 2450           19124       4278        NA d2e2b313-6769-48c6-a217-d167f04068df
#> 2451           20773       6005        NA 2a86a6b4-58ef-42f5-aff9-d5d979bea6c7
#> 2452           14901       1379        NA 67da5b5c-0db9-4fbc-b98d-7eb8e97b69f6
#> 2453           16789       2333        NA d0b7699f-5e18-4631-813d-2f709ee4b281
#> 2454           14088       1134        NA 294acd0c-63a9-429e-afaa-2bfeb00d7988
#> 2455           19139       4293        NA 8925f38d-5c75-42c7-aa52-e3bcca16a21c
#> 2456           18761       3931        NA f1bce91f-ba57-4015-b74e-dee3df872c98
#> 2457            1410         49        NA abd73d50-ce60-47f1-b37f-2f9a05b0d7b9
#> 2458           16995       2535        NA 6f1bc007-d446-48f2-a6e5-58c5e53df94f
#> 2459           14864       1345        NA 1b0234dc-a434-4c31-bb41-6457c068a0fa
#> 2460           19891       5041        NA 75a74283-5ab6-49d4-bf2f-e6fcaf91ec36
#> 2461           22401       7421        NA 5180ecc5-bbd9-42b6-b227-c5efdb53cf80
#> 2462           18167       3406        NA 897fc741-34bd-4f34-a1ed-125d56805b70
#> 2463           21490       6485        NA e9348fc5-273d-4ac3-9760-462f37c025dc
#> 2464           20778       6056        NA e6eb9d50-9231-44ff-89eb-7f7b996e042f
#> 2465           18851       4846        NA 0c727216-dadf-41d5-80e9-154ba9261663
#> 2466           14776       1301        NA 09a1fe57-c026-4ca4-b084-48b8ed9c106f
#> 2467           18096       3335        NA 45f4b9ae-f1be-454b-bff7-8f808e6f0268
#> 2468           20996       6173        NA e8e8a5fe-00d1-4ffc-9401-9e5cb254afea
#> 2469            6489        260        NA 73e133bf-d3f7-4fda-bd25-2fde66cb8ee1
#> 2470           19330       4464        NA 7738fea8-7ea2-4c4c-b589-bca90b070819
#> 2471           16041       1837        NA 42de9d1d-0352-460b-9172-9452414fd7fd
#> 2472           19763       4863        NA 5c079a21-ae9e-4b38-a69a-47706fa8dd67
#> 2473           18973       4127        NA 6608fdbf-6c93-47cc-ad44-9da2fda598ce
#> 2474           22400       7420        NA 7a52585c-03ce-4b03-91cc-742399b8399a
#> 2475           16510       2161        NA f77479d7-51a5-41f9-8924-69526dd078cd
#> 2476           16557       2189        NA 8d53ef4e-7d88-40c6-a390-78d166330bb0
#> 2477           20360       5284        NA 72cf3127-3953-4fd8-8049-3de1b6fa9825
#> 2478           17217       2749        NA b040e601-ec40-4757-bf3d-71bf64ef99cf
#> 2479           21514       6553        NA e25b6e0d-efa3-4425-bab6-5f846b902195
#> 2480           16834       2378        NA 5827b78b-5150-4ba9-bc46-902428e99a31
#> 2481           21765       6996        NA c6c50d09-f14f-41c2-9eb3-87514f0121f6
#> 2482           20000       5370        NA d1e280f9-6df0-45d9-841e-0cfe6ea081b1
#> 2483           21354       6610        NA c5175598-1392-4eaa-ae62-d99811a0c477
#> 2484           18687       3865        NA 55473843-5bc3-4673-9175-3d7203aef040
#> 2485           16807       2351        NA 92da4f95-8f58-4379-b236-ee4ab8ff5daf
#> 2486           19448       4564        NA fa8fbc2f-5160-4aaa-8f86-bbba666368a3
#> 2487           15012       1443        NA bb7f4f60-57a4-437d-9541-a42abb1d1f53
#> 2488           12308        734        NA b070601c-7985-4a1c-b71a-9f72bb5dbc59
#> 2489           20847       6082        NA 945aa5ab-3fde-4091-b360-66c2da384f2c
#> 2490           21119       6221        NA eb995f08-f023-4338-bc36-5def4a83f59e
#> 2491           19833       4966        NA c2b21a35-81fc-465f-9476-6e5cda608288
#> 2492           18006       3245        NA a3cf95a2-4994-4ee4-a07d-b27004183a6c
#> 2493           21205       6565        NA c03a2bf7-49d3-48fc-9062-0a2937a17647
#> 2494           14791       1310        NA 1c1f0577-f9c7-4406-b2ab-b9e42ddb1af3
#> 2495           22023       6889        NA 1a7caa50-2fa5-4651-85d6-05cda9d9b3b3
#> 2496           20556       5555        NA ae0e9024-5df1-4b5b-b928-3c0e3429fd32
#> 2497           20797       6089        NA 7f48c754-002d-4d0c-ba40-8c402f95a7c4
#> 2498           20361       5285        NA 70473218-5ae3-47b4-86fd-151e68f1e8b9
#> 2499           22456       7481        NA 31815cf3-6f59-439c-9a10-8548151da1f8
#> 2500           15100       1500        NA c3bf8d3e-3b2e-4f9e-ad74-c0a684035f17
#> 2501           22119       7075        NA 527dfee0-a242-4dc7-830a-ab7028308259
#> 2502           19063       4217        NA 2ada91b0-036e-454f-83c3-6d939ff584a9
#> 2503           19064       4218        NA 3e2e74e9-18a8-4275-9437-b275db27e2ff
#> 2504           20817       5911        NA 917d4304-d039-42a9-9c43-84e3786f105c
#> 2505           21496       6554        NA 0e3160c0-d5ad-44c7-8c28-b31c1f6a7e03
#> 2506           19318       4454        NA 5aba3610-ab55-4922-ac46-806ded5eb8bf
#> 2507           15974       1800        NA 7b96a836-666b-47b6-a0a7-9dbb0b4c53e8
#> 2508           20932       5872        NA 628a6a0a-4fde-4024-8d7c-28674953d5af
#> 2509           21717       7049        NA 3ae9f0fa-c711-4663-80cf-4707856c07aa
#> 2510           22340       7352        NA da92303d-1419-4cde-aa52-b120635f364a
#> 2511           13887       1077        NA 4f0053fc-5559-4551-bd81-dcd1cdf3a9ec
#> 2512           16768       2312        NA 5b496c58-83ef-4763-b1e0-5f052af46b3e
#> 2513           20052       5126        NA fc7f8c60-4fc2-45d1-9611-e803dbb1611e
#> 2514           20077       5137        NA 4aae1781-1eec-48c0-b41f-e4fee61c3c32
#> 2515           19755       4854        NA 6124c4d4-337b-4926-b3f8-d2feb1c16fa9
#> 2516           21747       6803        NA c90471cc-fa60-4416-9388-5aebb5d877eb
#> 2517           19627       4719        NA 7b108d08-f950-49c6-be33-85cb9222e655
#> 2518           13610       1011        NA f7163bae-d4da-4d38-847e-e0315605b9d0
#> 2519           14900       1378        NA 50287cd3-afea-47f4-aa56-98a82aa87cf0
#> 2520           21050       6060        NA f84bf885-d6ff-4fc8-8b6e-64bb3bceb17d
#> 2521           18332       3559        NA 479b4819-3377-4255-9156-c1ce82cbf1d4
#> 2522           21639       6714        NA cd6cfc03-9ffc-4a2d-8dd3-7dac5915e637
#> 2523           21064       5946        NA 278a0811-98b8-42d2-96e9-160b7f364ae0
#> 2524           19892       5054        NA 2df83b38-7b2b-4aea-91ee-bfc5974486a1
#> 2525           15988       1809        NA 36da9517-98fe-4258-807d-6d7e4b334c2f
#> 2526           22431       7453        NA 4f13ee42-4af7-4719-bce6-60a426036fd5
#> 2527           21521       6640        NA 8de972e7-c997-4444-83a5-10f975d4fff6
#> 2528           20748       5959        NA b2da84c5-e51c-47d8-bccc-888f8caaa8ad
#> 2529           21940       6888        NA 27732f2b-2009-4954-a0a0-d29f5ce1abdf
#> 2530           19087       4241        NA 2157df58-ca82-46cd-9897-261a80060292
#> 2531           22434       7456        NA b5e33405-ea22-4fb7-97d8-8b324d6c90b9
#> 2532           11382        594        NA f0f60621-a075-41f6-a07d-74fd9e1348f2
#> 2533           12247        720        NA e56569f1-eaf4-473b-b92c-fc5c84cc7338
#> 2534           21136       6296        NA c8d98dc8-ca11-40bc-bd72-7e2f4bd2ba3b
#> 2535           15200       1558        NA a0557106-4517-4516-a5e7-d46cba52fe44
#> 2536           19086       4240        NA 02c7bde8-3715-462e-a268-95b3f2e19311
#> 2537           22423       7444        NA fa1bd78e-99e4-4745-9896-cfea01392038
#> 2538           22070       7125        NA 2f471656-9ecc-42ea-977f-0c56756d0557
#> 2539           17512       2993        NA d6ce0b64-9526-4983-8c3c-7f14f2918f8e
#> 2540           21069       5999        NA 75f6779f-4f5b-4059-bed1-c79bd2b40b49
#> 2541           22021       7413        NA f48df73d-5d7f-4b84-868b-7cef4d77a282
#> 2542           20379       5668        NA 5fd40b6b-d81a-4a4e-a394-53ed7e58511f
#> 2543           16822       2366        NA 538a03f2-ae79-45e0-bb22-01b9a8517e77
#> 2544           22426       7448        NA ca8fe3b0-337f-4354-9010-3951127786a6
#> 2545           15231       1580        NA f6244333-6b6a-4e61-bc2c-cb6ffc2f318a
#> 2546           12298        731        NA 2c48a13f-bac4-46f8-b405-7ada72dd543e
#> 2547           19908       5053        NA e1a79497-3e4b-4820-99a6-8ecbfd03995c
#> 2548            8750        391        NA ecc4f0c1-64e0-46cc-9b58-91c2b215e62a
#> 2549           20046       5376        NA 9a4fd6b9-9ddc-4161-ab9a-3013a792c70d
#> 2550           15227       1577        NA 186014e2-3430-4510-867f-a7013daf0bb8
#> 2551           16642       2240        NA a1902bda-47bc-4436-9165-2d79620e4030
#> 2552           20894       6003        NA 8bc51884-c9db-4745-8731-20eff25f41b0
#> 2553           16271       1999        NA df483199-088f-47d6-b8fc-1574f74bb4e2
#> 2554           22429       7451        NA 112b95ea-d080-4aa7-bedc-5755c6c6b80c
#> 2555           20981       6119        NA 37849d01-7d7e-4a35-8840-e17cacd73d85
#> 2556           14375       1192        NA 9a612961-9fdf-47d0-b7ca-32b55adb1f61
#> 2557            9700        471        NA 94285cbc-7338-4732-b59c-3b1082cd5d83
#> 2558           18825       4865        NA 5c66adc6-62d8-4f29-aadc-11b5ed21495b
#> 2559           11767        667        NA cee49408-2e91-487a-a8ec-d3314ebf539d
#> 2560           19834       4969        NA 503eb9a7-83ed-4b96-b0f2-7afe4920bde9
#> 2561           16925       2468        NA 9000be32-15ad-4c43-bf8d-79a9c7113cdd
#> 2562           20718       5824        NA 812162ea-0b21-4da6-b7c9-383b1e8ab60e
#> 2563           17550       3008        NA 4278baf5-f774-4031-ab0f-12a9c7e43c45
#> 2564           15190       1550        NA 949c34b9-150a-4a1b-b884-1fcf1ebaabdf
#> 2565            4737        181        NA 22fb2b54-4936-4e8a-a48d-62096c0c9bb1
#> 2566           12982        862        NA de816e24-8442-49a4-99cd-dde7e7c05863
#> 2567            4314        167        NA 41c44740-d0f6-44ab-8347-3b5d515e5ecf
#> 2568           19861       5052        NA 15965c39-17be-4338-911a-8f337f48a3ce
#> 2569           11932        676        NA 166292fc-629e-4c7b-b7bf-f572ca9eeb43
#> 2570           21788       6885        NA 4b0a90db-f007-4ac1-8542-b531342b9da5
#> 2571           20973       6187        NA 5c651ad4-7aea-46d9-83c3-3d0cc35c7723
#> 2572           18803       3969        NA 7f46a7be-286e-4bfe-8778-d03dbe600ce9
#> 2573           15185       1546        NA 5ec072b3-2837-4cf1-bb4f-ecd873949626
#> 2574           17965       3204        NA f4992e8f-73f0-43e4-a9ca-c83953fe3f5b
#> 2575           19032       4186        NA 987fb8b2-98ba-4a01-bd84-d962dcdcd053
#> 2576           19954       5375        NA 4deb42ec-bece-4b00-b697-3caeff8c1997
#> 2577           18576       3764        NA 23557a45-6dc7-43c8-a4c6-f53ae72ff660
#> 2578           18942       4096        NA 410037b3-d7f2-4188-9d87-53bf51fd31fe
#> 2579           16795       2339        NA f552cc18-aaf5-48ef-87f1-4791a101e553
#> 2580           16268       1997        NA cc58971d-d24e-44a3-9f09-1b2289e92577
#> 2581           19130       4284        NA a10ec19e-0573-4a53-9a27-5285ce9fe85f
#> 2582           22033       6793        NA e39240b4-cac5-453f-b99f-6bbbdd1c9c82
#> 2583           18072       3311        NA 6d9f5816-f0f7-4562-9db0-26b1eb487f68
#> 2584           18901       4055        NA 93ed8c6f-b676-46d3-bf82-6155e89b4a68
#> 2585           20506       5409        NA 2fa75e05-cac4-4b40-8924-dbc9ae0c959c
#> 2586           19335       4468        NA d6647491-8a3c-4f9f-999c-823823bd478d
#> 2587           16593       2214        NA 5afe93fd-0caf-4cca-83fc-7f405bebfa3e
#> 2588           10974        515        NA 2142a164-48ad-47d6-bb27-0bc58c6b2e62
#> 2589           20314       5269        NA 225d9e5e-598c-4b32-9c74-d7df2018500c
#> 2590           18673       3852        NA a0498a95-9dc3-4df5-8f51-a1564fb3de57
#> 2591           18896       4050        NA a138f20f-8a41-4d0e-930a-a16b6cb597b3
#> 2592           18880       4037        NA baa61bb5-f8d0-4f90-bbe2-028576b8d33d
#> 2593           22430       7452        NA 3513b0ad-2b0b-4e07-a401-54cd04106ea2
#> 2594           11056        536        NA 16e33176-b73e-49b7-b0aa-c405b47a706e
#> 2595           20550       5705        NA 50d378c3-a33e-4f30-a5be-7c13bf52ff66
#> 2596           22432       7454        NA 19b027f5-8d0a-447e-8511-b98e4c95f9f4
#> 2597           21675       6960        NA 93c17735-5275-45cf-b3ef-620351c62313
#> 2598           16597       2216        NA c48c21d9-0ae5-478c-ad34-30a660cfa9b8
#> 2599           21138       6290        NA 85e18d5f-8a3f-4b6c-88fe-dfdaaed5554e
#> 2600           19922       5374        NA bdb77276-7191-4454-85c2-e1693a33d709
#> 2601           13969       1101        NA fa9d0178-a2a7-402f-ad11-c7bea0b80705
#> 2602           17511       2992        NA e2ba47b5-f503-42fc-86d2-2f6061551a30
#> 2603           22419       7440        NA 2a41d03d-aec1-4821-a241-6fbe1878d3fd
#> 2604           20384       5671        NA ab741f46-d660-48f2-a910-774d0514d2e4
#> 2605           19062       4216        NA 1c41b4ac-bec1-4943-b0a3-5b57642faaaa
#> 2606           19300       4439        NA d0fa2103-69a1-4ed0-a3cd-4eb8d5e342c2
#> 2607           16035       1834        NA ab49bafe-7023-46ce-9606-9a9823eabee6
#> 2608           22084       6829        NA c87aaf5b-e1e9-4d18-b0f1-f328b646031d
#> 2609           22152       7150        NA 099c975d-104f-4bac-9815-52346771a515
#> 2610           18369       3589        NA 3c7b7eef-6c99-4f88-8b1c-cdf93864f2f3
#> 2611           16930       2473        NA b5fb8706-5436-422d-a4df-2d5235b17aee
#> 2612           21581       6682        NA aee4f924-aaf5-4351-b503-9fce1ade59c5
#> 2613           18924       4078        NA 6db40c6e-7d09-486e-b80d-1d8008547250
#> 2614           20811       5908        NA aac96096-362f-4254-952a-5b3b04472f19
#> 2615           19259       4400        NA 486d1b54-2f4a-4fe1-8935-c8659a8dc942
#> 2616           17994       3233        NA c909532a-693e-4e8f-b853-fbf41037c100
#> 2617           16194       1947        NA 016d31ec-9b32-47e2-801b-9724c0a30f62
#> 2618           20921       5966        NA b84b99f3-5fac-46ed-b892-5800159edbf9
#> 2619           16812       2356        NA f024c29d-c4e6-4f23-b8e5-c7788bc87e47
#> 2620           20940       6125        NA dcbe3642-aa52-43e6-8f4c-4b9809377c4d
#> 2621           22422       7443        NA a78206af-6d78-4b4c-90e3-dc4bd62ac80b
#> 2622           20866       6048        NA b7d42dc5-dedc-4cd9-b5a9-77cd30fd7ea7
#> 2623           20045       5373        NA 2a97c476-70e9-479a-be0b-11ebaeee11d3
#> 2624           14096       1136        NA 3a2a4022-a54c-4325-b521-e46e460559ab
#> 2625           21880       6887        NA ff0950aa-357f-47b4-b4dd-d4374413ffc1
#> 2626           20380       5615        NA 7bce07de-7179-459c-97a4-279fb53641a2
#> 2627           21310       6379        NA bd12a2c0-e6ce-460b-9f09-27b75c306608
#> 2628           11545        623        NA d53cd589-73d6-4aad-ae69-e979670a0d14
#> 2629           14988       1428        NA 496680c4-2432-481b-883c-6f311da3a4a3
#> 2630           21060       5936        NA 3b69032b-a321-4da8-9303-9d21a1970de6
#> 2631           16875       2419        NA 9be53b35-e7fe-4f28-97bc-09d87f782ced
#> 2632           15758       1750        NA be449b4d-799c-4045-8e9e-e8a7fd7c2cc8
#> 2633           22425       7446        NA 397901eb-5589-4f0e-8c02-f50509e22f3c
#> 2634           22154       7152        NA e44cc736-fe98-4b80-a138-4ebc5f087335
#> 2635            2982        110        NA a527b7db-0b52-4379-9e4c-2e08c1fe1bed
#> 2636           21360       6581        NA 8f442456-427c-4d96-8596-a7928074a094
#> 2637           17123       2655        NA b0b804c6-b75b-4497-8f47-86ce924f862a
#> 2638           15327       1626        NA 401c4b1f-8302-433e-a84d-9d3101a30f4b
#> 2639           19862       5030        NA 60d5e71e-e127-463b-8e6b-26a7dac3db76
#> 2640           15206       1563        NA 2c8e1238-0125-484e-b4f2-c0d08b5ef952
#> 2641           20297       5673        NA 84b2d5bb-4d5e-4661-b9e2-b3049f3d1c03
#> 2642           21578       6679        NA 8471f3e4-b507-4554-afbb-df333694360b
#> 2643           19842       4978        NA 0813c5eb-608c-4a6d-8bfb-ed3538767e90
#> 2644           12951        855        NA b6782b61-89e1-4a9d-9ad1-7715eb6ff628
#> 2645           19066       4220        NA 29c53cbc-9d94-46af-b46a-674f9c1e5c79
#> 2646           20862       5928        NA 55d7adb4-be58-4c59-9a6e-1ceb73c10c4d
#> 2647           21484       6461        NA 56b26b71-8f1e-416c-a7e5-62cd67c98f4b
#> 2648           14590       1245        NA f5fe1cf6-ce57-4d6f-b2d4-6ebc3a18e336
#> 2649           14010       1112        NA 77c36756-9d3a-4746-bba1-8ff32542cf74
#> 2650           16171       1932        NA 0d038341-cd66-4651-93c4-e76c6d218135
#> 2651           21323       6378        NA 010806af-e6ba-409a-b7fb-a119714238f6
#> 2652           10067        497        NA 9aec0e35-cef7-4093-8de6-49868ca8644b
#> 2653           20141       5206        NA 927dfc54-48f1-4566-a58d-a1351e8ad704
#> 2654           13799       1049        NA 5812204c-6dae-4450-8011-99e0f72864ac
#> 2655           18868       4026        NA 2a78e2e7-4ef3-4cdd-85e8-0d254b65143e
#> 2656           20055       5128        NA ddff375b-365e-4af1-b9ae-58d03b1b1195
#> 2657           21845       7064        NA eb3c219d-6489-4f2f-a542-bdbf7423a325
#> 2658           19065       4219        NA 25cc3585-6194-4786-968a-2600db46b6c6
#> 2659           17959       3198        NA 87c481c7-7414-43cc-82df-19ca0c2ae22e
#> 2660           18957       4111        NA 02779042-2b4e-4fa9-b598-364fe01b523a
#> 2661           16441       2114        NA 3d94860c-82db-43fd-aa99-3b72390111a4
#> 2662           15197       1556        NA a2270ced-ae01-4dee-a177-9dca7c5b20cc
#> 2663           20001       5369        NA 7f969cc9-59cd-43e9-bcd0-c1885f0b18b7
#> 2664           22022       6844        NA 34f2abac-446d-4f6e-b857-5ca54918a4bc
#> 2665           16172       1933        NA 1f301468-0e6e-4a38-9c73-919796ebaca8
#> 2666           11398        600        NA 0dfd5d3f-ebb5-4efe-8df1-2ebda0e5185e
#> 2667           22420       7441        NA 413b48a9-4af4-4eeb-875c-44ad76b519f5
#> 2668           13730       1031        NA 1306d6f4-5de3-4bec-9c86-3e5ab8e2d081
#> 2669           20732       5949        NA 9f102200-82e7-4fce-a033-2a06d16c35fd
#> 2670           16820       2364        NA 1f7fb52c-0320-4a3f-af26-608e99699fb3
#> 2671           22421       7442        NA 3c136bfa-d96a-4b39-966a-43973010c5b0
#> 2672           16903       2446        NA f22b34cf-6ecf-4522-9c77-1da275dfda7d
#> 2673           21569       6662        NA 5aab93f1-bc81-4d83-b105-d579a14eb349
#> 2674           17005       2545        NA d0f9112d-2496-450a-9fc5-d2d01b4d2454
#> 2675           19296       4435        NA b0719e3d-199b-46e5-a2b4-1091f6fd5c0d
#> 2676           21676       6834        NA 3d2f2c64-3d4e-461b-a3e7-677f74e6c5f8
#> 2677           18990       4144        NA e4f25a37-74de-4bfb-b6c9-f50a4fab0b87
#> 2678           22418       7439        NA 62d557bc-ee99-4703-83f8-e7b1ca0c89e7
#> 2679           18879       4036        NA e21e9081-44aa-464b-8d3e-83918d48b921
#> 2680           20372       5289        NA 54c60acc-65ac-4e63-a988-697ee26e862a
#> 2681           19732       4828        NA 4e87e1a1-8b89-4738-a527-87eb0663c35d
#> 2682           18361       3582        NA 958c9833-2e55-411a-8e0e-ecc229bbeb14
#> 2683           21042       5859        NA a9e580f2-1fbe-46fb-887c-c84089b507e4
#> 2684           18209       3445        NA fcfa9d4b-3e09-46ac-b4b6-77d70a5f304c
#> 2685           21734       7496        NA 5e63e674-adf3-4f4e-929e-4a0ff2cfb1df
#> 2686           17290       2822        NA d6d41a89-a8af-48b9-bf75-561de99a1d87
#> 2687           18422       3634        NA e0a31d02-9d1c-4dab-adb4-a5d9bbee8b36
#> 2688           19280       4420        NA 6a8b0081-6ac5-4eb7-8840-8fd633568e78
#> 2689           19134       4288        NA fb69c7cd-75b1-4431-8648-daec4817974a
#> 2690           21945       6877        NA 446f9da4-8ca7-4552-9674-e0391ae2a2d6
#> 2691           16811       2355        NA c63eb787-fa1f-406b-82a1-2eed0a65b58c
#> 2692           18972       4126        NA 5ff63fe6-3b33-4f0d-bc51-d5e84d862b08
#> 2693           16249       1982        NA 76c630cf-0fd3-4210-a73d-9347da9d9d66
#> 2694           20080       5368        NA 4296dd5b-261c-4c64-b1e2-e2afcda719c5
#> 2695           19971       5082        NA c0520c25-b89b-4f4b-a905-dd0c5612cf88
#> 2696           19254       4395        NA 46e11bbc-8d8a-4b32-96a0-d059472b8fc6
#> 2697           20395       5388        NA 3f178f8f-97fc-491c-ae5a-4c2544e611ef
#> 2698           20885       6070        NA 4bbe8ab7-3ae2-42a6-a471-fd2b344843a2
#> 2699           18013       3252        NA 81ba31db-e21a-4944-8d0f-4e12cb83e3c4
#> 2700           21923       7136        NA eff8e3ec-98e4-49c8-b865-436e3abb0870
#> 2701           21044       6030        NA 198b8c48-abe7-4fcb-9aea-6519fa650b18
#> 2702           16072       5792        NA 186a4bda-d3b3-48c1-8ed7-cb4ad1014062
#> 2703           19955       5365        NA d187953e-102f-4f78-b840-79fb385fa15a
#> 2704           19216       4359        NA 8e06b4a9-d210-465c-80b7-9bae20dc64b2
#> 2705           18943       4097        NA 2afc82df-1048-414d-bef7-1692198cedde
#> 2706           21875       7024        NA 63758554-7225-48de-a553-c43c03419c49
#> 2707           20956       6124        NA e3601423-c3ac-4013-bbe9-3478e2b7e1dd
#> 2708           22104       7030        NA 8d617c67-6e6a-4afd-b5c8-f98dd744c36d
#> 2709           21444       6423        NA 39e4f09f-54bd-4d2c-9d71-c6e35d1bd0b0
#> 2710           21403       6400        NA fe9c0458-1a1a-4e88-b974-2de7426fa520
#> 2711           22092       6782        NA 9947409c-4a34-45f5-99a1-aa6daa13c430
#> 2712           19077       4231        NA fe1a1b0d-1d0e-496c-8777-2b5aff1f7231
#> 2713           13166        917        NA a25f92e6-6e67-4463-a32f-77976807b3d8
#> 2714           20827       5935        NA 38bf12bf-5a77-4b2a-9d2a-e63008fe8be1
#> 2715           18069       3308        NA 0777efdd-14bf-4561-bbb4-20f926fe115c
#> 2716           22393       7410        NA 4faa0d20-a129-4bb4-9fb1-10690c00641c
#> 2717           19841       4976        NA 0a1be8da-5839-4768-bfe5-9fec74908268
#> 2718           20002       5366        NA 8442c8f8-7fbb-4a0b-8407-355c2dfdf72c
#> 2719           19373       4501        NA 87c4b182-e4bc-4f35-97ec-8537a2665875
#> 2720           18875       4032        NA 5ba11bd2-e764-4dea-98e1-dad01a21cdd3
#> 2721           17451       2964        NA 710f3162-8649-4eba-a707-1e6ea0cd1577
#> 2722           18112       3351        NA a12890df-5475-4689-895c-6b54abc71b1f
#> 2723           21112       6215        NA 0a3aad9f-54db-4f86-92d3-c2faab45c046
#> 2724           16766       2310        NA 9aac7466-6718-4c40-9431-e51a3bfa0ab0
#> 2725           17940       3179        NA 91135683-4a52-48dc-9f1d-446502308e52
#> 2726           14867       1348        NA 058c99fc-470c-4579-a165-03e043335cc1
#> 2727           20248       5460        NA 622c2cf0-a29e-4943-8819-f9dc48f3d7a0
#> 2728           15113       1507        NA a76abacb-2309-477c-b075-ec05ccf938ae
#> 2729           19132       4286        NA bb4f4ea1-d62b-4a60-a597-6fbdf8f481f4
#> 2730           18279       3513        NA e7b9abe1-2a5f-4029-90f5-7fd174750093
#> 2731           18873       4030        NA 4217a140-cd83-4b9b-8493-b5b27688d055
#> 2732           21207       6307        NA fceeeac9-470d-4864-bc19-36c5d03013b0
#> 2733           22017       6937        NA 5c52edd1-7566-483d-9564-03c21438fb29
#> 2734           21450       6472        NA 5ce0fd7f-bb8f-4d0b-a995-1473e148d45b
#> 2735           21120       6220        NA c727b9d9-9776-415d-953c-9ae046e10a05
#> 2736           13731       1032        NA 7ec15a09-9237-43cc-9401-fb76cc418022
#> 2737            4895        187        NA c8af316c-0e46-41ab-bce5-e63a1730c356
#> 2738           16690       2277        NA 14656a50-c687-48e0-a2d9-819709e3ffa3
#> 2739           11963        681        NA 155b36fd-7287-4cf5-a065-6adc74fa866a
#> 2740           15112       1506        NA 55e1ecbd-96c5-456e-833b-9cd3f046f3fc
#> 2741           17179       2711        NA 2c259733-ec2c-4e3c-bb7b-34dc0d37dc34
#> 2742           20053       5127        NA d2023f5b-f73b-43ad-a816-f10dadfdfaed
#> 2743           21809       7013        NA d446443f-130c-4bce-a300-a15cf66f27f1
#> 2744            6739        268        NA 2fda010a-8c62-4c07-b601-4ba03f57e6af
#> 2745           13791       1048        NA a212c5d8-67f8-48b9-99be-2c121ee56366
#> 2746           20863       5889        NA 6cf9a842-dc3f-408a-887a-97b0b07d4289
#> 2747           18464       3664        NA 260e8f87-1d08-4c69-8e2b-afa825c1a68a
#> 2748           18073       3312        NA 697200ea-cabb-40b8-aeac-e52763310306
#> 2749           18375       3594        NA 86363c46-567e-41d6-a59a-3fed9ca64591
#> 2750           21861       6945        NA c0a8a5d0-583f-457a-9d96-70027d3f69e7
#> 2751           16794       2338        NA a9c41c5b-0dcf-40cc-a76c-644307f2f2df
#> 2752           17111       2643        NA 6e91b25a-4bf4-4a53-a328-69d3e7ef86c1
#> 2753           19945       5312        NA a54039fe-c6f8-4a25-82e8-80ce45db9a67
#> 2754           19894       5027        NA ac8909fd-d860-4c28-884f-291ff7cd370e
#> 2755           22008       6862        NA c8fc4151-7d5b-49d3-b269-e5b2b1246736
#> 2756           20320       5683        NA bb414aa3-f682-426b-abec-042edf34296d
#> 2757           19022       4176        NA 94710841-1b2e-4309-82ff-d7a00b4293e8
#> 2758           16419       2098        NA e15a26bb-db24-4e5a-b3a5-cc4d4eb4f0b6
#> 2759           16458       2123        NA 4c22d0dd-3f8e-4abf-84ca-7f08c046e3a5
#> 2760           20392       5430        NA 5e8ec29b-9769-4071-b9f8-3722cd138fc1
#> 2761           20174       5233        NA 14683736-9d8f-4e99-86c4-a778d343569c
#> 2762           21955       6919        NA 309b8104-8407-4365-989a-f726251714a7
#> 2763           19067       4221        NA 2dcc8e56-ac32-4774-a011-b1e65ca73786
#> 2764           16656       2251        NA b24625a0-d402-4d59-a778-aa4b073bfe5e
#> 2765           19982       5103        NA 870e89e7-018a-466b-adff-d0fe872b3e20
#> 2766           18094       3333        NA 02fc59d0-8a66-431f-97fc-21fdc096eb14
#> 2767           19579       4678        NA 2aa9cc15-bd17-4e53-bfcd-17a2fb1a2170
#> 2768           21742       6906        NA 7bb0744a-c93f-401b-9091-2a34072a40c2
#> 2769           20376       5293        NA fb815f81-3759-4194-bff9-1982fb2dd9a0
#> 2770           20873       5927        NA 7e8c4641-2beb-4213-ba22-69fe0307005f
#> 2771           20529       5432        NA f4f11bc2-2fe6-4da8-a83c-63085788e789
#> 2772           22090       7078        NA eb626cc4-10ec-4385-933e-eea81e2dbfbc
#> 2773           20789       5884        NA d3cc6f89-56d8-45e9-87f0-3a1a56f97bc6
#> 2774           20782       5924        NA d6f5ecdf-be55-430e-9370-0ea608395dad
#> 2775           16728       2291        NA 61194d09-1caf-4bd6-9ff2-a6b1601a1839
#> 2776           20250       5250        NA 17f52030-0a86-408d-b7e3-194ed4374fbb
#> 2777           21755       7407        NA af534c7d-791e-4b7f-900d-2d8fd47c0d2a
#> 2778           21400       6402        NA 4a213e4e-b0ba-4124-833e-33c528bd5908
#> 2779           20328       5275        NA e98ce252-583a-4c74-a718-d38f1ba5793d
#> 2780           18080       3319        NA bc175901-4a1f-4132-abb4-e49cc7d35e12
#> 2781           16629       2232        NA 766bff49-4d79-4e44-a53c-ba9f8714b7f6
#> 2782           18186       3422        NA 93eb4e28-a809-4192-82dc-783ab472323d
#> 2783             423         12        NA d503e3cf-861d-4b06-8de8-f66b1b72a3bf
#> 2784           17821       3074        NA 49606a1d-e06e-4cde-8528-f1adca8bd5fa
#> 2785           16681       2270        NA 30fedd72-bf59-4a35-9aa9-dd01b1122c09
#> 2786           20636       5723        NA bffc773e-0286-4c48-933f-17ccd9c805d6
#> 2787           21274       6576        NA ae34c85c-a174-4f6e-b11a-f3b56e3c230f
#> 2788           21154       6414        NA 8ae7ee0a-772f-441e-be2e-45508751d44b
#> 2789           20546       5805        NA d06b5a20-97d9-477f-bd3b-bb454575c8a8
#> 2790           20814       6080        NA 2ae2aec7-ff82-4d2f-85ad-bba52ac09650
#> 2791           13838       1055        NA 7e3c0631-1bff-49af-b6bc-9c66c59a579d
#> 2792           21146       6607        NA d80bd709-da27-4f3f-884b-a1e420191453
#> 2793           16545       2181        NA c1d07724-541c-49e3-bfbb-6843786de72e
#> 2794           20377       5614        NA 8c2d4bf5-e654-4a8b-a17a-f81d6aebb030
#> 2795           14923       1393        NA dadcbaf3-cd13-43dd-8b7a-9f81db468872
#> 2796           19936       5319        NA 0e20c25d-437d-45b2-86f1-73bbd2d22c0d
#> 2797           17087       2619        NA 3a3a069f-906e-4fa5-94ad-4cfd4e47b1e8
#> 2798           21292       6360        NA fd8d401a-0c57-4078-a29e-2ad3b07e06ad
#> 2799            7509        303        NA 7f87c105-e608-4911-8897-31cc5a443175
#> 2800           16150       1918        NA 00eb19cd-bd8f-4f2a-98e7-a718d50ad66a
#> 2801           20319       5600        NA 4db7ca4c-e0b3-4652-b311-6711c816c96c
#> 2802           16465       2128        NA ed6cf80a-b7d1-4a99-8a29-63b5c620bcd4
#> 2803           20303       5472        NA b9d781a5-8049-48d8-a2eb-9b7ef61f22ec
#> 2804           21555       6589        NA e9596e01-6469-4245-b5f9-d68a6718e4a4
#> 2805           17506       2991        NA d33249f0-02fb-4c18-a73a-af8930ad27af
#> 2806           20354       5562        NA 53425600-c59d-4e89-867b-86affd42c13d
#> 2807           19174       4321        NA 45f92801-156d-4488-a164-b9e527a6b72d
#> 2808           21193       6281        NA 778bde7d-c328-439d-a2ac-7f9d1ce23df9
#> 2809           21438       6541        NA 99fb51a5-1ab1-4818-90aa-f0c10944067d
#> 2810           19193       4337        NA a1cb7e9f-cd33-4c3f-9321-0c2258750eac
#> 2811           21159       6559        NA 95abcdcb-16c4-4a13-8b52-ecd499c25c07
#> 2812           14979       1419        NA a6025030-596c-4829-9138-8281df21d841
#> 2813           20299       5770        NA f1decd46-ab7c-4ed9-a1ff-844a63bb091e
#> 2814           19515       4773        NA 4454ebd3-84f9-40d1-8d7d-8917929b6af5
#> 2815           20551       5592        NA 5f642a99-fc5b-4cae-b23d-8d043681b264
#> 2816           18314       3544        NA 386e226c-faf0-4336-82f1-9e57d76ed617
#> 2817           16246       1980        NA 1818c219-44ae-4cd4-b8fe-5d93e596e936
#> 2818           21455       6445        NA 9ca42d97-d764-4446-b69a-a76fb7b5363c
#> 2819           20285       5482        NA c3d1c1bd-0552-405f-9fe4-b99925e7ec15
#> 2820            9392        460        NA b1674df8-2270-4ade-a168-00159259c0b8
#> 2821           19083       4237        NA db4eadbd-ef43-444c-9e33-1ee781dc9965
#> 2822           13236        929        NA bb6c7928-54f1-43bd-bf14-f2645644dda9
#> 2823           19628       4720        NA 2cf86b24-50e1-4047-83cb-afd82b17aa91
#> 2824           15234       1583        NA 38709da2-bd62-45f9-a7cd-f209879aca81
#> 2825           18165       3404        NA b8fa8d21-898c-4718-9b4e-f512c6414b28
#> 2826           17973       3212        NA 3ade957d-5c6f-4f8d-8d56-fdaae1753aa2
#> 2827           14631       1254        NA 8cd557fb-94df-48c2-8665-198e5c8be20b
#> 2828           15096       1498        NA 2ba5bdad-0b7c-4637-89a3-5b7b34d215b0
#> 2829           19108       4262        NA a3012bb8-118f-41f9-a010-e264499ff750
#> 2830           12681        784        NA 4f799675-2b27-4437-9acc-bc4e0c73ef0f
#> 2831           16542       2178        NA 3f9d4b4d-2c3d-417e-a95b-714520b309be
#> 2832           20594       5596        NA 3e310944-48c8-4d57-8e44-2a76e789980f
#> 2833           13949       1095        NA a2015dbb-fd0b-46fc-ad19-eb387605f244
#> 2834           14948       1404        NA e2ef7b61-cf9d-47ab-927a-77759412ceb1
#> 2835            9664        466        NA 1e3967fb-21cc-43b8-9f36-1c2e3b280cec
#> 2836           14020       1115        NA b2e66f2f-5b53-4e72-bbd6-83c948f3b7de
#> 2837           21073       5998        NA 21f0649c-8f52-4837-8d63-baa836bbf58f
#> 2838           16841       2385        NA b381794c-a1e3-4659-9ae6-766d3d943909
#> 2839           21188       6255        NA 73cdb8ae-7e5b-4025-aee5-6891ed3500a1
#> 2840           17001       2541        NA 8796d7af-c72c-4a1e-9665-677afd849a52
#> 2841           18400       3613        NA 812c5dd0-4da5-498e-bf8c-4efdd885973a
#> 2842           14721       1277        NA 08b0d908-ad25-4b05-8b44-8c60eabb76a8
#> 2843           19231       4374        NA 0d91f918-0ad1-42c7-9eff-adecc72ca442
#> 2844           20349       5471        NA 40002ab5-a6c3-4ab5-84ac-6502c8f3e904
#> 2845           20614       5730        NA d00ac1d2-dd0d-4362-bfb3-29c9f29d2671
#> 2846           14793       1311        NA 588022c3-f9c6-4f30-b4ea-a264f99fc997
#> 2847           20692       5795        NA 11ed92b3-c1d1-46e9-87d9-387fd3280e4f
#> 2848           19294       4433        NA 695d16fa-1c4e-4ce4-9d2c-0e117b4fa577
#> 2849           20671       5764        NA 5c6f3e4a-dee5-4aae-a128-14d638293a75
#> 2850            6078        242        NA 7979b613-6dbf-4534-8166-6430433c1ec3
#> 2851           17010       2550        NA 4f260130-570b-4a37-9f17-193b6c9cc025
#> 2852           17860       3108        NA d2e89432-b9e3-4beb-a795-f0e9f6756efb
#> 2853           16916       2459        NA c0cfe76c-0633-4b6b-b282-02ca9911cabd
#> 2854           19625       4717        NA 3e5858a5-d0b8-44ba-94f0-e341b1139676
#> 2855            6687        266        NA 85a051d3-3f76-411d-a59e-82d04a971c3a
#> 2856           21509       6497        NA 8ed1ce29-8bbb-417b-9766-5de8fdfb4606
#> 2857           15105       1504        NA 8076f480-6c59-4aa3-8e19-71a9d5227e4b
#> 2858           19451       4567        NA 7e4cc74a-0ae2-422f-ab7e-dc26fc116d92
#> 2859           18526       3718        NA eee79103-9ded-4a79-812b-b9b18da20135
#> 2860           21479       6431        NA a69f9855-327c-4618-bdfd-cd913b31904f
#> 2861           20918       6073        NA 2ded061c-1061-4c92-b417-c6ef04134c8c
#> 2862           18515       3709        NA 0d50cb7b-d179-41b7-b4bd-acc4c05e2d8a
#> 2863           20397       5350        NA 6eae8044-47a4-4cd8-9c4e-6539afdf3837
#> 2864           16660       2253        NA 101b9211-4f92-4024-8978-b4df2eec3c74
#> 2865           16214       1960        NA 02eb6a66-8d0d-42a4-a2c9-10e028908910
#> 2866           19585       4684        NA 57d6fd4d-29e1-46cf-a3b0-601cc5b3d48d
#> 2867           14144       1145        NA e0d47951-fea7-4f2a-a936-f4d758ea6b83
#> 2868           19743       4840        NA                                 <NA>
#> 2869           21500       6624        NA 3461b2e5-e015-4f0f-a2a4-a5116732ca98
#> 2870           20216       5518        NA dbe9a91f-bc71-48a2-aaeb-8f7f3d3fec14
#> 2871           13472        993        NA fc309bb0-d8f9-49a8-b2d3-5c6eea4dec24
#> 2872           18511       3705        NA a4f5b5d2-e56f-45e4-b448-ce8ac8b77706
#> 2873           19133       4287        NA e8e8cc9e-678e-4da1-8a23-cb53f15a9b9a
#> 2874           17495       2988        NA 075a78d5-72fd-440e-ae25-f22b57835ec4
#> 2875           20365       5435        NA bb4823e2-f2d4-4910-8528-a762f8db449b
#> 2876           19532       4637        NA a24108bd-87b2-47c2-903e-d38e35a02652
#> 2877            5916        235        NA 4a69f085-8bef-4b3c-a66e-cab65b3fcb7a
#> 2878           18594       3781        NA accab0d5-2f39-4a5c-a595-c029cb6a9c05
#> 2879           21374       6630        NA 4990de3e-553a-4cae-9ce8-c3d1f4eb6bbc
#> 2880           19047       4201        NA ae269fa8-85d9-4d95-b0e2-6d0451dd9425
#> 2881           21058       6042        NA 0553c32c-4b9d-4ea9-811d-6d58c1985c9b
#> 2882           19696       4820        NA fabca6af-000d-42a9-8a90-524f401a9774
#> 2883           13070        888        NA 036fd3fc-e7a0-4f75-9019-8a5badff5e5f
#> 2884           20446       5400        NA 034cade9-af0c-4c85-b5c6-9d6ada777dcd
#> 2885           18294       3528        NA b2ee8205-9bb6-41e6-814d-40433673e172
#> 2886           18340       3565        NA 14d50779-5b08-44c0-9ae1-6f05b1b8a4f9
#> 2887           20324       5604        NA 169612b8-67e4-4b1c-bb0d-c73967ac583e
#> 2888           18657       3837        NA b9523f29-adfa-4382-98f2-611c590bb526
#> 2889           19092       4246        NA 28270bed-0130-4ef3-aee9-c7069a662c46
#> 2890           20593       5595        NA 8564968a-505e-4954-81a3-3d288204cf91
#> 2891           19007       4161        NA d461a676-a2f4-4e26-b851-60af14b00ca7
#> 2892           19243       4386        NA db7c756b-a340-47fa-bdd5-5556fac68d20
#> 2893           19607       4702        NA b8e9269d-2310-4dcc-a225-6bcf47d8e5fc
#> 2894           18708       3886        NA 08770f4a-4b29-490e-b76a-f60d87fdc414
#> 2895           20531       5447        NA 976fdc88-10c2-469b-8ee4-c96de6805339
#> 2896           19305       4444        NA 7b378e5b-6414-4bc2-8ee8-c196d2ed7d78
#> 2897           16098       1879        NA 6d9fad01-7167-4291-9523-3f72d6837d4c
#> 2898           20725       5832        NA 655f87b9-e129-4271-8b90-8ff3c9b9d4e9
#> 2899           21512       6499        NA f2d31944-cc46-46e0-bdeb-5cd99ab366a4
#> 2900           15086       1488        NA 113045ba-c7e5-4a91-a089-bc1bbcf55008
#> 2901           16477       2138        NA 5161ce0c-a12d-4daa-9176-eb9edee80c37
#> 2902           13718       1025        NA 56e7b803-c110-4ff8-b097-7e3a7e7c0a9c
#> 2903           21582       6683        NA 2b76130f-5a38-429e-a620-9c5b1cd557b7
#> 2904           15041       1459        NA 42cbcd13-4fbc-4cea-905b-85d2c0b0ff55
#> 2905            4122        156        NA a2907a39-139b-483f-8369-e278c26a6951
#> 2906           20625       5713        NA 47abba7f-63e6-41e5-ac8f-9b3f274db595
#> 2907           16882       2426        NA 207d740a-6c64-449a-bd24-b90aa85934d3
#> 2908           16068       1858        NA ebfdad99-5262-4d16-9024-85583947d544
#> 2909           20461       5480        NA bc41be9e-edb3-4582-b2eb-c7177dd6d979
#> 2910           14381       1194        NA 2023386f-584e-4cd3-b4e6-491cda3fee31
#> 2911           18578       3766        NA 1413a204-0c2e-40d4-b1fe-15ada63dfb4a
#> 2912           20530       5433        NA 98649d6d-839b-48eb-a92d-e57f82807841
#> 2913           13104        897        NA 221abfe3-f41c-4c1f-aa88-ca06fc57ed8e
#> 2914           17229       2761        NA 3f05e230-38fb-4caa-b488-69e034ecdc03
#> 2915           18391       3604        NA 6a85f300-518d-4c97-860d-c69713649c58
#> 2916           19490       4601        NA ac65cfa3-1db6-40c1-a3f8-563767d599ef
#> 2917            4701        180        NA 5927b542-db0f-445f-b6cd-eb8c9e80c427
#> 2918           17353       2885        NA 1bba6a5c-9759-4559-a6c3-4b2ffffa1ab8
#> 2919           11731        657        NA 69d9c13c-2293-4eed-ae35-01c90dd45c1b
#> 2920           16803       2347        NA 716c039e-a1c7-42f7-87f9-ff414df726d3
#> 2921           20022       5326        NA 30c9d379-80f5-4d53-a05f-2aca8c208e8f
#> 2922           15437       1662        NA a486fc4b-e475-4ff2-b22a-f454c266819a
#> 2923           16372       2068        NA 10af66eb-88ac-456d-8d47-d7c1e19c8b30
#> 2924           16844       2388        NA 86476721-3f9e-4ad1-8c7a-40be5a43e602
#> 2925           21284       6614        NA 5661762f-9cf4-4cc2-b9fe-4cbe58f4ad28
#> 2926            9169        441        NA 9dc422e6-f4ce-4bc9-b8bc-7ff946b51a8b
#> 2927           20427       5635        NA d6f6362d-4e7d-4278-8471-780da7a203a7
#> 2928           20313       5421        NA 5f55d5e7-1ff5-4ace-830a-920fe46acb88
#> 2929           17281       2813        NA 20da5dae-7faa-42d0-8b97-0ce3e3beee43
#> 2930           18188       3424        NA e5bd7067-d9ac-4aee-a073-3f345cf8191c
#> 2931           18821       3986        NA 6775c8ae-1966-43c6-a61a-147ea5d112ff
#> 2932           21019       6054        NA 5bb30e2d-868a-4597-94dd-0e0f6ab76d66
#> 2933           20254       5679        NA 31ac1b75-5119-47b1-9ca0-5b8c329c95b4
#> 2934           18122       3361        NA a0b23166-6964-4d52-a7b4-9705b61a7e56
#> 2935           17990       3229        NA 342fe758-e8d0-4baf-af71-1fa568197837
#> 2936           16551       2183        NA 4c0a966e-797d-4e60-8ba9-a67b5749ec5f
#> 2937           16137       1909        NA 87dd051c-c8c0-4c96-bec7-d342f5ba4797
#> 2938           21416       6620        NA 60798c13-45d8-4a6d-b04f-0afe219e3cbe
#> 2939            1650         56        NA 16340de5-372b-4c20-953f-07a0fe26be69
#> 2940           15199       1557        NA ed34cf85-1e5f-4967-89b0-3ff70e5555fa
#> 2941           20086       5159        NA 2238219b-a0bc-464f-b83d-ff902e65bb87
#> 2942           16577       2204        NA 5e12087c-579d-4ab8-a5b8-4d6b89331337
#> 2943            2556         95        NA c881b179-070d-4289-909f-4d3594abbd79
#> 2944           19362       4492        NA cb06f6d9-def7-497f-b81d-45dc84d095af
#> 2945           16823       2367        NA d3c47b87-1554-4afe-ab8f-d5e801706fc3
#> 2946           20486       5694        NA f4c38645-25d8-4046-918a-9285328d02ba
#> 2947           21148       6226        NA cc8a671b-bf32-4bd5-ac4e-d294feebe3d8
#> 2948           16924       2467        NA e0b78e61-b0b9-4115-95f5-ad8d6013d685
#> 2949           18090       3329        NA 94b57778-d6dc-47d1-b7e6-6d844bccdbe8
#> 2950           20666       5758        NA 9be29984-4ae2-4ed7-9cf3-7ec32e7be408
#> 2951           19474       4587        NA 980aabf5-3127-4b80-83e7-ac91327e848e
#> 2952           20307       5579        NA dde27047-788e-4b68-acfd-d0f241c6fba2
#> 2953           20558       5451        NA fcd3369e-e1e1-40da-afb6-d8296a1b89a3
#> 2954           16374       2070        NA c42dbe37-e779-489c-b5ad-c5749544a2bf
#> 2955           17247       2779        NA 972d6237-1b3b-4b6b-a789-b5ca8391ed90
#> 2956           18252       3487        NA 337a330a-331b-4901-b07f-c3582586c2be
#> 2957           11402        602        NA 74b40266-cab7-4c5f-9f72-b560f7457a55
#> 2958           19346       4478        NA 0b36513e-6dfa-406b-9198-619d090e6e8d
#> 2959           18491       3691        NA 74940b12-6b27-496a-9113-d9139e38056c
#> 2960           19270       4410        NA d29c218d-72f8-4351-895b-1a47554fe580
#> 2961           19697       4789        NA 9a2e65ef-64be-42f2-941c-863cee5e910b
#> 2962           16675       2264        NA ff05fdc3-e3a4-4d18-861e-5b1f8553d773
#> 2963           20132       5686        NA 940cfc9c-4420-4ba9-8ae1-a7db9f04c80b
#> 2964           11096        540        NA 06ed4b06-29d4-49a4-8bba-1bb63184255a
#> 2965           20685       5783        NA 48c9c22c-6903-455d-bcaa-9562b440b690
#> 2966           21189       6256        NA b9d69750-a1b9-4b59-a679-4900c672cc97
#> 2967           21522       6641        NA 3e75960b-f28a-4221-8800-fde346336b0f
#> 2968           20431       5578        NA 4ec41407-aa4d-4193-af06-b9795cb9aecc
#> 2969           20429       5658        NA 5d61b458-9b4e-4016-9983-7add180b698d
#> 2970           21553       6582        NA 95058b9a-e9a3-4021-a622-5bce275e3433
#> 2971           21505       6521        NA d45eb662-6dcf-4e6a-ad14-bc610ab65deb
#> 2972           21557       6668        NA e634c38b-d446-4111-a7e5-3c46345f55b0
#> 2973           20143       5229        NA b0a7f6dc-0409-43fb-81c7-fbd8629445a3
#> 2974           21625       6707        NA 83f36348-3a45-4839-984c-896ca5a551f2
#> 2975           20435       5417        NA 33db338e-fe3e-4d99-9abf-a5ae0fd778a0
#> 2976           21567       6672        NA c7cc7627-6f90-414b-b60b-23869a4308cd
#> 2977           21437       6636        NA 22903cb0-f58b-4fde-997e-5764769770ea
#> 2978           13165        916        NA 5c453cab-dfd6-4c8f-ad31-f872229c6e06
#> 2979           20628       5701        NA 10a361ab-933c-46b6-bd83-3e10896813b8
#> 2980           19650       4735        NA 399071d5-6918-40ad-9f1b-8ee787ee8cd2
#> 2981           20130       5684        NA 63ed4efa-6dcd-40f5-ae8a-d6221ac0ead5
#> 2982           18779       3946        NA 10f3023b-d446-4e46-991b-4d2cc9aa0f60
#> 2983           12725        795        NA f44b4942-1de1-41d7-a8f5-c44552e7c336
#> 2984           18098       3337        NA 87daa971-0ff3-4186-b225-81d4661c89b3
#> 2985            7802        318        NA 2c9cbc74-9a26-4ccf-9552-c9fa99ef3663
#> 2986           21304       6346        NA e6acf5b3-b599-4519-bff4-557a5a44430b
#> 2987           20651       5742        NA 8d276b8b-116f-4705-a6f4-a37b390f279e
#> 2988            2158         75        NA 53f8b594-314d-4f34-9444-a2b3e7eb0185
#> 2989            8435        354        NA f1769155-163f-40e5-b0a8-61c3ce0fbeac
#> 2990           20410       5502        NA 61dd98e9-3edc-4892-b20e-b0d74a25da5e
#> 2991            1214         42        NA 36648f14-5fe5-40f3-ade1-ef53c8f93bdf
#> 2992           20683       5780        NA 6904f89f-c6f3-42fe-add6-54ba80ee04dc
#> 2993           20232       5504        NA 7f4d9680-0577-4195-9168-2fb90bb18e9c
#> 2994           20084       5157        NA 6106a497-f2f9-4ee0-bef6-c6d9c8943d39
#> 2995           16017       1823        NA e12c1ad8-ba0f-422f-849b-c9cabb1ebb97
#> 2996           14135       1143        NA 8d7729c6-3a84-4769-8c2c-2ed11557be20
#> 2997            3808        139        NA a2eccf1c-8a74-48c1-8c22-81083df05274
#> 2998           18024       3263        NA 9aeb2a34-dbc9-463f-9c94-7161336f37cf
#> 2999            8507        361        NA 5f2a0be9-3420-4aa4-a723-8956a58a8a8a
#> 3000           17054       2589        NA 606d16ed-88df-488d-b506-111af8f966d0
#> 3001           12626        779        NA 423d2e55-053b-40cd-b977-bef2f3891907
#> 3002           20109       5627        NA e95dd915-4e7d-449e-ac8e-356ad784fa62
#> 3003           16923       2466        NA 128f79ed-c225-41f1-a10b-b9eb8c477c77
#> 3004           16050       1843        NA 63175907-f9fc-4a3a-a376-d8e3a76d7964
#> 3005           14299       1179        NA b9d34a54-0475-417b-a2b5-6c0743b541ff
#> 3006           20495       5446        NA 58e567dc-6d54-4907-86e1-d21615afaeba
#> 3007           17204       2736        NA d5e5340b-98be-4738-867d-791f36bf8e5e
#> 3008           19526       4632        NA 7840c637-976b-47e5-8831-09e1099c0484
#> 3009           21314       6383        NA 45736f04-47b0-44d7-aa61-ba9f0a94565d
#> 3010           16959       2500        NA 37845827-23af-4cc2-8f27-4fd355e4c4a6
#> 3011           19196       4340        NA f65b58b8-8d4a-4fb7-9fbc-a755464b0958
#> 3012           15233       1582        NA d36267e0-f2ef-4dd0-8bda-2a9238a377b7
#> 3013           15978       1803        NA 46aa49f6-6720-49dd-a13b-3c055d304fd9
#> 3014           16858       2402        NA fc909404-fec3-40af-b8e8-22ffcb48a456
#> 3015           16555       2187        NA dfce3ced-01eb-4558-ab85-9c427cf1807d
#> 3016           19384       4512        NA 4b3ecabb-6adf-45c8-88ed-7decd72306f0
#> 3017           20151       5200        NA 0c0b9670-cbc6-43b7-8901-e99f2983cf3f
#> 3018           20676       5771        NA 164a4e28-ffd2-4606-933c-9870c2ac5d67
#> 3019           20693       5794        NA 2428023c-797d-49e3-a931-1163f003b490
#> 3020           11977        684        NA c058f888-ff75-4f13-a9e7-3f5be65288bf
#> 3021           19413       4534        NA c9b212ad-7893-4b0d-9d65-38b283894a5a
#> 3022           19167       4315        NA 8dfbc354-6308-457c-95bc-74910878f2f2
#> 3023           18403       3616        NA 6c5ade3f-43c4-4153-b0ef-c9772bce8101
#> 3024           16805       2349        NA 97b3d907-e5b4-4ae2-a9ae-af4dad3dd169
#> 3025           20765       6096        NA 0643e15e-76f5-4eea-a08e-d35eba7f13f7
#> 3026           18597       3784        NA 04ac7d14-68fc-4d70-b0f0-334dce9c1c45
#> 3027           21441       6543        NA cb6653b6-39ae-4581-81fe-b275b20aec6e
#> 3028           14645       1258        NA 86a412bb-7db6-4c6a-86b0-499afd326fd9
#> 3029           19703       4793        NA 7c71541b-048b-43de-8b27-1c9cfd43f0c0
#> 3030           18142       3381        NA e93e7aee-b38f-43d1-ab96-6eeb7c6f1392
#> 3031           19239       4382        NA 73cf139b-927e-43e0-9e4d-6f48cff0ab9d
#> 3032           18185       3421        NA 41cc3ce0-53fb-4a83-8612-00b527328e75
#> 3033           21099       6198        NA 7bca471d-9352-4fd7-ac8c-42efcdcf3c27
#> 3034           16570       2199        NA 25a958c9-4035-43ad-8c9c-1309ea592e66
#> 3035           19114       4268        NA 9f5650c3-91a3-4552-a02e-fe4a7d13f262
#> 3036           16023       1828        NA ec0183f6-bd9b-4a21-b8f5-ea4d8f3741b2
#> 3037           20716       5825        NA 4a34b8b5-3410-4754-9d6e-c0ee28428f47
#> 3038           15843       1773        NA 3add1dd8-32aa-44a5-b69a-b0ad2eace07b
#> 3039            8343        342        NA 2d23b5d1-fbee-41df-bd6f-dd984d03a4d1
#> 3040           19549       4652        NA a0ac50ad-b460-43fd-a932-50d19cda7c0b
#> 3041           14729       1282        NA 9f5a9786-f72c-4d45-a858-71bccd5cb602
#> 3042           20035       5336        NA 596fa903-35a6-4650-b499-bc3ce33d5103
#> 3043           20146       5186        NA 3eb1e32e-3f96-4613-b142-78f748db3c7b
#> 3044           21212       6312        NA 60542ef3-f053-4347-8906-ce698f5c434b
#> 3045            4175        161        NA 6b49d038-966e-40b9-bb1e-fb4e94543a95
#> 3046           20101       5152        NA eab954d2-9dee-4a8f-ac28-d93855459fb6
#> 3047           21540       6649        NA 9e4ac12b-bd46-403a-baa6-a1cb4c7fa5a4
#> 3048           21303       6345        NA c4ec03a8-efda-456f-8916-c161b568d783
#> 3049           19476       4589        NA 08bb1521-fd1c-4c1c-bcbe-114cadccc1c8
#> 3050           19450       4566        NA 6bc64594-cdc1-4252-b896-dd3b667eccc2
#> 3051           20497       5788        NA 59b606fd-cd76-4a01-bee5-ffac60073b3d
#> 3052           21322       6377        NA bd046bf8-70f7-4480-878a-8894e5912102
#> 3053           19727       4819        NA 8725d38b-398b-4ca5-9e80-d43b0bf855bb
#> 3054           18607       3793        NA f5181047-2dbb-4058-bed6-34464a138867
#> 3055           20455       5522        NA 3c593d8f-daf8-4902-89ab-d59699482809
#> 3056            9994        495        NA 485369eb-3586-4aa2-9628-77d954f23da3
#> 3057           21570       6660        NA bf4a641d-bdf6-4e62-bbe1-a74a956226ea
#> 3058           16010       1820        NA 5064d069-aa24-4828-81c9-c78e0e56fb78
#> 3059           12460        757        NA c3b6a5da-b9a5-415a-8239-1fd92dd34b80
#> 3060           19188       4332        NA edb39e18-4683-4774-ac05-af4019fe2aba
#> 3061           12806        819        NA 3877e0ba-222f-4bd2-887c-1db8f1a5e7d1
#> 3062           19170       4317        NA 50d58b23-cdf9-4e0c-a303-d74d9e4f9291
#> 3063           21432       6545        NA 5272b788-ce57-4197-92db-5a08ff48d932
#> 3064           18541       3731        NA 944528d8-7647-4f92-8053-0e6998c5fcc1
#> 3065           18107       3346        NA ce64d3cf-516a-429a-b80f-18143eee2a49
#> 3066           21285       6447        NA 624218c7-a654-412f-9ebe-c574c4e74c0f
#> 3067           20235       5506        NA 87c4fed4-d126-4c71-96ec-54d5d8d717bb
#> 3068           13576       1006        NA d867198a-36ec-4a99-9037-a093216f99d8
#> 3069           21458       6556        NA 6f02ddea-9d5d-442f-ac40-c252aec881b5
#> 3070           14946       1402        NA bed70009-eeb1-4806-b65e-3bfc54963cb7
#> 3071           20627       5702        NA bd252716-1674-437f-8d91-fdd10cf4ebf1
#> 3072           20356       5422        NA 1b0801bc-9afc-458c-8235-b938d4b76d29
#> 3073           19056       4210        NA 48dede0f-2441-4549-8892-9d37c79321a1
#> 3074           20586       5568        NA 961507f5-29bc-4efe-bff1-bd1e4f063e8c
#> 3075           15562       1697        NA a1e8bc26-2f4a-48f3-b2dc-549d8bc71067
#> 3076           19874       5019        NA 8fecfc12-c9be-400e-8b5a-4684c6884daa
#> 3077           16403       2089        NA d694d99d-0dd2-443f-b02a-6cd377cdaf6e
#> 3078           14827       1328        NA f60de8c5-b050-4386-8a67-3658f65350b9
#> 3079           19744       4841        NA 2fbd5ebf-c12a-4e92-b7b6-de649c37ccd3
#> 3080           21525       6608        NA ee4e7684-071e-4aee-9d0e-b8da39c46322
#> 3081           20371       5410        NA 5ec64dea-c6db-4416-ad24-8676acf7a7c6
#> 3082           19303       4442        NA 401fac38-aa48-4f45-b6c4-a4705b50f9bd
#> 3083            7202        285        NA ac568889-d10d-4ccc-89a1-8e4233848086
#> 3084           20322       5602        NA 1da8b818-601e-4d53-943b-c7cb767969a3
#> 3085           21431       6604        NA 13141af5-6bef-4f49-98ce-5305f0187bef
#> 3086           20190       5219        NA 34053914-0384-4551-a5e9-e3bd13c09b02
#> 3087           21250       6369        NA 0afaf743-1240-4598-91d4-13f003573789
#> 3088           20323       5603        NA 2be11ce3-61f2-42b4-ba82-f22c62e9363d
#> 3089           20442       5500        NA 6191922d-218f-4f86-a3c2-7216810bccb8
#> 3090           21273       6575        NA 89588ce4-70cf-4a50-968e-d48cf5c66053
#> 3091           20140       5205        NA 49c20233-70a2-4de5-b3cc-9bf7039f1cb7
#> 3092           21446       6422        NA b27621a8-1629-45d2-838e-5e74a26f350b
#> 3093           19232       4375        NA 911991de-37c3-4fcd-9896-80d1fb0b6112
#> 3094           16391       2080        NA 8fd4379f-242a-4388-ae91-5b99acbb1bd8
#> 3095            2232         79        NA 50fd6da3-9fb3-45cf-83e8-5797f1f16308
#> 3096           20119       5778        NA 3245841a-b113-4e4f-a994-449d25d1db98
#> 3097           13664       1017        NA ee305db3-cdaf-4eb3-b950-7146d51eac34
#> 3098           19533       4638        NA 035a2da8-8e69-48d3-9752-0fc042f545df
#> 3099           19460       4573        NA 61a5aa8b-1f47-4bfc-ac91-eae7f6679ad6
#> 3100           20278       5689        NA 3555b24f-ed5c-41a3-aead-34e7b64d5c4b
#> 3101           20110       5628        NA e34d2f84-e5ec-4818-a54c-94176e515a90
#> 3102           11108        546        NA c9fe00a2-7620-49f3-a744-7d04c5b30560
#> 3103           17095       2627        NA c280300e-a61d-4a19-aa95-ab100d5759e7
#> 3104           21626       6708        NA d79d84b3-cef7-44b9-8202-ba92d4d32641
#> 3105           13451        985        NA 690fbf24-aab0-40cf-aeb4-7e24d90108a1
#> 3106           18380       3597        NA 4efb66e4-7038-4b3f-bbb7-521aa3200760
#> 3107            9828        487        NA c0e4ed02-82ec-4bde-a1b1-c035dde46402
#> 3108            7680        314        NA 6de52f0c-2a65-42a3-81a0-9c772a588c08
#> 3109           20345       5589        NA 4ac2531e-8a86-4124-970d-0d6be201a4b4
#> 3110           16940       2482        NA eb96d887-4380-491e-b22f-b0cdd0bd64f5
#> 3111           16026       1830        NA 7d94e607-7908-4e25-ae36-b1f2707c06c4
#> 3112           14902       1380        NA f79197fb-9ee2-4edb-bb68-e8cd059a5101
#> 3113           19427       4547        NA 7e1ee344-f878-4fc6-bc56-e47588bf1000
#> 3114           18988       4142        NA ddc66539-5847-4c01-9283-595bde0ff97a
#> 3115           17284       2816        NA 3748e9cb-edd7-4559-832b-e6bc483677ce
#> 3116            2550         94        NA 57c5c69c-844e-41f1-9985-6fc178cee514
#> 3117           16091       1874        NA 3a8befa1-04e8-4aa7-bc14-504e3d2de483
#> 3118           16213       1959        NA efe0a829-1c7a-4460-b099-089bdb64b819
#> 3119           19713       4799        NA 563f4a41-967c-49f1-a217-28543727c7d0
#> 3120           14991       1430        NA c63eb820-738c-4b32-83f4-65ed80d54ae4
#> 3121           21398       6404        NA                                 <NA>
#> 3122           17529       3000        NA 0c042513-aba2-461c-ae16-db4bf83833fa
#> 3123           20315       5426        NA 563471e7-202e-494d-bab7-a2493a9a6e31
#> 3124           14369       1190        NA e9cf609e-4d2a-497e-b7c5-677949820145
#> 3125           20691       5789        NA dd20b476-52fe-48e1-a614-3854c6b3989c
#> 3126           20408       5501        NA 9ebd9a70-74d1-4df8-90e6-3de18368a4c5
#> 3127           16637       2237        NA bb29cf6c-17a4-4106-9b9c-47d2d9c0e6b9
#> 3128           19502       4612        NA 19667595-1b93-48ff-878c-5f245636173c
#> 3129           21350       6500        NA 06a22cdc-f773-4424-a8e6-e49ca822ed1e
#> 3130           20321       5601        NA 456fb5aa-5ecd-4cf4-819a-a7708ed8f0e3
#> 3131           16952       2493        NA 61b04d13-ebdb-49eb-9f5a-ea85355d6360
#> 3132           20244       5458        NA a548290f-bfaf-48b0-aa8d-4f8c71a1ff80
#> 3133           21313       6382        NA b88049ec-946f-4723-bc82-ce5803c652be
#> 3134           17538       3005        NA af52bc9b-b734-43a8-af8d-daad398db79e
#> 3135           20105       5513        NA c497d10f-bb71-47b9-aabf-daaecb38b6dc
#> 3136           15389       1646        NA 38717cb0-9a15-4a89-b86a-c57ff0cef0cc
#> 3137           20201       5491        NA 2fbafbc6-2236-44cf-8498-dc8b549161cf
#> 3138           16974       2515        NA ff5d11ea-4713-4b63-88a8-50ed1a3623a7
#> 3139           18325       3553        NA 52191351-8e61-454b-b2a3-dc2e39043b11
#> 3140           18277       3511        NA 1ec9b4fd-414d-4dd6-96f7-45efa541ebeb
#> 3141            4096        153        NA f83bfd85-4007-4c7c-ba54-75bedfc3c3c1
#> 3142           16896       2439        NA b6025ffc-496f-40e5-bd23-38469aa50cb7
#> 3143           18010       3249        NA af24c36b-adfe-49e5-82a8-67f9ea7264ab
#> 3144           20181       5184        NA 7ecac271-87a9-43e6-afea-abc57552a0c1
#> 3145           20522       5497        NA cae53a94-89ce-4eb5-aff9-b1b618283db3
#> 3146           16526       2170        NA 917e7a94-fef2-4293-b50e-94e52f777232
#> 3147           12716        791        NA 1e110bd9-4eca-410f-82ed-e4d8af131574
#> 3148           19389       4517        NA 49c6000a-8ca5-472c-a166-b0a0911a00bb
#> 3149           20358       5563        NA 2bb28fc2-96ec-452c-9dbb-22130681c4eb
#> 3150           17298       2830        NA 3920baeb-570e-4b1a-bc44-c4bfd936e41f
#> 3151           13319        953        NA 97d98203-7785-4286-b01c-2611c6f5a44e
#> 3152           16857       2401        NA d0778d5a-f5af-47a4-9b06-adcbf5b3368f
#> 3153           21184       6251        NA c07e2290-529d-4d55-bef2-1d8139816355
#> 3154           16425       2102        NA de3f11e3-90ae-4ad2-880f-48e9b6f729f8
#> 3155           17319       2851        NA af9992e2-6bda-4e3d-a95a-fc32c9f93391
#> 3156           16444       2115        NA f154d374-d504-425c-a2ae-958f3adfed32
#> 3157           15435       1661        NA f092bfdc-2385-4223-86e7-37b2654bc37c
#> 3158           11514        619        NA d2d8345f-8eaf-4f61-8df8-df6e808b6aec
#> 3159           20312       5420        NA 94062255-0b93-43ca-9399-92bbc10901ff
#> 3160           21231       6325        NA 4023e7d3-2b70-450f-9afc-bf1a9dcee3f9
#> 3161           21532       6599        NA 6196fbdb-f9fb-4766-b611-c1875f8f6236
#> 3162           18713       3891        NA 0105886c-9f70-4600-b0c4-bb2a8efc5e9b
#> 3163           19206       4350        NA f0b08802-f6f8-4dba-b53e-e26eb75a32e7
#> 3164           19541       4646        NA 7076d60f-8cba-41bf-a3ed-ee28af5e240a
#> 3165           18452       3658        NA 0cae9da5-bdbb-4d19-b360-578b0a1c37bf
#> 3166           18275       3509        NA 60aa9a85-1fc6-4b65-a350-34ec09456791
#> 3167           19573       4673        NA e73a5644-c7a2-425b-898e-da72c16f9b87
#> 3168           20568       5560        NA cdbe5207-fdbe-42f0-a536-bed784aa9cea
#> 3169           16210       1956        NA 0719b89b-85f5-4be2-a335-596e81d93913
#> 3170           19096       4250        NA aa87a5e5-f90b-408e-b8b4-39f28204f8bf
#> 3171           16869       2413        NA 0f062def-77f5-4362-86cb-4bdb63a59eba
#> 3172           15631       1716        NA e0a63251-5428-43a1-88c1-c000215ac5ce
#> 3173           14783       1303        NA 9d04accc-a404-406f-b93c-0878410e55a6
#> 3174           21365       6435        NA e046beb7-3d9f-4f30-9b33-2b61592461ff
#> 3175           18376       3595        NA cc1df018-baa8-4344-b13c-cd5ef1a52d26
#> 3176           20587       5586        NA 91d9a3a9-241f-4f42-b0f0-2e7dd9b84c08
#> 3177           15555       1693        NA 8c5067dc-1617-42fa-82eb-0596392ab20a
#> 3178           15191       1551        NA 360f6480-729a-437c-9875-5a409f4ca03b
#> 3179           16966       2507        NA b936b29c-59ab-42ba-996a-00131b4b8580
#> 3180           20405       5353        NA a0c708a2-4620-4b5a-8453-967c2a9bd426
#> 3181           16534       2174        NA f611f87a-1e49-4196-9088-8c760f26006d
#> 3182           14786       1305        NA 349f647e-bfc3-4d84-af89-b33f8a08e26e
#> 3183           20389       5296        NA 1987b2bb-042f-49c9-b183-bec358ba1b98
#> 3184           16955       2496        NA 96b38cbb-4709-4c5f-89c7-f9fd7fa77a95
#> 3185           20223       5240        NA 3eeb2be6-2bc9-4b6e-a35b-bb1d87f14dd9
#> 3186           20092       5145        NA 17f32692-ccfa-42c0-b238-483534dd0b7c
#> 3187           18636       3819        NA f50fb156-fc3a-4930-aa51-8fe977ef6984
#> 3188           16203       1952        NA 513caa63-d30d-4cde-b605-8cf825a4ef27
#> 3189           14391       1196        NA e597cba3-fa90-4ce2-85e7-3e0bed1791d5
#> 3190           19283       4423        NA 369d8fc2-fce9-4e75-9419-3dfbe3ad3977
#> 3191           19525       4631        NA dd6959e5-13cf-4c1f-a05a-03bb7648af96
#> 3192           13188        923        NA c10e08b6-33a7-4233-8628-29b40d1183ea
#> 3193           21546       6654        NA 991678cd-6d07-45d0-98b1-3d40e5725c29
#> 3194           17260       2792        NA 6ba5ea17-2790-448e-9fb8-2d0d05ca955c
#> 3195           20470       5394        NA b91dbdd2-b7c4-4ad1-95a9-c675c30b4b57
#> 3196           19103       4257        NA fcc9d16f-4591-4ba2-9720-9fa187b9d9d5
#> 3197           19478       4591        NA 7e408bdc-df1a-44bf-878e-8cc790c40a3e
#> 3198           21554       6583        NA d21096bc-ed34-4b82-9129-a5b08d51a827
#> 3199           17093       2625        NA 5f06c995-7b1c-4da1-8bce-5ab5f63a901d
#> 3200           18647       3828        NA 444c9f9a-b6e1-4be1-ba68-bf18781f8c89
#> 3201           16390       2079        NA aa80f701-cce8-4136-b0cb-965fb8c90519
#> 3202           17565       3016        NA 779bef9f-4c2c-409f-9079-784e03645eea
#> 3203           12212        713        NA 07ab211c-4733-4336-b59a-2137f3efe5e8
#> 3204           20612       5650        NA 7428dd41-d736-4141-991d-b7a74b61aeda
#> 3205           18372       3592        NA d37758ce-9e3c-4e3c-bb7b-b8eaf1c58541
#> 3206           13442        979        NA fc506583-7edf-4e40-8047-83f60bea67a2
#> 3207           19107       4261        NA e055cf84-9602-468a-a960-5240cab53aff
#> 3208           21574       6675        NA dd074695-df70-49ab-ab37-504bac11d171
#> 3209           17165       2697        NA 0f1b8946-54b9-43c3-8c9e-1778c6314e9b
#> 3210           11311        581        NA f1cff356-8de9-4589-8522-40922fecfad7
#> 3211           16168       1930        NA ebb13f2b-f29b-4f05-b88a-a522d1935fa3
#> 3212            6853        273        NA 93ee67e5-08d1-4272-bc6b-d97feaab5d6b
#> 3213           11612        643        NA 4094730d-a3ad-4c7e-a899-a3c8001748d9
#> 3214           12453        755        NA 5bd91ec9-3d48-48c1-b36e-78462044acfc
#> 3215            2104         74        NA 0f0ff562-af1c-4be8-8011-1f71e8441e00
#> 3216           21091       6189        NA b2830633-1ef9-44e2-ba35-8bbd8a3a84fd
#> 3217           20272       5535        NA b0c19fa7-b58a-413e-812b-54fce2038239
#> 3218           21066       5897        NA 8e4979d6-aa7f-4b18-a0ff-74021728ca1d
#> 3219           11548        625        NA 4a8190f6-039d-485b-8d51-7f98368b02e1
#> 3220           15433       1660        NA 3d6d3bab-67d8-4c08-ac5a-0cd80405e3c6
#> 3221           18050       3289        NA 822e1946-3df1-4a25-b967-291a0c435cf5
#> 3222           19197       4341        NA 36bbcd0f-c3a1-4656-850d-6f0c7497a483
#> 3223           15280       1608        NA 2592f1d6-3cc5-4e32-b6fb-18ad517be491
#> 3224           19327       4461        NA be6c0952-4400-48bb-8a67-95c00f8aaab7
#> 3225           20532       5434        NA f58c28b8-262c-44b3-ab15-992c362e3f43
#> 3226           15453       1667        NA f4ce175a-0408-4215-8a64-2cac3679d151
#> 3227            2379         88        NA 7a2612f3-ea18-444c-95ee-f1ca597d6fb0
#> 3228           15311       1623        NA cb2a824c-bdaa-4848-9f56-b5b37bf419e3
#> 3229           11154        555        NA c0cb57ed-b7dc-470a-8769-c161dad25de6
#> 3230            8593        375        NA adc1b9ae-0b59-4399-bfba-959f694dde3d
#> 3231           20165       5215        NA a45043f1-9e33-4564-bd69-df6528cbd03f
#> 3232           17108       2640        NA fc73c0c1-b250-4feb-a5d6-f30145b28bad
#> 3233            7243        290        NA 26138e8b-b776-492a-9684-b1c07e51b25c
#> 3234           21236       6330        NA 11c5317a-a0a7-4330-a1e5-532dbfe8f021
#> 3235           12167        704        NA 9029830c-1394-494f-a92c-e192697913cf
#> 3236            8776        395        NA ca8815bc-c68f-4d18-80fc-f61e4a2053b8
#> 3237           19151       4303        NA e8aca261-6e92-4e6d-bd21-3cfeb70ce9e4
#> 3238           19366       4496        NA f18e87b1-2548-4bdd-8b30-25fc04c9788a
#> 3239           20638       5712        NA e3a87257-7012-48c5-8ab2-8322f3a95f2d
#> 3240           12215        714        NA 76f95387-3bc1-4756-a714-a4b1a93f23ff
#> 3241           21334       6355        NA 5e32839d-6ea9-4f92-8209-520a980ffcde
#> 3242           21209       6309        NA 1824b9ce-a9af-4284-bc33-c36f100b13c3
#> 3243           19991       5083        NA d4590268-6931-43a1-b794-d9a684c508db
#> 3244           14440       1209        NA 5db03086-c670-4adb-98ed-b6a59a4f9270
#> 3245           20127       5489        NA 1ad00b25-912a-4e92-b585-906594f3020e
#> 3246           21499       6512        NA 274c50e9-73a3-45f9-b9dd-c08270f1132c
#> 3247           20348       5594        NA cdd83d70-ee27-42d0-a6f0-7db2c2ec6995
#> 3248           13476        995        NA e9a0297a-0b34-4c55-af1f-ca113d672195
#> 3249           16000       1815        NA d452a634-8f68-4bae-808d-5ce4d9630970
#> 3250           19094       4248        NA 86697b45-157e-45ed-b63d-826cf5c7a0a1
#> 3251           20608       5681        NA f7b0f6fc-217a-4df0-b5d1-a9555fabbba9
#> 3252           20509       5739        NA 30d66e1f-256c-4597-b31a-e54a17508c35
#> 3253           21518       6527        NA 7c218b81-76f2-45a1-b4a1-ac4e7a987c6c
#> 3254           21552       6667        NA b4565520-ee0d-4d4a-a3dd-7f8c17a9196c
#> 3255           14256       1168        NA 0cb97421-cccf-4cce-ac0f-92d47986defc
#> 3256           20344       5469        NA 5535abc8-e8c0-48bc-b233-3aacccde7eaf
#> 3257           16677       2266        NA 6fa770b7-6cf8-400f-a3ea-47696eef0074
#> 3258           19321       4457        NA 6c51cb10-bafe-40a2-9a1e-002dda2f88e1
#> 3259           19285       4425        NA 82d57e35-193d-4f1f-ae40-f73b4c4c15c0
#> 3260           21047       6113        NA 21b89b42-8e13-4450-a5ff-a080c80a5400
#> 3261           19374       4502        NA fe2712f8-45df-49b7-a871-d68b7006a912
#> 3262           13448        983        NA 675fff00-6821-499a-b30d-04fc54468eaa
#> 3263           21265       6537        NA b997cb23-f1a0-43c8-a684-7941e38afa8e
#> 3264           19462       4575        NA c242081f-f312-4e15-8de3-854dfdc2bccf
#> 3265           18287       3521        NA 4e31b011-050f-4024-8a7f-bbae9b01b216
#> 3266           18386       3601        NA 1e4470b2-2710-4c23-b1ee-5dccd31352a9
#> 3267           16975       2516        NA a044125d-85ff-434e-ac2b-deeecf314d63
#> 3268           14605       1248        NA e461d721-5ca5-4896-8fe5-12e452a003b3
#> 3269           19002       4156        NA 6b01960b-1a92-4aec-a262-db57ca85c22b
#> 3270           19088       4242        NA 9cdc17a0-1cd2-43b5-948a-579a993a30fc
#> 3271           14826       1327        NA 1d127c62-d7f3-4fe5-b30d-9b7a9cef6637
#> 3272           20257       5510        NA b25967e0-9a90-4b59-bf85-168581e0da04
#> 3273           16590       2212        NA 7206bfcb-ae42-4220-b738-158d3e2bb0fe
#> 3274           19418       4539        NA 324274e2-f7d1-40b8-b5c8-4cf58fda42fd
#> 3275            7098        280        NA b31b2a6b-1464-4c78-a19c-1f6ae627d519
#> 3276            8504        360        NA dc99b6a9-4825-40c1-858d-252a4061c289
#> 3277           19521       4627        NA 21be8393-db2f-4ef0-98a3-5f1b8421dd54
#> 3278           21565       6671        NA 838e8308-5d0a-43dd-a6c4-27b0d7c879f9
#> 3279           11178        556        NA a9217999-fa6d-4474-a176-1cf9013224ea
#> 3280           21433       6516        NA f1ea77e8-6e8c-454c-b508-f06e5676a0bc
#> 3281           19171       4318        NA dbe09c33-0164-42fa-8eed-e5d3f11377b7
#> 3282           15073       1478        NA e584c525-2f4e-4d29-95c5-1d16138834e5
#> 3283           20485       5693        NA 76c7bd95-fe1e-49e1-9a8d-b4d3a18e5df4
#> 3284           19277       4417        NA 3a3a9ed8-e941-49cf-bc32-331424d0bd42
#> 3285           18531       3723        NA 4a52883d-cc37-4593-9ca3-cb9967e4db5f
#> 3286           13310        951        NA 1c1a6937-9267-497e-9386-00562e5fb399
#> 3287           19040       4194        NA a8a5db13-5676-4194-8e2c-c75778366a3b
#> 3288           20104       5512        NA a25bf0a9-84a3-49c3-9969-50b046a0fa30
#> 3289            9042        422        NA 2c80e71d-c173-4c07-aeda-69371e969591
#> 3290           12838        828        NA a877e5f6-37c5-4c7c-9f23-9e3a9f9d0d84
#> 3291           14345       1184        NA 22b17923-9927-42ad-9c57-d9e89c5dd61b
#> 3292           19470       4583        NA 53fac8d5-eea1-431e-8754-d71446e0dbd3
#> 3293           19363       4493        NA 7649ea09-692c-4012-b071-11422d383388
#> 3294           17458       2967        NA 284a3a87-2d1c-4e14-84a5-07d5c817a69c
#> 3295           20208       5599        NA 0220c312-f4d4-4646-9bbc-1d9f8c3020da
#> 3296           10994        522        NA 6edf1c3e-bf89-4148-b827-cc4e50888c18
#> 3297           21648       6725        NA 53a783a3-183d-478a-a752-cb28054d208e
#> 3298           14367       1188        NA 18f9dc06-eaa6-4c7f-8995-78aea971fdd4
#> 3299           15223       1574        NA d6aea7ed-2c24-4be5-b789-41e3ba0c2137
#> 3300           21477       6520        NA c2a4c4a4-d0d7-4687-bd2b-7ea13118c3a7
#> 3301           19000       4154        NA 3671d5fb-6f0b-4582-8007-0265a66cf2c1
#> 3302           21180       6561        NA 59a2ccc2-8f08-45b5-808f-a8938a95f1f5
#> 3303           21461       6478        NA 8cdf3bb1-29d1-4812-ae16-893f3c448df1
#> 3304            8296        334        NA 0ecd0d32-5e18-40bb-b8bc-278b6206657a
#> 3305            8419        351        NA 5fbfe48a-11ee-4141-8f8d-6bef67d3ea69
#> 3306           16349       2053        NA 4a9a26fa-6a05-4c67-a023-43773a5c67f8
#> 3307           18672       3851        NA d5ce4494-a0d8-4c70-9759-48afe6b19a7f
#> 3308           18169       3408        NA 159f802d-8825-4bc9-aba4-e6631aa11e44
#> 3309           15115       1509        NA 8e6af99d-a697-4be5-ae7f-f1ddc12bd15a
#> 3310           16950       2491        NA b220ff58-7cb4-472d-93b5-da41058d9a79
#> 3311           16483       6718        NA 8834e7eb-3cf0-43ae-ac0f-5a1e28dc5107
#> 3312           21544       6652        NA 7c05af13-68e8-4aa4-b2ae-745bd0fd1e33
#> 3313           18078       3317        NA 258deb9a-9e98-48b8-bb86-3f2e339ecef1
#> 3314           18085       3324        NA 2b808ae0-ff65-43d5-9a07-b21d02e36c35
#> 3315           16596       2215        NA 3f22bb95-48f6-4ff0-a199-55257d0aaf91
#> 3316           13261        939        NA 6499ef2a-c7a9-4f14-abeb-8cc165333249
#> 3317           21664       6747        NA 52bb89b1-5d19-43fb-bb16-e7ed48eaa17c
#> 3318           19052       4206        NA 60121cb4-ba9b-4f3d-9add-7d55890e4795
#> 3319           20407       5553        NA adaa09ba-2a08-4910-ab31-e6641c3c4941
#> 3320           16604       2220        NA a797919f-59d2-42d2-be96-d78312fa6b48
#> 3321           21321       6418        NA 992d1531-9091-486d-93d1-53e8b060e950
#> 3322           15410       1653        NA ba736850-97fe-48c4-a5c8-cdbe3bf6fbd1
#> 3323           19210       4354        NA b84995d5-f1b5-4d6e-84ed-66babfadee90
#> 3324           18273       3507        NA e710f662-a7ba-4a95-a5c8-982519ecb2ed
#> 3325           20276       5688        NA 4086e06c-747e-433d-85e1-5b38443c0c78
#> 3326           18591       3778        NA 7e93123a-caf3-4915-bb8a-e1199257f8de
#> 3327           16507       2160        NA a54b3a65-476d-4913-8f64-9b85ef61e310
#> 3328           20571       5538        NA 19dd5977-ff82-4fa9-baa3-643a0c49e615
#> 3329           18397       3610        NA a4bf7889-f726-4bb7-a390-c962d6cc04bf
#> 3330           20543       5656        NA 93d973b3-06c3-4d22-b7b2-5430f53622d3
#> 3331           21076       6112        NA 4cac4ec4-d719-4f77-a714-0a8ed45be814
#> 3332           15128       1519        NA d54a562d-0571-4960-a903-6e98415ead6a
#> 3333           17756       3044        NA a04c2eb7-52a1-42db-9960-f97486cfe417
#> 3334           20259       5631        NA 297bd882-4641-42c0-a612-d3db66d6093c
#> 3335           19039       4193        NA 8f738734-fb58-412f-a549-27295e3183b6
#> 3336           20425       5412        NA 9b1fd0a4-6a45-4388-bf1e-bf4162e84056
#> 3337           19334       4467        NA e4c61c4e-a9ae-418d-9469-4add053e541b
#> 3338           20615       5731        NA cb006e99-2754-4bd5-a521-6d0cf473b233
#> 3339           21339       6525        NA e4a4febc-ebb2-492e-a3d5-ef5bdd2f9b1e
#> 3340           20843       6062        NA fea687cd-12c8-4954-8431-31b1634bcd3f
#> 3341           19195       4339        NA e51b8fd6-dc76-4810-a77e-2bc153a29d1e
#> 3342           16873       2417        NA 3887491b-d2f3-43e2-bd27-01ba860a65f7
#> 3343           14852       1335        NA 36bb2c46-33d3-4e86-bb12-63b658cf8f7f
#> 3344           18196       3432        NA 9e360674-eb05-4d1b-ba8c-03d6c12fb177
#> 3345           17496       2989        NA 5bd4b926-db76-436f-9390-5c96475245fc
#> 3346           14813       1318        NA 000bc6c6-c9a8-4631-92d6-1cea5aaa1644
#> 3347           21430       6513        NA cc100593-db21-4a2f-a6d2-607bdcea88ad
#> 3348           20062       5621        NA e9a3dcf7-e5ba-4f4b-85a4-7a46b901d8b4
#> 3349            9050        424        NA 3ebbc479-fec5-4463-8eb1-b9b09b0d3bc2
#> 3350           21572       6673        NA 04b20ccd-7dfa-4269-ae9e-e4227b803fa1
#> 3351           21628       6709        NA cb175050-09d6-4216-93ee-276fed373aa1
#> 3352            7459        301        NA fafd2927-7e17-4e85-afa2-aa2c019229ed
#> 3353           20439       5499        NA c2648042-c616-4ee7-b9d5-f1b77c560c0e
#> 3354           20267       5782        NA 593e7567-a8a2-4032-876c-12ef72720dc6
#> 3355           18579       3767        NA f5664cdc-9ce6-4533-b55c-89d3bafa7012
#> 3356            7815        319        NA a54b32de-57a0-4ebb-9eca-059d956fee22
#> 3357           20483       5440        NA 092b8c48-e863-474c-ac81-212d1265dedc
#> 3358           16241       1977        NA 89398fe2-d54f-4672-9324-3012c06ce2a6
#> 3359            3339        124        NA 9c2bf2fc-d6cb-479d-8ece-f2ab4d1cda91
#> 3360           11046        532        NA 6a1b2504-153c-441d-ba17-f78457d58b9c
#> 3361           14273       1172        NA 4cf02857-f50c-4a6f-b94d-ff12d8f701b0
#> 3362           19722       4809        NA 9ad0b3b1-28e5-4c23-91fb-728beb7c63d4
#> 3363           10956        509        NA 1540d25f-4758-44d8-a4eb-276845326620
#> 3364           15430       1659        NA f1fdbd9f-484f-441d-9f50-35e972a50300
#> 3365           19678       4760        NA 84a504f4-417f-4af3-ac1c-6af958e10bdc
#> 3366           20465       5523        NA bb6dc980-e124-4548-9344-cd67803b146a
#> 3367           20256       5509        NA 851670a6-111c-4678-b4b6-60c2f813cbe7
#> 3368           16494       2149        NA 78009cf5-8d12-42cc-9a99-34137cd0b420
#> 3369           15008       1439        NA 2db8a161-7b3a-4a3c-b915-c5be5b3cd39b
#> 3370           14061       1129        NA 83fac4ad-a729-4774-a44e-20713aa01319
#> 3371           20590       5584        NA 03863dcc-b11d-466e-a6f5-845d91b9ec3e
#> 3372           19227       4370        NA a29582a0-fa94-4337-b6d1-aba67e8d3141
#> 3373           20454       5404        NA ef133256-fb0b-4a2e-bef8-48b5245395a1
#> 3374           21471       6471        NA                                 <NA>
#> 3375           12490        759        NA d90adc80-8e8e-4484-92a3-00bf274e6a9d
#> 3376           20958       6160        NA 18750e3f-5625-4253-ac44-61c6b8fc07d4
#> 3377           18166       3405        NA 345a3f59-1eec-484b-93d0-6330bdb358e1
#> 3378           20459       5478        NA a8912b9a-e400-4f2e-be47-59e17b4ddf2d
#> 3379           19201       4345        NA 5a7fd0e3-5b63-4ebd-b8f9-02f3dafe0d45
#> 3380           20205       5676        NA 3422e0da-2496-4e8c-b716-599b5782a567
#> 3381           20720       5826        NA 43b6dba8-0299-4f5d-9094-e061be3e8fe8
#> 3382           20657       5748        NA 8b91b834-6eae-4a18-8fc6-9c99caafa615
#> 3383           19468       4581        NA 7b7bf4a7-4600-4540-b675-c3e4c7f163e9
#> 3384           20287       5542        NA d6fffab3-1d96-416b-8f9f-fbdff691f33d
#> 3385           20197       5172        NA 7a41d4ff-5634-4b1d-843e-820e9b2a6049
#> 3386           17158       2690        NA 5286148b-f209-4a92-b3d7-83e4b05acba4
#> 3387           20115       5641        NA 155d6c0a-4ab8-4e58-92c4-5e955eb4ea13
#> 3388           20291       5544        NA a7db348f-e49d-4ec4-8818-57a4820f2f14
#> 3389           21305       6347        NA 04a63d1d-683e-46ed-a929-458923150f5e
#> 3390           19576       4675        NA befe4b46-f918-4faf-a9ad-c034e990c0cb
#> 3391           19218       4361        NA 0cea85ba-f49b-4f4b-b50e-b96042a6a680
#> 3392           20575       5574        NA 82a32245-a807-4018-be7e-a64e10abea6f
#> 3393           20855       6061        NA 0baf5ce4-ce92-425e-b5aa-ea0c388a9b6e
#> 3394           19312       4859        NA 56615da2-0091-4683-8596-5b13d933db93
#> 3395           16471       2134        NA 4bbe4348-4fe2-4787-a6c4-fd2a9ff76bac
#> 3396           20832       6079        NA b82c2d22-1a6e-453f-ba11-9a048bf36f63
#> 3397           18827       3990        NA c8b91c2a-3a98-42ea-a295-35344979fdb9
#> 3398           20114       5640        NA 7033ecd3-b11e-4123-8328-4413e1d7acc4
#> 3399           18738       3912        NA 935189f4-3934-4206-a64e-c5b92f3d9c43
#> 3400           20739       6085        NA c5dfe8ed-dba1-46f5-821d-cb88ee7ab664
#> 3401           19338       4470        NA 63de92e7-69a9-494f-b2a6-43aa67ad325c
#> 3402           21010       6020        NA c3f75363-b89a-4d6f-be40-e10ee2704c6c
#> 3403           20261       5633        NA 8044439b-4873-4d1a-ba45-0e3365d889cc
#> 3404           20851       5896        NA 48a49ac2-640c-4ef5-9192-4ba6ccc306ea
#> 3405           18989       4143        NA 4123860b-90a2-425e-ba0b-051aad7c327e
#> 3406           20630       5735        NA 0d732ceb-7d32-4469-99a0-386af0d951f1
#> 3407           16109       1889        NA ece6cc68-6834-4c1a-ab97-03d327ea132d
#> 3408           20955       6656        NA 37aa17f7-890f-40ad-ad48-57d70f2708a9
#> 3409           19634       4724        NA 37e44075-a98b-4908-ae69-4963c5cc3c69
#> 3410           20579       5581        NA 8bcda483-4714-4caf-bd21-4e64884a1ab3
#> 3411           21288       6533        NA 8777f90a-8280-447b-9fb4-806989838e9f
#> 3412           19563       4664        NA 57b80476-cfca-4d31-a7c3-cf84ea3261b0
#> 3413           21034       6099        NA 889052f9-12d3-4540-af7f-2728c1ad91de
#> 3414           18155       3394        NA 0c3f8621-b32c-4887-890e-dbd6b76b2370
#> 3415           20687       5784        NA d15e6d19-924c-4c1f-9d1a-e15b378c2875
#> 3416           21267       6571        NA 5bf874ec-3fae-412f-855d-257870e1c72f
#> 3417           21068       6046        NA c66e5f22-10ad-41fb-9fde-52598df5fba7
#> 3418           20260       5632        NA 335ba0c8-25e2-46a9-89b9-8d9eaafe11cf
#> 3419           20548       5557        NA c4243a66-f376-4ad0-ac40-3e2b759ba64a
#> 3420           18046       3285        NA beeb2f7d-e318-478a-956e-7419aae66bd7
#> 3421           18077       3316        NA 9823700a-2d8e-4872-862d-382d69c67a46
#> 3422           20017       5338        NA 3b10d2d7-f361-4bc2-93ca-1bbe414b1862
#> 3423           19385       4513        NA e7488114-9a87-41e3-bf4f-85923ddb106f
#> 3424            3253        118        NA 480277d1-47c9-44df-969e-038a84cd0fea
#> 3425           18473       3673        NA 7df7e968-8402-48a4-b0b7-97cb54a1702e
#> 3426            5714        229        NA e5247e5f-c4af-4a9b-8c7c-da75ef7fbf8d
#> 3427           16164       1929        NA efb15571-8b8c-4894-8c3f-f595cf7ccf87
#> 3428           20238       5247        NA 33c4aa3f-8f62-48c0-9ebf-d6ad73c6e4e3
#> 3429           21508       6496        NA 5e52491c-218a-4e32-b455-0d3aa05b8151
#> 3430           14877       1358        NA 596c4000-ede5-45b0-8336-33efeb686d2b
#> 3431           18255       3490        NA 2c0ebb74-96d8-4d13-9891-90bf9b15fd0e
#> 3432            3258        120        NA 9ecf8040-10f9-4a5c-92da-1b4d77bd6760
#> 3433           16644       2242        NA 0d1171d4-c955-4966-9257-640b569866d1
#> 3434           10092        499        NA 4869b8db-2e38-4327-af11-cc1e17ef3490
#> 3435            3388        127        NA 218d1644-603e-4da3-9ce1-48ce3927494f
#> 3436            4354        168        NA 47cfc2a1-2b81-430e-8b30-ff5129e5c601
#> 3437           13140        909        NA 30be69a5-f203-49dc-a354-19e4733a80da
#> 3438           16065       1856        NA 94d5430e-41b9-4b3f-af7e-4d25bd6da4be
#> 3439           17274       2806        NA b882eddd-10fc-4cc0-9a8f-ca2d6db0c6fc
#> 3440           16682       2271        NA b1f8c22c-e516-4fdc-9ecd-d2bd1e9a1f36
#> 3441           13112        901        NA 6fbd5f30-db84-4c38-98ea-69631bdbc53f
#> 3442           16272       2000        NA 61033955-2852-4620-a5ea-cc596a8f4e12
#> 3443           13358        962        NA f9354bca-514d-4f8d-97b2-5c6ed471edff
#> 3444           12195        708        NA 7853d82d-7c4b-4275-8ade-f8b96dd89bf5
#> 3445            5334        210        NA e9b4a5be-80ed-4e00-9db3-6ee69e32b529
#> 3446           20258       5511        NA 8488c04c-1972-415b-85b9-84829ee09f11
#> 3447           16879       2423        NA 5f727913-cfa9-44e5-89e4-e2a52dc11760
#> 3448           15132       1522        NA aad60db9-4a23-44d5-a738-46443e99ea77
#> 3449           15669       1729        NA a41304be-54fb-4448-bf94-9bf6334a880a
#> 3450           17188       2720        NA 91fc931a-acff-46d1-8233-182ce9635740
#> 3451           21219       6316        NA 4cad5078-de06-4449-b629-a954b92c51e2
#> 3452           17203       2735        NA d1ac1143-9b14-41b7-be88-6b094592a3dd
#> 3453           15301       1616        NA f41be233-94ee-4d66-bb7b-aabb9a9509e8
#> 3454           14750       1291        NA 3f6b7426-8fc2-44c8-9cba-9d6234e9d43d
#> 3455           20458       5477        NA 4916c90c-11e8-44d8-be62-67806f9efcdf
#> 3456           12562        772        NA 8bc1b144-ce6d-4889-a1e1-e7cc394756e6
#> 3457           12424        750        NA 171deb91-d41b-43d6-b531-9d4cf7fa2bb4
#> 3458           13941       1093        NA e858a1af-ebbe-4413-9903-ecd96d36a09b
#> 3459            8003        325        NA 61a9fbd6-4913-4814-b5a7-9c71fbd4cac0
#> 3460           12753        803        NA c3315876-1a17-4c6e-b024-07db4489e016
#> 3461           15986       1808        NA 42a9be0e-66cd-4efc-8150-91950ed97955
#> 3462           15065       1470        NA 67c59603-6e43-4446-9035-6a2ee811ed1b
#> 3463           21659       6741        NA 39e9762a-327a-457f-9361-65c0e10a0e9b
#> 3464           11940        678        NA 38a7122f-5c9d-4b65-99bc-b9822f9d981a
#> 3465           17301       2833        NA 5651ca6a-4d61-41ec-8bf4-341069ee0591
#> 3466           15530       1688        NA d9f211f9-6028-4153-a9a8-f4d05298e6e4
#> 3467           12157        702        NA e65e1798-fa0c-416c-a88b-c28fc7f6a574
#> 3468           16266       1995        NA dfbbe1cc-1fce-4599-92ae-922a8b79fb83
#> 3469           13520       1000        NA 74c595a3-b683-49b3-90f3-fd8327857b1d
#> 3470           16037       1835        NA c5573e07-97a8-4a0d-a325-753af5e564f1
#> 3471            1248         44        NA 22f9e814-6daa-4fe6-982e-c2cc5290561d
#> 3472           15703       1740        NA 7bf442fb-62c6-4cf5-8d5d-a8ccd6daa80b
#> 3473           21357       6743        NA 671f58ec-970c-4ccd-bfcc-115cecc3f189
#> 3474           16691       2278        NA 4d492cde-8c65-44aa-a4c9-c637b4e22366
#> 3475           17044       2579        NA a333a955-16bf-4157-bc86-a6919ce9edf8
#> 3476           16784       2328        NA 17cc7638-a3a6-4008-9fbb-72f03ef5f775
#> 3477           12305        732        NA 428873c9-887a-48a2-b4d3-e06618ebd2dc
#> 3478           14032       1118        NA 6fc9e2c6-fb44-490e-8353-2362b7b94ee9
#> 3479           15139       1528        NA a1308227-2421-4537-9074-3218f078d9f6
#> 3480           12063        690        NA 680fd5cf-3bdc-4317-bc99-cbd97fbebeb3
#> 3481           12581        774        NA e232b84c-2e05-494a-98ac-69489544d16f
#> 3482           20215       5517        NA 4f9cc48d-e9dc-42b0-93d7-6938ec0a8e7d
#> 3483           20489       5496        NA b0946b90-9a41-4a88-898e-eff0894e213b
#> 3484           16280       2005        NA 663dae9c-0484-4eb6-a093-ae19d0a743db
#> 3485           14021       1116        NA ba384269-98b5-47ee-93bb-18a4e71ad0eb
#> 3486           16978       2518        NA 5a5ff009-7591-4a42-b7cd-07a77af5b939
#> 3487           16843       2387        NA 0af18f1a-0f65-49a0-a09e-b37cfd875286
#> 3488           13860       1064        NA a62a2950-521e-4670-a4cf-47f6863fc0d1
#> 3489            8565        371        NA 9f98ec9c-fac4-48f2-996c-9c7558f64221
#> 3490           17144       2676        NA 775d6455-bc3c-4fd0-9adf-ae105f71fc95
#> 3491           16890       2434        NA 2f901553-926f-44c4-8ef0-1f0ff2d772cf
#> 3492            8231        329        NA e3896096-bafa-4c02-bd35-372c4002b3d7
#> 3493           16613       2224        NA 959852b0-ce24-4c89-abff-ded427cbfbdf
#> 3494            7383        296        NA acc3b2c7-d229-41c6-bee6-0cc0c5c0cf29
#> 3495           16901       2444        NA 5e576254-2f7e-4456-8bbb-26964d1e67b6
#> 3496           17162       2694        NA 3a17fa1d-19a0-4e5a-922c-7a9b648d2ed6
#> 3497           17175       2707        NA ce29ca20-450a-467e-b683-8bd6fffad38c
#> 3498           14294       1177        NA 204e0eb0-c5ef-4522-9056-393e2e5177ea
#> 3499           20677       5769        NA 4291f18f-19cb-43ca-8385-50af43d7448e
#> 3500           21186       6253        NA 9f54d2f9-b787-4a50-8ea0-9db1cb7760aa
#> 3501           12742        799        NA 7190fb71-0916-4f9d-88a0-8c1a8c1c9d0d
#> 3502            9051        425        NA b5a6d6f3-73a9-4d70-bfa1-786bf166d14c
#> 3503           21454       6530        NA 328dd5c5-51e1-4554-813d-b264098b061b
#> 3504           15147       1532        NA b399ac02-6b52-4ae9-8eb0-7b3fffc29eea
#> 3505           16900       2443        NA d292c14d-ed36-477b-b088-ce80c9185710
#> 3506           16932       2475        NA 503066ed-f217-4c3a-bda5-07bfc68c1cac
#> 3507           17098       2630        NA 6baa540c-d745-4804-b20b-20dae69d0d9f
#> 3508           20583       5582        NA 16912b78-47fa-4742-ac95-60df2585a00e
#> 3509           21247       6340        NA b454036c-4cca-4b02-b847-c7c9f68c345d
#> 3510           17172       2704        NA 1d4e5e39-3328-4043-a743-1af99b5879c8
#> 3511           16969       2510        NA ccde8174-ce0f-44f8-8bc2-e44872a2f30a
#> 3512            8950        414        NA 37fd76c4-41d0-4997-a94c-d135bd9dc582
#> 3513           21592       6693        NA 787b5760-f724-4caa-9c54-f26bb6efdc30
#> 3514           16840       2384        NA b0ccc4f7-84a8-448b-bc7c-11e41d14ad09
#> 3515           13400        969        NA 94cbc2c8-07e4-4779-851b-b657b46a7920
#> 3516           16937       2479        NA b8f2a6c5-b7db-497c-93d1-08ac7f3dbbd4
#> 3517           17279       2811        NA 429ba323-7175-4bb2-8f81-e77fe9d38f3c
#> 3518           12910        844        NA dc30acae-b1e8-4676-959f-d3dad221c694
#> 3519           16157       1924        NA 8a372789-3c74-406d-b3de-d2ee387b1f22
#> 3520            5083        199        NA 9c6d7765-03dd-4266-aeaa-926e5a85235f
#> 3521           19826       4959        NA 6bbb8551-be80-4eae-a1a5-9f877f917a05
#> 3522           21308       6411        NA 7d8a8d31-8628-4a56-934d-ada35fe98e8c
#> 3523           12383        744        NA 12aea7fe-1548-4426-a47f-76bac18290bb
#> 3524            2194         77        NA c38a3fbc-f9af-4676-b905-4f101a99194d
#> 3525           15372       1637        NA b0a3df00-b1ed-4ba5-8c2a-1414b6871e61
#> 3526           20186       5227        NA 0845c23b-3e5d-4802-ac42-e2658a55e9c5
#> 3527           17913       4899        NA 1749d4fa-1cdf-4f62-9783-08dd81e25a87
#> 3528           20633       5737        NA 9e324b1e-b03b-44cc-83b5-1d483b4051e8
#> 3529           21469       6464        NA 189d2495-ff24-4ffb-9887-8fdc717cf4c0
#> 3530           21262       6597        NA c83a2be7-048e-421a-9734-ff1a26a05484
#> 3531           18723       3899        NA b1a65955-f70b-43c7-b262-b6781e404b4f
#> 3532           18021       3260        NA 89781fd0-0817-4de8-ac16-c9cf095b333e
#> 3533           21245       6338        NA 1435dd7d-3378-45ac-8b35-3ef9260afbaf
#> 3534           16982       2522        NA df13444e-015f-413a-89f2-fe402765f232
#> 3535           20076       5364        NA 1d5c2aa1-3c96-4cea-9589-723d3cc9cd57
#> 3536           12885        838        NA 29eb7ecf-3967-4bc4-812f-9ffa947b34ff
#> 3537           20992       6134        NA f042a554-0303-4cbb-8ca3-b56281664b7f
#> 3538           20147       5187        NA e430f1a2-3546-4691-8dd3-37c6262db83d
#> 3539           20564       5485        NA f890f03f-3f07-4e11-bbd3-c59aeb877326
#> 3540           21587       6689        NA 5c10f2aa-0ee8-4629-8a61-3af17877fb63
#> 3541           21465       6466        NA db9afb6c-3148-4e7a-8b3f-182fa8ad28bd
#> 3542           21244       6337        NA b6086d5d-4976-43ed-b5e5-56a0251a8e30
#> 3543           20617       5696        NA 7305431a-7db7-47a0-ba82-cc4faff5f278
#> 3544           21485       6616        NA 4ce9600e-ee43-4b0a-becc-c8de646ff451
#> 3545           20381       5616        NA 1a4d1d61-ea6e-4c11-80f5-a6b807932db0
#> 3546           19262       4403        NA 2fa2b6af-de4a-48f7-9548-47333df7fbe0
#> 3547           19126       4280        NA d75903d3-b3c5-405d-a99b-d625bb063d82
#> 3548           21153       6230        NA 859229d6-d9c9-4d5b-87f9-2f5a2145cf12
#> 3549           20304       5473        NA 0ae84f6d-1523-4ae8-883a-149539dcd7b3
#> 3550           20243       5457        NA 6c9c6852-1f41-4e03-83c2-9c4d78e35342
#> 3551           21495       6495        NA 83f3cd34-466b-4d30-acfe-42523e6f5764
#> 3552           21566       6658        NA bab20c49-1865-4c95-a850-fccaca346c18
#> 3553           19684       4765        NA b22487e6-897e-40b4-92dd-3ce8d851e587
#> 3554           19202       4346        NA 590a61c9-e38d-49b2-a8e2-21340d613cdc
#> 3555           20596       5611        NA 5729fb1d-9fb5-43da-824f-66b96822f023
#> 3556             292          6        NA 1c5a8bd4-1b02-458e-943d-c391d3f0258e
#> 3557           20432       5414        NA d753a8d1-abb0-404a-ae73-ae8beab3d28f
#> 3558           10977        517        NA f0d837e0-54e6-496d-9334-e2d6365d16d6
#> 3559           20445       5399        NA 69560a34-8601-4e88-a555-b99955ce28b4
#> 3560           21232       6326        NA d8afa121-1cd9-499c-924c-364a6e0e0f7c
#> 3561           14859       1342        NA 52f75d86-f8fe-4411-a381-7675acd5bca9
#> 3562           20054       5339        NA be1314f9-5b2a-495d-be64-579158fd29eb
#> 3563           17941       3180        NA 60cc4395-be8e-441f-b6b2-7e74e15f2593
#> 3564           19057       4211        NA 139d8533-cbd7-4a41-9567-f1ce1c641311
#> 3565           20609       5682        NA af606d16-92a5-474f-8674-0bcd440a76c2
#> 3566           18840       4001        NA d59adf1f-97dc-4787-b47b-9dc6148941ee
#> 3567           20948       6188        NA 50ffb7df-ae23-4211-a495-3beac62a6522
#> 3568           20645       5725        NA 0bfa4f27-7a00-438a-a0c9-20fbf0be3370
#> 3569           18338       3563        NA 54403340-5565-4fdb-82bf-60c9b38a9bac
#> 3570           19050       4204        NA 900c4073-411b-4ef0-9188-fc4188ffe588
#> 3571           18656       3836        NA 3935a558-5680-4a4f-9a7a-a067210a2a42
#> 3572           21147       6225        NA d82636f8-8ec5-4be3-a61a-8b1947a880d3
#> 3573           19990       5085        NA 021fddc1-4ba1-4bcb-9f40-347a0be8866a
#> 3574           21488       6483        NA 9fb02841-5372-49f8-b621-958d5bb4b189
#> 3575           21185       6252        NA a3dca1fa-69cf-4468-b95b-63c8d532dc5f
#> 3576           18233       3469        NA 555ad7d1-ee7a-4679-b24e-0cbee3ca680d
#> 3577           20623       5717        NA 4a1e3f81-112e-4357-b3a4-a7cb7349bd1a
#> 3578           18432       3642        NA e4b362e0-d43c-4279-b30f-15000dbc0591
#> 3579           19507       4616        NA 69abeeed-ad7d-46a8-a1a2-ce0c0a1c3afe
#> 3580           21483       6433        NA 8c56b03a-baa7-4030-ac56-6648fb154bb7
#> 3581           21152       6229        NA 051dbbdf-1718-4abf-a088-25e551f9a303
#> 3582           19315       4452        NA cbfc2a87-0ecf-4e5e-8d2d-2d171308f377
#> 3583           20131       5685        NA 4813aa50-3a36-4658-855a-1bf1098d7a69
#> 3584           18352       3575        NA 1d9fa156-0e17-4de2-8ee4-6756ea760066
#> 3585           20214       5516        NA 4385e287-c7c3-4a5d-ba11-642d9e7a99af
#> 3586           19405       4527        NA 53a75e9c-b028-4ae5-97fc-31992f8d9dc2
#> 3587           17266       2798        NA 64e79f32-c315-45ec-831b-374c0d6e10be
#> 3588           19127       4281        NA 76e8187a-8262-4929-8078-36e4820c018e
#> 3589           18200       3436        NA f6bb7c37-844c-4f68-bd90-f6bd1a8bb2fd
#> 3590           20641       5719        NA 90863a6a-0a66-4ad1-bb1e-13126324f644
#> 3591           20129       5443        NA 0f57f7d4-41b1-400d-bec5-09da91d825f1
#> 3592           21324       6356        NA 991410bd-6edd-415e-9ab1-fb03f0fccc21
#> 3593           21529       6644        NA 743aebf3-b1ad-4de7-a381-f6d10446989b
#> 3594           20650       5711        NA d0d36216-31d3-4920-acc2-e97823a46ecc
#> 3595           19383       4511        NA 2717b760-4ea5-4e18-b1b3-b39275b8978d
#> 3596           20048       5411        NA 8ecba9b0-11b8-4cd3-88f2-3f8301d385f8
#> 3597           19337       4469        NA a0fb3448-d9ff-40d4-8387-59a802768794
#> 3598           20347       5605        NA fdc9f4af-b677-44b3-947d-d7fd18e77390
#> 3599           19144       4296        NA d6d18868-c912-4af0-961f-e529d8fc8e45
#> 3600           19095       4249        NA da734b72-1ac6-440f-89c9-40b90c0ad1a7
#> 3601           19152       4304        NA 3a1d02b6-1940-49b2-a0e8-1ccb1896c5e5
#> 3602           20751       6064        NA ae2f82ea-f93c-4133-93d9-3404006f3035
#> 3603           21511       6498        NA c7f8e21d-25fa-4a9b-b4ca-ac65f548031c
#> 3604           18509       3703        NA 3423801e-c462-4d71-a740-28dca36bcbfa
#> 3605           19456       4570        NA 65fc4235-1a53-45fa-8117-b40bfdcc807c
#> 3606           21550       6670        NA fbf333a7-12c2-44da-8705-994abaadd67a
#> 3607           20334       5453        NA ebb3f664-8f39-448b-89aa-422f4aa9e312
#> 3608           21243       6336        NA 199c8ea9-eaca-405c-bb4f-e2738e59294b
#> 3609           21233       6327        NA d01f2455-60cc-486f-b8c4-9716f9e85b1b
#> 3610           20735       6066        NA 6f896917-eb15-41ad-9e0f-18ca8e8969b4
#> 3611           20163       5213        NA 80990455-df2a-4d7a-92a2-7828f4f9c777
#> 3612           20705       5807        NA 27a44c07-9e5c-4332-9ad1-7e66ddf0e9c7
#> 3613           21665       6748        NA b3768244-a2ee-4ab8-9c2e-4e83ac020821
#> 3614           21237       6331        NA ca8107bb-0548-49ba-8f76-2a65f93c4dce
#> 3615           18554       3742        NA e549984f-1414-4468-9645-4766ba767510
#> 3616           21075       5940        NA a3c8276d-e6f7-4fa0-bffd-a087f225ef54
#> 3617           20177       5180        NA 16b9334d-bebc-4f2e-94af-0450cb5dd0fe
#> 3618           21182       6249        NA 43fbd37f-a5c0-483c-9522-0f20c6483d80
#> 3619           21489       6484        NA a8873d1a-d00f-454a-b18d-8e833d429108
#> 3620           17311       2843        NA 7595ead0-d80a-4dc5-bbd4-b2577d566608
#> 3621           18138       3377        NA e02ce2d7-5bcc-40f2-a35c-3e80e6f7b695
#> 3622           20647       5720        NA 9c00d8a7-dc6e-4701-8ebc-2f9eb0a38324
#> 3623           20436       5418        NA 23489c12-9efd-4a72-a43a-38d2981caca3
#> 3624           21502       6508        NA b58cabc3-4443-401f-95fe-54809db519ab
#> 3625           20658       5749        NA 172b5902-e710-4101-ae32-9c18be65266b
#> 3626           19519       4625        NA 0854bc61-cced-4ec9-84fe-726c822d6926
#> 3627           20580       5573        NA 7a0fe22d-0eb1-4339-91d6-0d21b4804eb9
#> 3628           20574       5559        NA 2cf0146b-c27d-401b-a5f3-7774748343bc
#> 3629           21579       6680        NA 556c438d-87bd-4ef3-adfe-1ee617e7ef2e
#> 3630           20041       5380        NA 7c256087-75e7-435c-8efc-5b46ad316e6e
#> 3631           21624       6706        NA a01280a0-41f3-406a-83bf-3d57e2a6db90
#> 3632           17910       3154        NA 366703df-ee7c-4f00-b6a4-ae475956f039
#> 3633           18120       3359        NA 36c85a2b-ce62-43b4-b6ec-0497323da1a1
#> 3634           20545       5657        NA 53542368-9d32-4728-a72a-4e788f9d9ab3
#> 3635           18086       3325        NA d65013f2-51b0-45a6-8f26-608574abeee2
#> 3636           19580       4679        NA ac973c8c-c148-4866-b3fc-f39e402d61d9
#> 3637           20786       5939        NA fcba2ad8-5b56-4d42-8250-937e58a6e6e4
#> 3638           18572       3760        NA 8fd82d9f-fa30-45e3-8c5d-e2278441a984
#> 3639           16908       2451        NA 5b947dd3-1a96-48ef-bbf6-bf905556629c
#> 3640           16971       2512        NA f824eed3-af52-4794-92da-f32974831c98
#> 3641           20031       5343        NA 2feb5241-ab81-4907-b660-ef8e92976224
#> 3642           19248       4389        NA 3513168f-e8ec-4dc8-984d-c305758d2e38
#> 3643           21059       6015        NA 5c972829-e159-49de-9aa8-edf961b39850
#> 3644           19058       4212        NA 99e9c388-c562-40d4-b225-e99c57cb55ba
#> 3645           20846       5907        NA 0daacac7-7fd7-4ceb-9c2c-c7eb24e929e7
#> 3646           20605       5680        NA 00fab770-3336-436e-9901-89849769b7b2
#> 3647           20394       5387        NA 708dfc0a-2a20-4551-99a7-8188fe4cf99f
#> 3648           18635       3818        NA ff813dc6-d3fb-4021-830c-736996df5863
#> 3649           19651       4736        NA 0d48b2af-aed0-49be-9945-6c091040206b
#> 3650           18410       3623        NA 2ae84168-c2e9-4dd0-9680-afc1f9b11668
#> 3651           18304       3537        NA b6e1d56a-8fc4-4ea7-a88e-52f281c6d4ba
#> 3652           19115       4269        NA 1b96851a-604d-423b-8bd7-f0d394bd6ca8
#> 3653           18828       3991        NA a8e9bc1d-a8a8-4b93-b108-0f0f7fa04185
#> 3654           17027       2563        NA bed14e65-6ae0-4ad0-9f9a-85abb3c4824c
#> 3655           18557       3745        NA b8569ff2-bc1a-4b91-9830-c840e7b94549
#> 3656           20547       5556        NA 72fc9f1e-a09f-44bb-a2f8-4a51273fcb40
#> 3657           20359       5564        NA 4baef7c8-e86c-4524-b9ab-a25cbbc46fa1
#> 3658           20126       5488        NA 80fa17ab-6d73-4276-a9e8-ede251995fa6
#> 3659           18962       4116        NA a2b6e1f9-1f06-45e3-b6e9-79ec8490e5ef
#> 3660           20572       5546        NA f8ba56d5-ba8f-4ed0-92bc-e850c619bb80
#> 3661           20603       5643        NA a9b13ddb-a292-46b8-8f66-13fe60cffe5a
#> 3662           19586       4685        NA 8c609519-c1cc-4c84-bf7a-9c6c8d483800
#> 3663           21375       6550        NA fdc21b70-71d4-4b68-ac29-8470f9a95ab2
#> 3664           18590       3777        NA 91555a62-f501-46c4-ba59-20f4a27e8d8d
#> 3665           20622       5716        NA 9a63551b-fc8b-43c3-9f70-1f19835cf8c9
#> 3666           20251       5677        NA 3a7f48c5-6cda-4793-89a0-2bda1bc55e14
#> 3667           21155       6415        NA 1247fbf3-500a-42e2-a323-7a3d4a006984
#> 3668           20207       5419        NA 66a249cc-3ba5-4b1b-bc6d-b292f7f8fc51
#> 3669           20125       5487        NA 11e233cf-0f59-40b1-b59c-f5f3bb06bc7e
#> 3670           16176       1936        NA a2fbe350-af20-459a-b8b5-3c9a0bab06fe
#> 3671           18485       3685        NA 998fb46a-9579-479c-be9d-9ad9478b6000
#> 3672           19121       4275        NA 367d293e-9fc9-41e4-875f-3f2c1f8565c2
#> 3673           20430       5521        NA 0f8e560c-013d-47ad-8fa0-2a397ab3258e
#> 3674           21654       6732        NA ab9fd2ff-fb48-4d8f-824c-5172fe67d28a
#> 3675           19113       4267        NA e6723038-94ed-468b-aa3a-9c2080dcae81
#> 3676           20474       5405        NA 1fc0823d-73ff-4657-9c85-f4527abd6a12
#> 3677           20417       5651        NA 3f35f03b-45c8-4bac-a535-b97a0c5022b3
#> 3678           18436       3645        NA 18ac09ad-486a-4f94-99d0-2099aa85b746
#> 3679           17738       3034        NA 8bb26f10-90f9-42ce-bca2-1f450515d9d9
#> 3680           20613       5666        NA 9ddec51d-2012-4a18-a37b-fccabf04e0a0
#> 3681           17517       5729        NA 38e300f8-1cb6-46cf-966f-4c65f7c49d4f
#> 3682           18406       3619        NA f9344384-6d80-416e-aec8-876683583801
#> 3683           20242       5456        NA 4ed28749-5605-4706-a6c8-565dcede96bb
#> 3684           18651       3831        NA a217c048-2479-4b4a-8b47-6e166b16d1ed
#> 3685           21506       6638        NA ea1c9271-d0b7-463b-a232-3cdd74b31427
#> 3686           21580       6681        NA 9aa9d930-6ab7-4ba0-b6be-69f50497d8e1
#> 3687           15039       1457        NA cfb697e0-f8c5-4986-a2ba-59c99e3b5b1e
#> 3688           19147       4299        NA 97be6c07-9295-4f98-8a7f-83aaa7a47aad
#> 3689           17002       2542        NA e9256df6-ca8b-4575-8df8-75bf3367b85b
#> 3690           21359       6580        NA d5608d99-560e-4026-85cc-4ef79d1f1d27
#> 3691           20569       5525        NA a8edaf07-1599-47c0-a138-1fab2a84dff9
#> 3692           21371       6410        NA af51a581-554a-418f-a3b1-5e24da5dd190
#> 3693           21539       6648        NA 89fc014a-7d41-40c9-90d1-1459286813e2
#> 3694           20363       5390        NA a891204c-a3dc-4d72-a72a-b004ab4d9d96
#> 3695           21280       6532        NA 630e7cfe-e952-42c3-9ffb-33192be4711a
#> 3696           19106       4260        NA 907dee94-20a5-4ded-a25f-c5783c41a44e
#> 3697           20916       6038        NA 93d8047f-24c5-4a8f-827b-b3ddacebc561
#> 3698           19226       4369        NA 6e480446-348b-430a-b2d0-dca65cbe9fb1
#> 3699           19372       4500        NA eebb987d-dbe0-4d3a-95a4-33144c6bb53a
#> 3700           20639       5728        NA 32a0db4b-3c70-49b5-8921-ed99310691cf
#> 3701           21402       6406        NA 01be8423-2835-4450-80c1-4e462bbfb661
#> 3702           19340       4472        NA e5f9d5a7-f2f7-48c5-8abf-a72b8400dbcd
#> 3703           20668       5763        NA c3e877c0-282c-4955-a1cb-7e12403698e0
#> 3704           20640       5732        NA a6fa52bf-e47d-4799-b0f2-cb9fa9939220
#> 3705           17429       2953        NA f43c9d6b-8caf-4f00-a0c2-bb1f73e70a86
#> 3706           21135       6297        NA b867114e-9ac1-4368-aa44-226b6342c500
#> 3707           18117       3356        NA cce52ea1-7e17-4992-8911-e6b07b7b3831
#> 3708           20268       5531        NA 99c3a17f-afdd-4150-ba51-2120b61823fe
#> 3709           19693       4776        NA 86f9a399-bcd3-452a-9cf7-3a72294f2892
#> 3710           21447       6473        NA 30ed5daa-7bbd-4c35-b7ad-0ad0f9350973
#> 3711           21181       6562        NA 707b300c-cc7d-48e9-a0ea-ef20bac0ed0e
#> 3712           20896       6010        NA 10498aac-6432-404e-8bcd-52b0b9f57a21
#> 3713           19616       4709        NA 6c8bf92c-4031-4ae8-84fe-4a47972b3bae
#> 3714           21300       6412        NA 79348865-f45a-45dd-8b2f-a919b3fcc91b
#> 3715           20433       5415        NA f73a26da-0da4-4a51-88b5-98988ca94c58
#> 3716           21501       6603        NA c54e7e12-8433-46de-80fa-ae98cb5407dd
#> 3717           20927       6086        NA 8e57530b-1a1c-48d0-a6df-9fb2fa75f581
#> 3718           21504       6613        NA 8721884c-d136-4c87-ac7a-c61c035f1af2
#> 3719           18560       3748        NA 02d2c680-e929-41d9-b514-67ffe0c4cd2d
#> 3720           20118       5529        NA 9314e111-0b7e-4a75-8026-0cc5abe40543
#> 3721           19434       4553        NA 613aaf0a-ee53-431d-9bb9-aabc174fdab9
#> 3722           20100       5151        NA 726fbbac-42c1-451b-8712-72f92fc1cf77
#> 3723           18022       3261        NA c6c63d67-4913-497f-a17c-55c72cbe5b9b
#> 3724           18610       3796        NA 66a432fc-ee15-4f63-a37b-207c1b5e7c31
#> 3725           21460       6509        NA dec4a1a9-5bfc-4ca3-ad1d-903020bf4403
#> 3726           19190       4334        NA bfa27c96-613d-4233-b661-e9b5e3624659
#> 3727           16996       2536        NA 649b6405-54eb-4c23-8a30-84c2f2c3031a
#> 3728           21331       6474        NA 20b85f3c-8cec-40a3-8cfe-05a4fe43c23a
#> 3729           18836       4918        NA c9593a7a-1b6d-4112-aabe-2c47f53e6f13
#> 3730           20386       5617        NA b07a20bb-da2a-4440-a295-44352d350cd6
#> 3731            7606        307        NA c4b15bec-4adf-444a-bda1-5a07ade70abf
#> 3732           20426       5413        NA 80f0f41f-1b81-4552-bcc8-407d96add7c7
#> 3733           18908       4062        NA a87c5fa3-3e73-4c15-bce7-9c2c7152f58e
#> 3734           15625       1713        NA ca668ed5-05b3-41da-a3a4-6fa8982968f6
#> 3735           19245       4387        NA db3b481f-4edb-4392-87c6-6198ec2a12b8
#> 3736           14710       1271        NA ce74af98-fcfc-446d-83fe-e875d2e8dbd9
#> 3737           21191       6563        NA b24beb2f-de5d-4160-8b82-d7a5578b59af
#> 3738            3764        135        NA f6b48c8b-66ac-47a3-aafc-5addce6a6d82
#> 3739           17501       2990        NA 728a0b65-0f9d-4af3-944b-b12cd74243bb
#> 3740           18815       3980        NA 68969959-6910-49f3-b08a-05cabe34336e
#> 3741           14628       1253        NA ae103342-a4f0-4dbd-8c2a-63d9b159d9bd
#> 3742           14192       1151        NA b4e5d1c1-5915-4326-b737-d6c796da0d75
#> 3743           17450       2963        NA 325735c1-9fa1-48ee-bb8d-2ae45781f28d
#> 3744           13281        944        NA 947ba5a9-71de-4cc5-839a-884cfa49544b
#> 3745           19818       4954        NA 9d8effd8-9693-4b7a-b235-cf1d5124af64
#> 3746           21204       6403        NA 2df27f31-ffaf-4c2a-abed-0c34d4081f07
#> 3747           15148       1533        NA e6166069-6d2c-4121-9988-bc7b533e1558
#> 3748           21260       6343        NA 941662f4-da41-48cf-a663-cfbd011491bb
#> 3749           17971       3210        NA 92c02ef1-8400-4f5a-9420-6458755e14d4
#> 3750           20704       5808        NA d5008b72-1433-4239-b06c-14c5b33415b0
#> 3751           14404       1200        NA fa8cfe11-018a-4d4c-9588-c86cab0415c0
#> 3752           14053       1126        NA 0847010c-9a77-4f0b-9d63-c8b4b224d263
#> 3753           16864       2408        NA 609ab653-c3d4-4138-a2d9-c697a34174ad
#> 3754           14971       1411        NA d4dd3d0b-5023-415d-ad15-94f294c561b1
#> 3755           20113       5165        NA 4c54672f-f0f5-47ff-9d98-33137e3c0773
#> 3756           20507       5709        NA 90395591-32e3-42e8-962f-1f82f7cd6e75
#> 3757           20308       5265        NA 7bf77a00-7fd4-47c9-8806-4122e3846eae
#> 3758           11527        621        NA cc3640b0-7560-431f-84ab-599e9dc8cac6
#> 3759           20142       5228        NA b6f50b3b-0b8b-4318-be6d-b6677616a3c6
#> 3760           20595       5597        NA c9d1cbdb-96b7-4264-9469-042f42591346
#> 3761           15746       1747        NA 663b69e5-1fc2-404b-9a3f-f153c650ee89
#> 3762           21425       6606        NA 5b9c1f26-de51-4dbb-bf9b-6e8ea6eb6968
#> 3763           17929       3170        NA 19e253df-b121-43e4-a222-6df5fa8ad93f
#> 3764           20025       5118        NA ca457f6a-eb43-418a-97a7-4f4304dc5875
#> 3765           19497       4607        NA 6c5c5f15-33d2-4df5-af4e-e026755d2d65
#> 3766            3867        142        NA c32d8200-2b85-4638-8db3-9a52fb86b207
#> 3767           17974       3213        NA 648a6a76-32c3-45fa-b158-f77de2a9a95f
#> 3768           20209       5237        NA e187574f-622f-4477-a61a-edec81adff2f
#> 3769           16211       1957        NA ba2e7ff8-ed39-4fd1-85e3-d263a946a212
#> 3770           12083        691        NA 72fbe462-91c5-4c84-9640-e8ad7cad6447
#> 3771            4932        188        NA 6cb6226e-f08c-4192-95f1-69709ed686c6
#> 3772           20368       5286        NA b8a2180f-a864-4358-ae73-c1ce006a4a7a
#> 3773           17927       3168        NA 8f924766-111c-4cf2-a13b-2221e1013909
#> 3774           20004       5108        NA b88e39e6-3247-4f85-9909-c18d373eaeee
#> 3775           21646       6723        NA c1f2f510-3542-47be-96de-baa784b1f8d8
#> 3776           20468       5392        NA 678be3a8-1589-476f-b8ff-8189c451a301
#> 3777           17932       3171        NA f1ec6243-aaca-4237-85fb-9699bc90aa09
#> 3778           20305       5263        NA e1767e07-8ccd-479e-b356-b7024084518f
#> 3779           20222       5239        NA d45cb60d-b5d2-43e4-a202-97a43e7d2d27
#> 3780           17966       3205        NA 573f7acc-376b-4f37-8039-5c4c15c4a508
#> 3781            8415        350        NA e6c40f79-1bbd-4f62-9391-7f535f110c0d
#> 3782           14868       1349        NA 19d00799-4271-40ac-b5c4-4ea8b410a704
#> 3783           13910       1085        NA 01291a8d-d97c-4d88-b497-b5ad4b72f626
#> 3784           15982       1807        NA a6155092-1005-4b4c-8e37-21422ce93b42
#> 3785           20453       5403        NA 2b136f32-c023-427c-a663-29b921e5ce90
#> 3786            2428         91        NA 57ad34b3-f60d-4b2d-9e01-3cb5a9451c37
#> 3787           18525       3717        NA c67e52b1-0801-4a6c-802c-32cdc78bb7c9
#> 3788           21316       6371        NA 17c30647-39b9-46c2-9ba5-599f6007fc71
#> 3789           14008       1111        NA e3181493-6a2a-4e95-aa6f-3fc1ddeb7512
#> 3790           19068       4222        NA 5e5ea79d-7127-4e65-9cd5-b2a0a1fe910e
#> 3791            8723        389        NA 8263e101-aa33-435f-bf0f-388e1c4eeb59
#> 3792           18204       3440        NA a798a651-cd63-4007-9c30-0af0d4c5c1ee
#> 3793           21167       6237        NA 1c56ddce-b89d-43c3-a268-f19e625938aa
#> 3794           16836       2380        NA 5b64cbb5-0af6-4efc-a441-31c1f33d2eab
#> 3795           16345       2050        NA 7dac43ce-3a74-4033-b63f-bf9171a24a55
#> 3796           18349       3573        NA abeef681-4be7-4ff3-9076-c72ec5a1b2e4
#> 3797           21023       6031        NA e63d39ab-704f-40ad-9036-b8bad7ece8bb
#> 3798           19090       4244        NA b92d015f-0e5f-42e5-b85a-9c68ee6d8f1f
#> 3799           17102       2634        NA 7dc5af64-ae1d-4915-8af9-a4f5fb601710
#> 3800           21456       6446        NA 6d882a8b-c34f-4de1-89d2-8ee71628e039
#> 3801           17023       2560        NA 2a4de276-55bd-4756-9fa5-89fe30f5304f
#> 3802           13255        936        NA 65b991ed-ad0c-41d8-bbe0-95fc147c9441
#> 3803           17050       2585        NA 488c3707-26ee-4e1a-8742-494a06f77801
#> 3804           20588       5587        NA 86b05ebc-a22f-46a4-b521-67cc0b1fa206
#> 3805           20686       5785        NA e528d5ca-0033-42f7-b4ff-509fa84b3046
#> 3806           18225       3461        NA 2f260f4a-e42d-4456-a361-24e6e5a0de23
#> 3807           20697       5800        NA 40e3d913-a28a-4e51-8618-70ac40382dc6
#> 3808           21101       6203        NA 9559901c-5e13-4d23-bd11-d9eec372aabf
#> 3809           18435       3644        NA c7dc96df-0837-4681-bcc5-9663a3f1315f
#> 3810           13124        904        NA 478ae115-d220-424e-af45-56137f163d3a
#> 3811           20598       5624        NA 63a42b17-bb3e-4e68-970f-aa2fffee4d10
#> 3812           16609       2223        NA 4cb511e9-4d43-413e-998c-2778cc7786fe
#> 3813           15616       1709        NA 44ac9500-8fd8-4512-a5af-d63bc00aea7f
#> 3814           16699       2282        NA 0e166068-5f25-488e-9115-4d1146de184a
#> 3815           15224       1575        NA 1ce7bca8-68f0-47ba-9484-5baf57dd75e8
#> 3816           21221       6318        NA 2e194e2d-74ff-4a70-9bef-724779bcea15
#> 3817           19531       4636        NA 4c0b108c-e50b-4fee-a123-49c7e7c705d7
#> 3818            7969        323        NA aca06a5e-0e3a-4285-a025-199f8fa0376f
#> 3819           20166       5192        NA e8a4e5aa-f17b-49fe-8b8b-8efac0fc40f4
#> 3820           21367       6539        NA d2166e46-897f-46e6-9f86-fd98b9f3f3b8
#> 3821           18451       3657        NA 6a65641c-5ee2-44e3-8a75-7f98887b40ae
#> 3822           14352       1185        NA b4ce3e07-7848-4da2-a33e-4f04ce540ba5
#> 3823           21041       6021        NA 86d0d3b3-5400-4fc8-943e-cb0a92d69e77
#> 3824           20561       5463        NA 9ceb92c0-25d4-4e05-848f-1ddce1774410
#> 3825           17101       2633        NA b1e1f2ed-e978-4fe2-8a4f-81c25e722bdb
#> 3826           16307       2024        NA 65f91b8b-6794-4273-bf42-4d00b5973ddd
#> 3827           18217       3453        NA 1bdc067c-6376-4c35-b9f8-cebbb1ad595f
#> 3828           16909       2452        NA bb78a66a-a8ec-4294-8858-c7e5a1d15106
#> 3829           20521       5398        NA 3dc42923-568b-4e5e-8c97-cb10d8527f7a
#> 3830           18488       3688        NA ba36a4bb-5cc4-4113-9b5d-32bab02ef966
#> 3831           12386        745        NA 82bce0be-9a87-4b6d-a85b-623bf8d1674e
#> 3832           20016       5115        NA f9e352ee-a6f6-4b92-8683-1867739d6d94
#> 3833           15207       1564        NA 06787c1d-f02b-4217-9152-c269e826928a
#> 3834           16886       2430        NA 9173225c-4e88-4c87-ad78-41aa0d00a1be
#> 3835           16127       1901        NA 40cd928f-f228-4ffd-8179-b27a12e14a44
#> 3836           19700       4791        NA 5f2136e8-d439-4fd7-b023-b03fe3fdb5a1
#> 3837           21391       6592        NA 5bbe722c-3a86-4ef4-a730-ff83c2676d69
#> 3838           16099       1880        NA 6eba2319-7d5b-44da-bc48-280d3f9e423f
#> 3839           19391       4519        NA 414b95e9-e7e0-4ede-aef6-b0825ddda611
#> 3840           20706       5809        NA 7dbed172-8808-4ddb-88f9-7b46414bbfc6
#> 3841           21571       6664        NA 35d4b581-a090-4e15-be33-140485a8fb1d
#> 3842            2699        103        NA a4970b66-6eea-4d9a-9f96-15b528161b57
#> 3843           20327       5274        NA 7fbf8067-075e-4db7-8090-6ead0e5b8910
#> 3844           15020       1451        NA f7841baa-9284-4c03-b698-442570651c6c
#> 3845           12239        717        NA 72f5a27a-544f-468a-b10b-89a1fc5d0e9f
#> 3846           18299       3532        NA 81050032-4268-4906-874f-3463a6b57a3d
#> 3847           20700       5801        NA 88c294db-5c85-48dd-9b0a-7c31a9eae32f
#> 3848           14533       1232        NA 63fd9abe-4bdf-4611-9497-0c67e030ce01
#> 3849           20552       5618        NA 9a86b7ee-277d-46d9-940a-51dc89d3721c
#> 3850           21622       6705        NA ab38817c-07a5-4862-a338-1baea17c0248
#> 3851           21627       6710        NA 64602329-20b8-4690-a924-544a22bd09ae
#> 3852           16112       1892        NA 59fc3367-5514-4616-a93c-06e4365b2293
#> 3853           19529       4635        NA b9b88174-d790-4ff2-85cd-fdbfa03405f6
#> 3854           19078       4232        NA cee77408-f330-4a16-bb6f-dead52f9291f
#> 3855           13158        913        NA bcce08ec-736e-40c1-bb8d-ebe2d489f331
#> 3856           20091       5144        NA 9ac049a2-9286-4898-881a-f349bbffd223
#> 3857           19278       4418        NA 1b577eee-a177-4b56-833b-4e55e0632585
#> 3858           18235       3471        NA cd0f8e25-7df1-406c-bfc4-058a435aec3b
#> 3859            5451        218        NA 96a1fc85-5af7-49fa-a5ac-ddc06c205ced
#> 3860           17066       2598        NA ced6a2eb-a067-4865-b9e4-f6b0a925e55f
#> 3861           19024       4178        NA d9aecfba-a416-4d99-b26a-dfe78f876b73
#> 3862           18680       3859        NA c79a901b-cced-42ee-be24-dc0059c24a74
#> 3863            6828        272        NA e5e0c7f9-c4e3-4de4-8052-d9c083393a99
#> 3864           15010       1441        NA 051ac116-6d32-4e77-91da-e0ce27d202da
#> 3865           16934       2477        NA f413d6fb-5105-4110-b915-d92840a3e656
#> 3866           20661       5752        NA 80be80e9-8b41-49ac-919e-6a184a6f8f7c
#> 3867           16898       2441        NA 65e4d6cc-988b-42f6-9eef-4fc70eb8f564
#> 3868           16309       2026        NA 307141c3-baf9-486c-896c-5bb825f4d082
#> 3869           17016       2556        NA 03e668c4-0249-4838-b633-f2f10a6759d0
#> 3870           20294       5259        NA fa890b86-8204-40b0-ab8a-301a35d15ad6
#> 3871           19353       4485        NA 7e199884-1db9-4684-b308-a20ca28c646c
#> 3872            6198        246        NA 15b156b5-30cc-4070-b60a-1c09e62c5a9b
#> 3873           18227       3463        NA 38a9afff-33b0-4c29-a66e-8ba4d22c0d29
#> 3874           20136       5201        NA 878d42bc-8f58-41b2-9179-46a0c834e219
#> 3875           16273       2001        NA 4402b8d5-d6bf-43d0-9198-651506abba76
#> 3876            2262         83        NA c1ffd69d-92d7-4e12-8fd3-db9977d6dcf4
#> 3877           12800        818        NA 4a38cda2-e92f-47f8-b324-0c34e09d83f2
#> 3878           16867       2411        NA 6512b90e-d6b3-4719-bb0c-a75f97673f37
#> 3879           16142       1912        NA 46d5a560-8260-44d7-a8db-8adb6fd8f2e9
#> 3880           17197       2729        NA af944a80-eba7-479d-b3b1-73279abdc67a
#> 3881           20562       5464        NA b928bd74-ad93-4251-9c96-300bfa04857e
#> 3882           21283       6506        NA bbd96f73-7fab-4047-bde6-b66b0228a06a
#> 3883           20078       5138        NA 77002a9a-fa1d-4040-b7d5-976159aae433
#> 3884           12780        814        NA 600ae879-d95a-4ac4-ae4e-72c05a05f1ad
#> 3885           16189       1944        NA cbf1cdba-d165-45f7-a695-5e0971dd9042
#> 3886           15966       1794        NA 481da4a3-fb29-4480-9db4-9cffdf33f510
#> 3887           16856       2400        NA 2641d36d-7c61-445f-980f-313671f2e8ce
#> 3888           20192       5195        NA ac6aeee0-d291-481a-a914-947061b639b2
#> 3889           19412       4533        NA d53755df-ba10-4546-bfc8-b728eaf192e6
#> 3890           20624       5700        NA 845d6938-ca66-42a3-8913-1772bb8de446
#> 3891           14872       1353        NA d08da2a3-8296-4038-bb46-ab1feca4bbd4
#> 3892           20801       5976        NA 677b17b7-a8c2-4f2b-ac73-fe086de32103
#> 3893           19797       4949        NA 1c42cbe4-115b-4f28-ac50-e9bc977371b2
#> 3894           14549       1236        NA 87f35e44-8c37-4381-97dd-e3df2a83beeb
#> 3895           18256       3491        NA 5274fac8-fa34-46fa-ac4d-7b58bb84999f
#> 3896           20309       5266        NA 65def267-986f-4d5d-96fb-42b9209833b1
#> 3897           21520       6548        NA b248e75c-d959-4fc4-8df5-87030f462951
#> 3898           14046       1123        NA 6e024d51-d5fb-40cc-8a07-495f81347ad1
#> 3899           19257       4398        NA 5ec329e9-0752-487d-9ebd-40c6a03c41e5
#> 3900           18339       3564        NA 538d0379-bf54-4df5-9564-ae33fcd551e1
#> 3901           18153       3392        NA d57233b2-3d11-4405-b490-e33ec698f945
#> 3902           21491       6491        NA 1e85069d-9402-4bdb-8aa9-79e30713df43
#> 3903           11256        571        NA 55200cbf-e475-44fa-a875-a51998c20457
#> 3904           12296        730        NA f5d20030-d934-45e3-8282-e34c6c83ad84
#> 3905           21286       6448        NA ebbd3227-f6e1-4311-ad57-a76c361888ff
#> 3906           17067       2599        NA 512e3d02-9d44-4ede-bf6b-660cffbf8a31
#> 3907           17199       2731        NA d6e545a7-281d-4a0d-8988-2a4340323529
#> 3908           13299        949        NA 91a95850-9514-49d5-b2b0-f8e21156daa0
#> 3909           19428       4548        NA 856182d1-221e-48ce-bce4-58c7843549fa
#> 3910           18885       4042        NA bfadb11e-2e89-48f6-a7b2-896be3106dc8
#> 3911           19085       4239        NA 294b247f-c8b9-4fe7-9fce-bb4011fff02f
#> 3912           20741       5918        NA f3c3c5ba-2788-4708-bbc5-4ea525d06a81
#> 3913           21293       6385        NA 802d7f08-9fbf-41bc-aa67-2bc6c8a09963
#> 3914           15256       1596        NA cf8e8522-6220-4612-a8a1-72c496dac536
#> 3915           19111       4265        NA 385eccc0-c138-4cda-8c50-84b996d21b8f
#> 3916           20690       5791        NA 8b08fa71-adf7-400c-84d7-f247e57ea93f
#> 3917           19186       4806        NA bab97866-4834-4b76-a712-fb7069a5f803
#> 3918           12774        811        NA 170b4c5f-a345-4899-8d81-e8982b0f3d65
#> 3919           20504       5407        NA 9e0a37e5-9814-4b43-a79d-0a51c97ec5c3
#> 3920           19516       4623        NA 5dac4c6d-332a-48fb-b4ab-f90240800351
#> 3921           21166       6236        NA 211e459d-99a9-4ae6-bbc9-ec2183046d6e
#> 3922           21317       6372        NA 91671654-f27f-498a-b3ed-7bf006ee3f2b
#> 3923           15045       1463        NA a0e27c0c-0b7e-4da4-b228-1a366b09596e
#> 3924           20534       5462        NA 5ab29759-c330-4147-a2cf-be04bbac66aa
#> 3925           20804       6115        NA 14e3c57f-0eb2-49b5-9e94-10a4a54990cf
#> 3926           16989       2529        NA 36007e6e-ca6b-42ee-b9f8-79a9a964f5bc
#> 3927           20263       5252        NA 29b6ebb9-1d22-464b-b7a1-e132057e0f28
#> 3928           19229       4372        NA 017fcaa2-13d3-4159-8fd3-13c71ff7707e
#> 3929           20472       5395        NA 3d36bdab-2521-44da-8ede-30226510c2b0
#> 3930           10949        507        NA 64d9a11b-2d05-4173-ac72-4f9e63fb4aa6
#> 3931           12317        735        NA b66acf1d-a43a-46af-bc51-7595c5add61b
#> 3932            8066        326        NA 97132012-53f4-44c8-96da-88f0e8a819e8
#> 3933           20340       5278        NA b12a30ab-c36e-4a60-b1de-1ab9cff34524
#> 3934           19915       4997        NA b120cb2d-04b8-4dd3-809e-92c9b4c29b0c
#> 3935           15138       1527        NA 030f508b-be11-478e-bf68-d21e70fcff7b
#> 3936           20549       5558        NA 3f58b3d7-535e-4cd3-bd1b-603f9c36bc98
#> 3937           17969       3208        NA 997525cb-5d0d-4f3b-bd56-7488b62627ec
#> 3938           20501       5550        NA 60946edc-733d-4da3-93af-b63d269536ae
#> 3939           14385       1195        NA 5c2a0c83-e18a-43dd-bd65-704771157e42
#> 3940           20236       5507        NA 6a83bc28-1b9c-41b7-9860-aa1640929ec3
#> 3941           21327       6351        NA ed58a10c-d9c1-4ec5-8b25-0ba65aade9f4
#> 3942           21002       6087        NA e6357477-ecbf-4489-a0cd-49a6a4feb807
#> 3943           20475       5406        NA 20d25783-a394-4771-96a1-97dd818053ba
#> 3944           20573       5527        NA cc5a9d4b-7838-470d-8c36-182e97ff161d
#> 3945           16502       2156        NA 2a027210-21b3-4723-868d-df995e5d7441
#> 3946           21524       6547        NA 472c659e-621d-4933-b539-1ad9fedc21ac
#> 3947           16957       2498        NA 04917392-c076-4f86-b3f2-c20350b0efb2
#> 3948           18191       3427        NA cbe0aa91-829a-4ecb-ba86-01d90135ac05
#> 3949           15516       1686        NA 7690ab6a-2ae0-4449-abd5-74ec54403f2e
#> 3950           16473       2135        NA 977e4e40-c596-43c3-a5a9-2141f6590b89
#> 3951           17673       3023        NA 4a859afc-0cdf-4d0f-b91d-da30e88cf58a
#> 3952           19324       4781        NA ec7bdd76-8299-484b-a84b-057474f17af6
#> 3953           20535       5467        NA 64cd627b-77b5-4502-8612-3fc3fa724426
#> 3954           13468        991        NA d58339ad-6ec1-41cd-98d7-964ac47d7225
#> 3955           21453       6622        NA 6077550f-2d44-41b4-956a-44fcb0482bb5
#> 3956           17252       2784        NA 511ec990-f0f6-4432-a10f-2dcbc8efd485
#> 3957           17091       2623        NA e73ef17d-9ef4-4469-bcb2-0841c3c4d27f
#> 3958           13789       1047        NA 22b30e9f-e24b-4fa1-a038-77e8f6d9f2f9
#> 3959           17984       3223        NA 6aa53b87-fcbf-4edb-b61a-460580f93e5d
#> 3960           20195       5198        NA 7f4b8e34-6a2e-4b60-9df5-732e5ef838be
#> 3961           21150       6228        NA 7fb0ab39-da56-4f98-bf9a-90661a82dffe
#> 3962           19112       4266        NA 2bbbcaf8-553d-4250-b0e7-24cd90b5604b
#> 3963           11271        575        NA ad9a6262-7df3-41a8-9753-b89866f5cd0e
#> 3964           20087       5160        NA bfaf12ae-0199-4956-9ae7-d8a1dbfdfcd2
#> 3965           15179       1542        NA e4039abe-35b3-4b78-9752-e714ef01cecd
#> 3966           18335       3562        NA 5405b613-39ef-4c12-977c-e199bf112e43
#> 3967           11589        636        NA c5c25485-c0dc-4b5c-abe1-312fdd368637
#> 3968           21326       6350        NA e33cf2fe-4f46-4190-8344-b8c53be1e482
#> 3969           20872       5958        NA 352d09d1-53af-4910-9f1a-5d66ad954d83
#> 3970           18570       3758        NA 9f1e4e06-a9b9-4d69-be4c-91e9841dbc44
#> 3971           17135       2667        NA 20a9d2d4-9abc-4156-9bab-c8471efb1139
#> 3972           19401       4524        NA 0b873737-cd0a-4af5-8d88-c3860f93b29e
#> 3973           18048       3287        NA 27a541bc-47b6-4185-aa3d-6cb194666dbe
#> 3974           12668        783        NA 422f9f66-97d7-4bae-9840-24b3a24655e8
#> 3975           16005       1818        NA 19403487-1d34-434b-8fc2-a8852167af76
#> 3976           17872       3118        NA 4cdcea81-769e-48a1-ad97-234e5ff649ea
#> 3977           20675       5768        NA 4d4a1164-3864-40a9-98e1-423af86b7c92
#> 3978           19028       4182        NA 5455b3f0-9ee0-41cb-9409-13303f5e6c8b
#> 3979           19505       5585        NA 2e51f768-6b00-4fcb-a4d2-7c909121b2c0
#> 3980           21229       6324        NA be382b2e-a4ef-4c83-a054-7bc75b0e0d99
#> 3981           20112       5630        NA 4659f9a0-22c4-4004-8d59-a5727bbafa25
#> 3982           15242       1590        NA c615cf52-bc61-43ed-bb76-39695ca019c0
#> 3983           21583       6684        NA de6f20c5-7028-4ecc-82e8-6516ab1c470a
#> 3984           17164       2696        NA 70f64838-b12f-4201-859f-382bfedbf73d
#> 3985           21202       6267        NA e50ea337-3b0b-4bcd-8995-6e06689aa8cd
#> 3986           14972       1412        NA ecb0a97f-f70b-4ea7-a741-e1d4e764edfb
#> 3987           11386        597        NA 409377a4-293c-4eee-a9d1-02a46449a540
#> 3988           17080       2612        NA 72755454-8cf9-446f-80d5-d97e4fc29fa3
#> 3989           19554       4656        NA 5cd06df7-8ae9-4b20-b710-f07e39930cfa
#> 3990           19220       4363        NA 13d56de6-ed55-4323-b79d-e0d49d936723
#> 3991           20481       5494        NA cc5b0099-b37f-438c-b0e2-5ffe0d7b6ad8
#> 3992           19150       4302        NA 450fc1ea-0709-4bf0-bb32-273e2ef70f50
#> 3993           17331       2863        NA 47ff835d-2b33-43a7-81e1-26590f6b271a
#> 3994           19808       4906        NA d23b7135-c37d-4a5d-b034-2400b3666fa0
#> 3995           19122       4276        NA 24a25ff7-0690-4769-9dc9-8265ecdcf1f2
#> 3996           21223       6319        NA c5915cd7-c21d-4441-8960-c394f680dd17
#> 3997           14824       1326        NA 4b6a70aa-3123-4ac4-939d-00f81fde0e33
#> 3998           21103       6206        NA 011b1396-4a13-4bdf-a48d-978688a9eb35
#> 3999           11598        639        NA 1f49b95a-97cb-426e-8bd0-aeeb4b5b0ad1
#>  [ reached 'max' / getOption("max.print") -- omitted 625 rows ]
#> 
#> [[2]]
#>      season team position depth_chart_position jersey_number          status
#> 1      2021  ARI       CB                  RCB             7          Active
#> 2      2021  ARI       CB                  LCB            21          Active
#> 3      2021  ARI       CB                  RCB            33          Active
#> 4      2021  ARI       CB                 <NA>            39          Active
#> 5      2021  ARI       CB                 <NA>            24          Active
#> 6      2021  ARI       CB                 <NA>            27          Active
#> 7      2021  ARI       CB                  LCB            20          Active
#> 8      2021  ARI       CB                  LCB            23        Inactive
#> 9      2021  ARI       DB                 <NA>            38        Inactive
#> 10     2021  ARI       DB                  RCB            37          Active
#> 11     2021  ARI       DB                   SS            34          Active
#> 12     2021  ARI       DB                   FS            28          Active
#> 13     2021  ARI       DB                   SS            32          Active
#> 14     2021  ARI       DB                   SS            22          Active
#> 15     2021  ARI       DB                   FS            31          Active
#> 16     2021  ARI       DB                   FS             3          Active
#> 17     2021  ARI       DE                   DT            94          Active
#> 18     2021  ARI       DE                  RDE            97          Active
#> 19     2021  ARI       DE                  RDE            99          Active
#> 20     2021  ARI       DE                  RDE            96          Active
#> 21     2021  ARI       DE                 <NA>            93          Active
#> 22     2021  ARI       DE                  RDE            91          Active
#> 23     2021  ARI       DE                 <NA>            96          Active
#> 24     2021  ARI       DE                 <NA>            56          Active
#> 25     2021  ARI       DT                   NT            98          Active
#> 26     2021  ARI       DT                   DT            95          Active
#> 27     2021  ARI       DT                   NT            90          Active
#> 28     2021  ARI       DT                 <NA>            69        Inactive
#> 29     2021  ARI        K                   PK             5          Active
#> 30     2021  ARI       LB                 LOLB            45          Active
#> 31     2021  ARI       LB                 ROLB            42          Active
#> 32     2021  ARI       LB                 LILB            47          Active
#> 33     2021  ARI       LB                 ROLB            52          Active
#> 34     2021  ARI       LB                 LOLB            49        Inactive
#> 35     2021  ARI       LB                 RILB            58          Active
#> 36     2021  ARI       LB                 <NA>            43          Active
#> 37     2021  ARI       LB                 LILB            51          Active
#> 38     2021  ARI       LB                 ROLB            44          Active
#> 39     2021  ARI       LB                 LOLB            55          Active
#> 40     2021  ARI       LB                 RILB            25          Active
#> 41     2021  ARI       LB                 RILB            59          Active
#> 42     2021  ARI       LB                 LILB             9          Active
#> 43     2021  ARI       LS                 <NA>            46          Active
#> 44     2021  ARI       OL                   RT            79          Active
#> 45     2021  ARI       OL                    C            53          Active
#> 46     2021  ARI       OL                    C            61          Active
#> 47     2021  ARI       OL                   RT            68          Active
#> 48     2021  ARI       OL                   LT            66          Active
#> 49     2021  ARI       OL                   RG            71        Inactive
#> 50     2021  ARI       OL                   LG            64          Active
#> 51     2021  ARI       OL                   LG            67          Active
#> 52     2021  ARI       OL                   LT            60          Active
#> 53     2021  ARI       OL                   RG            73          Active
#> 54     2021  ARI       OL                   LG            63          Active
#> 55     2021  ARI       OL                   LT            74          Active
#> 56     2021  ARI        P                 <NA>             0          Active
#> 57     2021  ARI        P                 <NA>            14          Active
#> 58     2021  ARI       QB                   QB            12          Active
#> 59     2021  ARI       QB                   QB             1          Active
#> 60     2021  ARI       QB                   QB            19          Active
#> 61     2021  ARI       RB                 <NA>             0          Active
#> 62     2021  ARI       RB                   RB             2          Active
#> 63     2021  ARI       RB                   RB            26          Active
#> 64     2021  ARI       RB                   RB             6          Active
#> 65     2021  ARI       RB                 <NA>            30          Active
#> 66     2021  ARI       RB                 <NA>            29          Active
#> 67     2021  ARI        T                   RT            72          Active
#> 68     2021  ARI       TE                  LTE            86          Active
#> 69     2021  ARI       TE                 <NA>             0          Active
#> 70     2021  ARI       TE                  LTE            81          Active
#> 71     2021  ARI       TE                  RTE            41          Active
#> 72     2021  ARI       TE                 <NA>            80          Active
#> 73     2021  ARI       TE                  LTE            87        Inactive
#> 74     2021  ARI       TE                 <NA>            36          Active
#> 75     2021  ARI       TE                 <NA>            84          Active
#> 76     2021  ARI       WR                  LWR            18          Active
#> 77     2021  ARI       WR                  LWR            83          Active
#> 78     2021  ARI       WR                  RWR            85          Active
#> 79     2021  ARI       WR                  RWR            84        Inactive
#> 80     2021  ARI       WR                  RWR            82          Active
#> 81     2021  ARI       WR                  SWR             4          Active
#> 82     2021  ARI       WR                  LWR            17          Active
#> 83     2021  ARI       WR                  RWR            10        Inactive
#> 84     2021  ARI       WR                  SWR            13          Active
#> 85     2021  ARI     <NA>                 <NA>             0          Active
#> 86     2021  ATL        C                   LG            68          Active
#> 87     2021  ATL       CB                  LCB            34          Active
#> 88     2021  ATL       CB                  RCB            22          Active
#> 89     2021  ATL       CB                  RCB            35          Active
#> 90     2021  ATL       CB                 <NA>            24          Active
#> 91     2021  ATL       CB                  LCB            24          Active
#> 92     2021  ATL       CB                  RCB            26        Inactive
#> 93     2021  ATL       CB                 <NA>            36          Active
#> 94     2021  ATL       DB                 <NA>            38          Active
#> 95     2021  ATL       DB                   SS            21          Active
#> 96     2021  ATL       DB                   FS            36          Active
#> 97     2021  ATL       DB                  LCB            20          Active
#> 98     2021  ATL       DB                   FS            23        Inactive
#> 99     2021  ATL       DB                 <NA>            29          Active
#> 100    2021  ATL       DB                   SS            27          Active
#> 101    2021  ATL       DB                 <NA>            37          Active
#> 102    2021  ATL       DB                   SS            33          Active
#> 103    2021  ATL       DE                   DL            79          Active
#> 104    2021  ATL       DE                   DL            99          Active
#> 105    2021  ATL       DE                   DL            50          Active
#> 106    2021  ATL       DE                   DL            90          Active
#> 107    2021  ATL       DE                 ROLB            49          Active
#> 108    2021  ATL       DT                   DL            94          Active
#> 109    2021  ATL       DT                   DL            97          Active
#> 110    2021  ATL       DT                   DL            98          Active
#> 111    2021  ATL       DT                   DL            96          Active
#> 112    2021  ATL       DT                   DL            95          Active
#> 113    2021  ATL       FB                 <NA>            89          Active
#> 114    2021  ATL       FB                TE/FB            40          Active
#> 115    2021  ATL        G                   RG            63          Active
#> 116    2021  ATL        K                   PK             7          Active
#> 117    2021  ATL       LB                   LB             3          Active
#> 118    2021  ATL       LB                 LOLB            55          Active
#> 119    2021  ATL       LB                   LB            48          Active
#> 120    2021  ATL       LB                 LOLB             6          Active
#> 121    2021  ATL       LB                   LB            45          Active
#> 122    2021  ATL       LB                 ROLB            93          Active
#> 123    2021  ATL       LB                 <NA>            59          Active
#> 124    2021  ATL       LB                   LB            53          Active
#> 125    2021  ATL       LB                 <NA>             0          Active
#> 126    2021  ATL       LB                 ROLB            92          Active
#> 127    2021  ATL       LB                 <NA>            56          Active
#> 128    2021  ATL       LB                 LOLB            52        Inactive
#> 129    2021  ATL       LB                   LB            54          Active
#> 130    2021  ATL       LB                 LOLB            51          Active
#> 131    2021  ATL       LS                 <NA>            47          Active
#> 132    2021  ATL       OL                   RG            67          Active
#> 133    2021  ATL       OL                   LG             0          Active
#> 134    2021  ATL       OL                   RT            69          Active
#> 135    2021  ATL       OL                   LG            77          Active
#> 136    2021  ATL       OL                 <NA>            72          Active
#> 137    2021  ATL       OL                   RG            64          Active
#> 138    2021  ATL       OL                   RT            66          Active
#> 139    2021  ATL       OL                    C            61          Active
#> 140    2021  ATL       OT                   LT            71          Active
#> 141    2021  ATL       OT                 <NA>            73          Active
#> 142    2021  ATL        P                 <NA>            37          Active
#> 143    2021  ATL        P                 <NA>            19          Active
#> 144    2021  ATL       QB                   QB             2          Active
#> 145    2021  ATL       QB                 <NA>            12          Active
#> 146    2021  ATL       QB                 <NA>            15          Active
#> 147    2021  ATL       QB                   QB             5        Inactive
#> 148    2021  ATL       QB                   QB            16          Active
#> 149    2021  ATL       RB                 <NA>            42          Active
#> 150    2021  ATL       RB                   RB            28          Active
#> 151    2021  ATL       RB                   RB            84          Active
#> 152    2021  ATL       RB                   RB            30          Active
#> 153    2021  ATL       SS                   FS            32          Active
#> 154    2021  ATL        T                   LT            70          Active
#> 155    2021  ATL        T                   RT            76          Active
#> 156    2021  ATL       TE                   TE             8          Active
#> 157    2021  ATL       TE                 <NA>             0          Active
#> 158    2021  ATL       TE                   TE            46          Active
#> 159    2021  ATL       TE                 <NA>            86          Active
#> 160    2021  ATL       TE                 <NA>             0          Active
#> 161    2021  ATL       TE                TE/FB            81          Active
#> 162    2021  ATL       TE                   TE            87        Inactive
#> 163    2021  ATL       TE                   TE            85          Active
#> 164    2021  ATL       WR                  LWR            18          Active
#> 165    2021  ATL       WR                  RWR            17          Active
#> 166    2021  ATL       WR                  LWR             4          Active
#> 167    2021  ATL       WR                 <NA>            83          Active
#> 168    2021  ATL       WR                 <NA>            89          Active
#> 169    2021  ATL       WR                  RWR            88          Active
#> 170    2021  ATL       WR                  LWR            13          Active
#> 171    2021  ATL       WR                  RWR            14          Active
#> 172    2021  ATL       WR                 <NA>            82          Active
#> 173    2021  BAL        C                 <NA>            53          Active
#> 174    2021  BAL        C                    C            63          Active
#> 175    2021  BAL       CB                  LCB            24        Inactive
#> 176    2021  BAL       CB                 <NA>            17          Active
#> 177    2021  BAL       CB                   NB            25          Active
#> 178    2021  BAL       CB                  RCB            22          Active
#> 179    2021  BAL       CB                 <NA>            29          Active
#> 180    2021  BAL       CB                   NB            31        Inactive
#> 181    2021  BAL       CB                 <NA>            18          Active
#> 182    2021  BAL       CB                  RCB            37        Inactive
#> 183    2021  BAL       CB                  RCB            44        Inactive
#> 184    2021  BAL       CB                   NB            38          Active
#> 185    2021  BAL       CB                  LCB            23          Active
#> 186    2021  BAL       CB                  LCB            30          Active
#> 187    2021  BAL       DB                   SS            31          Active
#> 188    2021  BAL       DB                   FS            29          Active
#> 189    2021  BAL       DB                   FS            21          Active
#> 190    2021  BAL       DB                 <NA>            39          Active
#> 191    2021  BAL       DB                 <NA>            48          Active
#> 192    2021  BAL       DB                   FS            41          Active
#> 193    2021  BAL       DB                   FS            32        Inactive
#> 194    2021  BAL       DB                   SS            36          Active
#> 195    2021  BAL       DB                   SS            26          Active
#> 196    2021  BAL       DE                   DT            93          Active
#> 197    2021  BAL       DE                   DE            95        Inactive
#> 198    2021  BAL       DT                   DE            92          Active
#> 199    2021  BAL       DT                   DT            96          Active
#> 200    2021  BAL       DT                   NT            94          Active
#> 201    2021  BAL       DT                   DT            69          Active
#> 202    2021  BAL       DT                   DE            91        Inactive
#> 203    2021  BAL       DT                   NT            98          Active
#> 204    2021  BAL       DT                   NT            71          Active
#> 205    2021  BAL       FB                   FB            42        Inactive
#> 206    2021  BAL       FB                   FB             0          Active
#> 207    2021  BAL       FS                 <NA>            40          Active
#> 208    2021  BAL        G                   LG            72          Active
#> 209    2021  BAL        G                   LG            74        Inactive
#> 210    2021  BAL        G                   RG            66          Active
#> 211    2021  BAL        K                   PK             9          Active
#> 212    2021  BAL       LB                 RUSH            99          Active
#> 213    2021  BAL       LB                  SAM            59        Inactive
#> 214    2021  BAL       LB                 <NA>            58          Active
#> 215    2021  BAL       LB                  WLB            57          Active
#> 216    2021  BAL       LB                 RUSH            90          Active
#> 217    2021  BAL       LB                  WLB             6          Active
#> 218    2021  BAL       LB                 RUSH            50          Active
#> 219    2021  BAL       LB                  MLB            56          Active
#> 220    2021  BAL       LB                  SAM            45          Active
#> 221    2021  BAL       LB                  SAM            54          Active
#> 222    2021  BAL       LB                  MLB            40          Active
#> 223    2021  BAL       LB                  WLB             3        Inactive
#> 224    2021  BAL       LB                  MLB            49          Active
#> 225    2021  BAL       LS                 <NA>            46          Active
#> 226    2021  BAL       OG                   RG            70          Active
#> 227    2021  BAL       OL                   RT            65          Active
#> 228    2021  BAL       OL                    C            67          Active
#> 229    2021  BAL       OL                    C            77          Active
#> 230    2021  BAL       OT                   RT            78          Active
#> 231    2021  BAL       OT                 <NA>            76        Inactive
#> 232    2021  BAL        P                 <NA>             4          Active
#> 233    2021  BAL       QB                 <NA>             0          Active
#> 234    2021  BAL       QB                   QB            15          Active
#> 235    2021  BAL       QB                   QB             2          Active
#> 236    2021  BAL       QB                   QB             8          Active
#> 237    2021  BAL       QB                   QB             8          Active
#> 238    2021  BAL       RB                 <NA>            33          Active
#> 239    2021  BAL       RB                 <NA>            37          Active
#> 240    2021  BAL       RB                 <NA>            34          Active
#> 241    2021  BAL       RB                   RB            35        Inactive
#> 242    2021  BAL       RB                   RB            27        Inactive
#> 243    2021  BAL       RB                   RB            43        Inactive
#> 244    2021  BAL       RB                 <NA>            47          Active
#> 245    2021  BAL       RB                 <NA>            28          Active
#> 246    2021  BAL        T                   LT            79        Inactive
#> 247    2021  BAL        T                   LT            61          Active
#> 248    2021  BAL        T                   RT            62          Active
#> 249    2021  BAL       TE                   TE            89          Active
#> 250    2021  BAL       TE                 <NA>            83          Active
#> 251    2021  BAL       TE                 <NA>            84          Active
#> 252    2021  BAL       TE                   TE            85          Active
#> 253    2021  BAL       TE                   TE            86          Active
#> 254    2021  BAL       TE                 <NA>             0          Active
#> 255    2021  BAL       WR                 <NA>            80          Active
#> 256    2021  BAL       WR                  LWR            14          Active
#> 257    2021  BAL       WR                  LWR            11          Active
#> 258    2021  BAL       WR                  RWR             5          Active
#> 259    2021  BAL       WR                 <NA>            10          Active
#> 260    2021  BAL       WR                  RWR            16          Active
#> 261    2021  BAL       WR                 <NA>            81          Active
#> 262    2021  BAL       WR                  LWR            12          Active
#> 263    2021  BAL       WR                  RWR            13          Active
#> 264    2021  BUF        C                    C            60          Active
#> 265    2021  BUF       CB                  RCB            27        Inactive
#> 266    2021  BUF       CB                 <NA>            29          Active
#> 267    2021  BUF       CB                  RCB            30          Active
#> 268    2021  BUF       CB                 <NA>            38          Active
#> 269    2021  BUF       CB                  LCB            47          Active
#> 270    2021  BUF       CB                  LCB            39          Active
#> 271    2021  BUF       CB                   NB            33          Active
#> 272    2021  BUF       CB                  RCB            37          Active
#> 273    2021  BUF       CB                   NB            24          Active
#> 274    2021  BUF       DB                   SS            31          Active
#> 275    2021  BUF       DB                   FS            46          Active
#> 276    2021  BUF       DB                   FS            23          Active
#> 277    2021  BUF       DB                   SS            21          Active
#> 278    2021  BUF       DB                   SS            36          Active
#> 279    2021  BUF       DE                  RDE            96          Active
#> 280    2021  BUF       DE                  RDE            55          Active
#> 281    2021  BUF       DE                  LDE            50          Active
#> 282    2021  BUF       DE                  LDE            57          Active
#> 283    2021  BUF       DE                 <NA>            56          Active
#> 284    2021  BUF       DE                  RDE            97          Active
#> 285    2021  BUF       DE                 <NA>            51        Inactive
#> 286    2021  BUF       DE                  LDE            93          Active
#> 287    2021  BUF       DT                  RDT            98          Active
#> 288    2021  BUF       DT                  LDT             0          Active
#> 289    2021  BUF       DT                  RDT            99          Active
#> 290    2021  BUF       DT                 <NA>            90          Active
#> 291    2021  BUF       DT                  LDT            94          Active
#> 292    2021  BUF       DT                  RDT            61        Inactive
#> 293    2021  BUF       DT                  LDT            91          Active
#> 294    2021  BUF       FB                   FB            41          Active
#> 295    2021  BUF        K                   PK             2          Active
#> 296    2021  BUF       LB                  MLB            49          Active
#> 297    2021  BUF       LB                  WLB             9          Active
#> 298    2021  BUF       LB                 <NA>            42          Active
#> 299    2021  BUF       LB                  MLB            53          Active
#> 300    2021  BUF       LB                  WLB            54          Active
#> 301    2021  BUF       LB                  MLB            44          Active
#> 302    2021  BUF       LB                  WLB            58          Active
#> 303    2021  BUF       LS                 <NA>            69          Active
#> 304    2021  BUF       OG                   LG            76          Active
#> 305    2021  BUF       OG                   LG            65        Inactive
#> 306    2021  BUF       OL                   RG            74          Active
#> 307    2021  BUF       OL                 <NA>            66          Active
#> 308    2021  BUF       OL                   RG            75          Active
#> 309    2021  BUF       OL                    C            71          Active
#> 310    2021  BUF       OL                 <NA>            67          Active
#> 311    2021  BUF       OT                   LT            73          Active
#> 312    2021  BUF       OT                   RT            79          Active
#> 313    2021  BUF       OT                   RT            72          Active
#> 314    2021  BUF        P                 <NA>             3          Active
#> 315    2021  BUF       QB                   QB            10          Active
#> 316    2021  BUF       QB                   QB            17          Active
#> 317    2021  BUF       RB                   RB            20          Active
#> 318    2021  BUF       RB                   RB            22          Active
#> 319    2021  BUF       RB                 <NA>            25          Active
#> 320    2021  BUF       RB                   RB            26          Active
#> 321    2021  BUF        T                   RG            68          Active
#> 322    2021  BUF       TE                   TE            88          Active
#> 323    2021  BUF       TE                   TE            85          Active
#> 324    2021  BUF       TE                   TE            89          Active
#> 325    2021  BUF       WR                  SWR            19          Active
#> 326    2021  BUF       WR                  RWR            15          Active
#> 327    2021  BUF       WR                  RWR            14          Active
#> 328    2021  BUF       WR                  RWR             5          Active
#> 329    2021  BUF       WR                  LWR            87          Active
#> 330    2021  BUF       WR                  SWR            11          Active
#> 331    2021  BUF       WR                  LWR             1          Active
#> 332    2021  BUF       WR                  LWR            13          Active
#> 333    2021  BUF       WR                  SWR            16          Active
#> 334    2021  CAR        C                    C            61          Active
#> 335    2021  CAR        C                    C            68          Active
#> 336    2021  CAR       CB                  RCB             8          Active
#> 337    2021  CAR       CB                  LCB            26          Active
#> 338    2021  CAR       CB                 <NA>            29          Active
#> 339    2021  CAR       CB                  RCB             9          Active
#> 340    2021  CAR       CB                  RCB            28          Active
#> 341    2021  CAR       CB                 <NA>            36          Active
#> 342    2021  CAR       CB                  LCB            15          Active
#> 343    2021  CAR       CB                 <NA>            25          Active
#> 344    2021  CAR       CB                 <NA>            23          Active
#> 345    2021  CAR       CB                  LCB            24          Active
#> 346    2021  CAR       DB                   FS            42          Active
#> 347    2021  CAR       DB                   FS            27          Active
#> 348    2021  CAR       DB                   SS            31          Active
#> 349    2021  CAR       DB                   SS            38          Active
#> 350    2021  CAR       DB                   SS            34          Active
#> 351    2021  CAR       DB                 <NA>            37          Active
#> 352    2021  CAR       DB                   FS            21          Active
#> 353    2021  CAR       DE                  RDE            91          Active
#> 354    2021  CAR       DE                  LDE            92          Active
#> 355    2021  CAR       DE                 <NA>             0          Active
#> 356    2021  CAR       DE                  RDE            98          Active
#> 357    2021  CAR       DE                  LOB            54          Active
#> 358    2021  CAR       DE                 <NA>            96          Active
#> 359    2021  CAR       DE                  LDE            97          Active
#> 360    2021  CAR       DE                  LDT            69          Active
#> 361    2021  CAR       DE                  LDE            53          Active
#> 362    2021  CAR       DE                 <NA>            76        Inactive
#> 363    2021  CAR       DE                 <NA>            55          Active
#> 364    2021  CAR       DT                  RDT            90          Active
#> 365    2021  CAR       DT                  RDT            71          Active
#> 366    2021  CAR       DT                  LDT            95          Active
#> 367    2021  CAR       DT                  LDT            94          Active
#> 368    2021  CAR       DT                  RDT            93          Active
#> 369    2021  CAR       FB                 <NA>            40          Active
#> 370    2021  CAR       FB                   FB            45          Active
#> 371    2021  CAR        G                   RG            77          Active
#> 372    2021  CAR        G                   RG            67          Active
#> 373    2021  CAR        G                    C            60          Active
#> 374    2021  CAR        G                   LG            73          Active
#> 375    2021  CAR        G                   RG            66          Active
#> 376    2021  CAR        G                   LG            65          Active
#> 377    2021  CAR        K                   PK             3          Active
#> 378    2021  CAR        K                   PK             5          Active
#> 379    2021  CAR        K                 <NA>            19          Active
#> 380    2021  CAR       LB                  ROB            43          Active
#> 381    2021  CAR       LB                  RDE            48          Active
#> 382    2021  CAR       LB                  ROB            49          Active
#> 383    2021  CAR       LB                  ROB            47          Active
#> 384    2021  CAR       LB                  LOB            50          Active
#> 385    2021  CAR       LB                  LOB             7          Active
#> 386    2021  CAR       LB                  MLB             4          Active
#> 387    2021  CAR       LS                 <NA>            44          Active
#> 388    2021  CAR       LS                 <NA>            46          Active
#> 389    2021  CAR       OL                   RT            74          Active
#> 390    2021  CAR       OT                   LT            62          Active
#> 391    2021  CAR        P                 <NA>            10          Active
#> 392    2021  CAR       QB                   QB             1          Active
#> 393    2021  CAR       QB                   QB             6          Active
#> 394    2021  CAR       QB                   QB            14          Active
#> 395    2021  CAR       RB                   RB            30          Active
#> 396    2021  CAR       RB                   RB            20          Active
#> 397    2021  CAR       RB                 <NA>            34          Active
#> 398    2021  CAR       RB                 <NA>            33          Active
#> 399    2021  CAR       RB                   RB            22          Active
#> 400    2021  CAR        T                   RT            78          Active
#> 401    2021  CAR        T                   RT            72          Active
#> 402    2021  CAR        T                   LT            75          Active
#> 403    2021  CAR        T                   LT            70          Active
#> 404    2021  CAR       TE                  RTE            80          Active
#> 405    2021  CAR       TE                  RTE            86          Active
#> 406    2021  CAR       TE                  LTE            84          Active
#> 407    2021  CAR       TE                   TE            85          Active
#> 408    2021  CAR       TE                  LTE            82          Active
#> 409    2021  CAR       WR                 <NA>            81          Active
#> 410    2021  CAR       WR                  LWR            88          Active
#> 411    2021  CAR       WR                  RWR            16          Active
#> 412    2021  CAR       WR                  LWR            12          Active
#> 413    2021  CAR       WR                  RWR            11          Active
#> 414    2021  CAR       WR                  RWR            13          Active
#> 415    2021  CAR       WR                  LWR             2          Active
#> 416    2021  CAR       WR                 <NA>            19          Active
#> 417    2021  CAR       WR                 <NA>            18          Active
#> 418    2021  CAR       WR                 <NA>            83          Active
#> 419    2021  CAR       WR                 <NA>            81          Active
#> 420    2021  CHI       CB                 <NA>            39          Active
#> 421    2021  CHI       CB                 <NA>             0          Active
#> 422    2021  CHI       CB                 <NA>            31          Active
#> 423    2021  CHI       DB                   CB            20          Active
#> 424    2021  CHI       DB                   FS             4          Active
#> 425    2021  CHI       DB                   CB            21          Active
#> 426    2021  CHI       DB                   SS            38          Active
#> 427    2021  CHI       DB                   CB            33          Active
#> 428    2021  CHI       DB                   CB            25          Active
#> 429    2021  CHI       DB                   FS            26          Active
#> 430    2021  CHI       DB                   SS            23          Active
#> 431    2021  CHI       DB                   SS            36          Active
#> 432    2021  CHI       DB                   CB            22          Active
#> 433    2021  CHI       DB                 <NA>            37          Active
#> 434    2021  CHI       DB                   CB            27          Active
#> 435    2021  CHI       DE                   DT            90          Active
#> 436    2021  CHI       DE                  RDE            97          Active
#> 437    2021  CHI       DE                  RDE            93          Active
#> 438    2021  CHI       DT                  RDE            98          Active
#> 439    2021  CHI       DT                   NT            91          Active
#> 440    2021  CHI       DT                   NT            95          Active
#> 441    2021  CHI       DT                   DT            96          Active
#> 442    2021  CHI       DT                   DT            78          Active
#> 443    2021  CHI       DT                   NT            63          Active
#> 444    2021  CHI        K                   PK             2          Active
#> 445    2021  CHI       LB                 <NA>            43          Active
#> 446    2021  CHI       LB                 LILB            44          Active
#> 447    2021  CHI       LB                 <NA>            59          Active
#> 448    2021  CHI       LB                 RILB            58          Active
#> 449    2021  CHI       LB                 LOLB            99          Active
#> 450    2021  CHI       LB                 RILB            45          Active
#> 451    2021  CHI       LB                 LILB            92          Active
#> 452    2021  CHI       LB                 <NA>             0          Active
#> 453    2021  CHI       LB                 LILB             6          Active
#> 454    2021  CHI       LB                 <NA>            49          Active
#> 455    2021  CHI       LB                 ROLB            46          Active
#> 456    2021  CHI       LB                 LOLB            52          Active
#> 457    2021  CHI       LB                 ROLB            50          Active
#> 458    2021  CHI       LB                 ROLB            94          Active
#> 459    2021  CHI       LB                 RILB            57          Active
#> 460    2021  CHI       LB                 LOLB            55          Active
#> 461    2021  CHI       LS                 <NA>             0          Active
#> 462    2021  CHI       LS                 <NA>            48          Active
#> 463    2021  CHI       OL                   RG            68          Active
#> 464    2021  CHI       OL                   LG            60          Active
#> 465    2021  CHI       OL                   RT            75          Active
#> 466    2021  CHI       OL                   RT            74          Active
#> 467    2021  CHI       OL                    C            65          Active
#> 468    2021  CHI       OL                   RT            73          Active
#> 469    2021  CHI       OL                   LT            70          Active
#> 470    2021  CHI       OL                   LT            71          Active
#> 471    2021  CHI       OL                 <NA>            72          Active
#> 472    2021  CHI       OL                   RG            64          Active
#> 473    2021  CHI       OL                    C            67          Active
#> 474    2021  CHI       OL                   LT            76          Active
#> 475    2021  CHI        P                 <NA>             0          Active
#> 476    2021  CHI        P                 <NA>            16          Active
#> 477    2021  CHI       QB                   QB            14          Active
#> 478    2021  CHI       QB                   QB             9          Active
#> 479    2021  CHI       QB                 <NA>            19          Active
#> 480    2021  CHI       QB                   QB             1          Active
#> 481    2021  CHI       RB                 <NA>            35          Active
#> 482    2021  CHI       RB                   RB            24          Active
#> 483    2021  CHI       RB                 <NA>             8          Active
#> 484    2021  CHI       RB                   RB            29          Active
#> 485    2021  CHI       RB                   RB            32          Active
#> 486    2021  CHI       TE                 <NA>             0          Active
#> 487    2021  CHI       TE                 <NA>            81          Active
#> 488    2021  CHI       TE                   TE            18          Active
#> 489    2021  CHI       TE                   TE            85          Active
#> 490    2021  CHI       TE                 <NA>            87          Active
#> 491    2021  CHI       TE                   TE            80          Active
#> 492    2021  CHI       WR                 <NA>             6          Active
#> 493    2021  CHI       WR                  LWR            84          Active
#> 494    2021  CHI       WR                  SWR            10          Active
#> 495    2021  CHI       WR                  RWR            82          Active
#> 496    2021  CHI       WR                 <NA>            17        Inactive
#> 497    2021  CHI       WR                  RWR            11          Active
#> 498    2021  CHI       WR                 <NA>             0        Inactive
#> 499    2021  CHI       WR                  LWR            15          Active
#> 500    2021  CHI       WR                  RWR            83          Active
#> 501    2021  CHI       WR                  LWR            12          Active
#> 502    2021  CIN        C                    C            66          Active
#> 503    2021  CIN        C                    C            61          Active
#> 504    2021  CIN        C                    C            63          Active
#> 505    2021  CIN       CB                   CB            26          Active
#> 506    2021  CIN       CB                   CB            22          Active
#> 507    2021  CIN       CB                   CB            23        Inactive
#> 508    2021  CIN       CB                   NB            21          Active
#> 509    2021  CIN       CB                 <NA>            39          Active
#> 510    2021  CIN       CB                   CB            33          Active
#> 511    2021  CIN       CB                   NB            35          Active
#> 512    2021  CIN       CB                   CB            20          Active
#> 513    2021  CIN       DB                   FS            31          Active
#> 514    2021  CIN       DB                   CB            29          Active
#> 515    2021  CIN       DB                   SS            40        Inactive
#> 516    2021  CIN       DB                   SS            24          Active
#> 517    2021  CIN       DB                   SS            37          Active
#> 518    2021  CIN       DB                   SS            41          Active
#> 519    2021  CIN       DB                   FS            30          Active
#> 520    2021  CIN       DE                  RDE            58        Inactive
#> 521    2021  CIN       DE                  RDE            91          Active
#> 522    2021  CIN       DE                  LDE            94          Active
#> 523    2021  CIN       DE                 <NA>            52          Active
#> 524    2021  CIN       DE                  RDT            69          Active
#> 525    2021  CIN       DE                  LDE            93          Active
#> 526    2021  CIN       DE                 <NA>            56          Active
#> 527    2021  CIN       DE                  RDE            90          Active
#> 528    2021  CIN       DE                  LDE            96          Active
#> 529    2021  CIN       DT                   NT            68          Active
#> 530    2021  CIN       DT                  RDT            92          Active
#> 531    2021  CIN       DT                   NT            98          Active
#> 532    2021  CIN       DT                 <NA>            76          Active
#> 533    2021  CIN       DT                   NT            99          Active
#> 534    2021  CIN       DT                 <NA>            62          Active
#> 535    2021  CIN       DT                 <NA>            62          Active
#> 536    2021  CIN       DT                  RDT            65        Inactive
#> 537    2021  CIN        G                   LG            67          Active
#> 538    2021  CIN        G                   RG            77          Active
#> 539    2021  CIN        G                   RG            79          Active
#> 540    2021  CIN        G                   LT            70          Active
#> 541    2021  CIN        G                 <NA>            64          Active
#> 542    2021  CIN        G                 <NA>            72          Active
#> 543    2021  CIN        K                   PK             2          Active
#> 544    2021  CIN        K                    K             3        Inactive
#> 545    2021  CIN       LB                   LB            59        Inactive
#> 546    2021  CIN       LB                   LB            57          Active
#> 547    2021  CIN       LB                   LB            51          Active
#> 548    2021  CIN       LB                   LB            44          Active
#> 549    2021  CIN       LB                 <NA>            48          Active
#> 550    2021  CIN       LB                 <NA>            47          Active
#> 551    2021  CIN       LB                   LB            50        Inactive
#> 552    2021  CIN       LB                 <NA>            49        Inactive
#> 553    2021  CIN       LB                   LB            55          Active
#> 554    2021  CIN       LS                 <NA>            46          Active
#> 555    2021  CIN       LS                 <NA>            88          Active
#> 556    2021  CIN        P                 <NA>             4          Active
#> 557    2021  CIN        P                 <NA>            10          Active
#> 558    2021  CIN       QB                   QB             6          Active
#> 559    2021  CIN       QB                   QB             9          Active
#> 560    2021  CIN       QB                   QB             8          Active
#> 561    2021  CIN       RB                 <NA>            12          Active
#> 562    2021  CIN       RB                 <NA>            32          Active
#> 563    2021  CIN       RB                   RB            34          Active
#> 564    2021  CIN       RB                 <NA>            36          Active
#> 565    2021  CIN       RB                   RB            28          Active
#> 566    2021  CIN       RB                   RB            25          Active
#> 567    2021  CIN        T                   RT            75          Active
#> 568    2021  CIN        T                   LT            73          Active
#> 569    2021  CIN        T                 <NA>            71        Inactive
#> 570    2021  CIN        T                   RT            74          Active
#> 571    2021  CIN       TE                 <NA>            86        Inactive
#> 572    2021  CIN       TE                 <NA>             0        Inactive
#> 573    2021  CIN       TE                   TE            87          Active
#> 574    2021  CIN       TE                   TE            89          Active
#> 575    2021  CIN       TE                   TE            84          Active
#> 576    2021  CIN       WR                  SWR            11          Active
#> 577    2021  CIN       WR                  SWR            17          Active
#> 578    2021  CIN       WR                  LWR            19        Inactive
#> 579    2021  CIN       WR                  RWR            82          Active
#> 580    2021  CIN       WR                  RWR            85          Active
#> 581    2021  CIN       WR                  LWR             1          Active
#> 582    2021  CIN       WR                  SWR            83          Active
#> 583    2021  CIN       WR                  RWR            80          Active
#> 584    2021  CIN       WR                  LWR            16          Active
#> 585    2021  CLE        C                    C            64          Active
#> 586    2021  CLE        C                    C            53          Active
#> 587    2021  CLE       CB                  RCB            20          Active
#> 588    2021  CLE       CB                  RCB            26          Active
#> 589    2021  CLE       CB                  LCB            23          Active
#> 590    2021  CLE       CB                 <NA>            34          Active
#> 591    2021  CLE       CB                 <NA>            29          Active
#> 592    2021  CLE       CB                  LCB            21          Active
#> 593    2021  CLE       CB                  LCB            38          Active
#> 594    2021  CLE       DB                   SS            22          Active
#> 595    2021  CLE       DB                   FS            43          Active
#> 596    2021  CLE       DB                   FS            49          Active
#> 597    2021  CLE       DB                 <NA>            15          Active
#> 598    2021  CLE       DB                   SS            33          Active
#> 599    2021  CLE       DB                 <NA>            37          Active
#> 600    2021  CLE       DB                   FS            39          Active
#> 601    2021  CLE       DB                  RCB            36          Active
#> 602    2021  CLE       DE                  RDE            57          Active
#> 603    2021  CLE       DE                  LDE            94          Active
#> 604    2021  CLE       DE                  RDE            90          Active
#> 605    2021  CLE       DE                  RDE            59          Active
#> 606    2021  CLE       DE                  LDE            95          Active
#> 607    2021  CLE       DE                  LDE            55          Active
#> 608    2021  CLE       DT                  RDT            58          Active
#> 609    2021  CLE       DT                  LDT            96          Active
#> 610    2021  CLE       DT                  LDT            92          Active
#> 611    2021  CLE       DT                  LDT            97          Active
#> 612    2021  CLE       DT                  RDT            93          Active
#> 613    2021  CLE       FB                   FB            40          Active
#> 614    2021  CLE       FB                   FB            31          Active
#> 615    2021  CLE        G                   LG            72          Active
#> 616    2021  CLE        G                   RG            77          Active
#> 617    2021  CLE        G                   RG            60          Active
#> 618    2021  CLE        K                   PK             3          Active
#> 619    2021  CLE        K                   PK            12          Active
#> 620    2021  CLE       LB                  SLB            42          Active
#> 621    2021  CLE       LB                  WLB            51          Active
#> 622    2021  CLE       LB                  SLB            56          Active
#> 623    2021  CLE       LB                  WLB            52          Active
#> 624    2021  CLE       LB                   SS            41          Active
#> 625    2021  CLE       LB                  MLB            50          Active
#> 626    2021  CLE       LB                  MLB             4          Active
#> 627    2021  CLE       LB                  MLB            54          Active
#> 628    2021  CLE       LB                  WLB            28          Active
#> 629    2021  CLE       LB                  SLB            44          Active
#> 630    2021  CLE       LS                 <NA>            47          Active
#> 631    2021  CLE       OG                   LG            75          Active
#> 632    2021  CLE       OG                   LT            62          Active
#> 633    2021  CLE       OG                   LG            68          Active
#> 634    2021  CLE       OG                   RG            79          Active
#> 635    2021  CLE       OL                   RT            65          Active
#> 636    2021  CLE       OT                   LT            66          Active
#> 637    2021  CLE       OT                   LT            71          Active
#> 638    2021  CLE       OT                   RT            78          Active
#> 639    2021  CLE        P                 <NA>             0          Active
#> 640    2021  CLE        P                 <NA>             2          Active
#> 641    2021  CLE       QB                   QB             5          Active
#> 642    2021  CLE       QB                   QB             6          Active
#> 643    2021  CLE       QB                   QB             9          Active
#> 644    2021  CLE       RB                 <NA>            25          Active
#> 645    2021  CLE       RB                 <NA>            41          Active
#> 646    2021  CLE       RB                 <NA>            34          Active
#> 647    2021  CLE       RB                 <NA>            18          Active
#> 648    2021  CLE       RB                 <NA>            37          Active
#> 649    2021  CLE       RB                   RB            24          Active
#> 650    2021  CLE       RB                   RB            30          Active
#> 651    2021  CLE       RB                 <NA>            16          Active
#> 652    2021  CLE       RB                   RB            27          Active
#> 653    2021  CLE        T                   RT            74          Active
#> 654    2021  CLE        T                 <NA>            70          Active
#> 655    2021  CLE       TE                  RTE            48          Active
#> 656    2021  CLE       TE                  LTE            88          Active
#> 657    2021  CLE       TE                  LTE            81          Active
#> 658    2021  CLE       TE                  RTE            89          Active
#> 659    2021  CLE       TE                  LTE            86          Active
#> 660    2021  CLE       TE                  RTE            85          Active
#> 661    2021  CLE       WR                  RWR            15          Active
#> 662    2021  CLE       WR                  LWR            80          Active
#> 663    2021  CLE       WR                  RWR            11          Active
#> 664    2021  CLE       WR                  RWR            82          Active
#> 665    2021  CLE       WR                  LWR            10          Active
#> 666    2021  CLE       WR                  LWR            84          Active
#> 667    2021  DAL        C                    C            63          Active
#> 668    2021  DAL        C                   LG            62          Active
#> 669    2021  DAL       CB                   NB            31          Active
#> 670    2021  DAL       CB                   CB            36          Active
#> 671    2021  DAL       CB                   CB             7          Active
#> 672    2021  DAL       CB                   CB            30          Active
#> 673    2021  DAL       CB                   CB            24          Active
#> 674    2021  DAL       CB                   CB            25          Active
#> 675    2021  DAL       CB                   CB            29          Active
#> 676    2021  DAL       CB                   NB            26          Active
#> 677    2021  DAL       CB                 <NA>            20          Active
#> 678    2021  DAL       CB                 <NA>            41        Inactive
#> 679    2021  DAL       DB                   FS            38        Inactive
#> 680    2021  DAL       DB                   FS            18          Active
#> 681    2021  DAL       DB                   SS            27          Active
#> 682    2021  DAL       DB                   SS            39          Active
#> 683    2021  DAL       DB                 <NA>            23          Active
#> 684    2021  DAL       DB                   FS             6          Active
#> 685    2021  DAL       DB                   SS            28          Active
#> 686    2021  DAL       DE                  RDE            59          Active
#> 687    2021  DAL       DE                  LDE            93          Active
#> 688    2021  DAL       DE                  LDE            90          Active
#> 689    2021  DAL       DE                  RDT            91          Active
#> 690    2021  DAL       DE                  RDE            94          Active
#> 691    2021  DAL       DE                  RDT            95        Inactive
#> 692    2021  DAL       DE                  RDE            92          Active
#> 693    2021  DAL       DT                  LDT            98          Active
#> 694    2021  DAL       DT                  LDT            72          Active
#> 695    2021  DAL       DT                 <NA>            58          Active
#> 696    2021  DAL       DT                  RDT            97          Active
#> 697    2021  DAL       DT                 <NA>            67          Active
#> 698    2021  DAL       DT                  LDT            96          Active
#> 699    2021  DAL       FB                 <NA>            45        Inactive
#> 700    2021  DAL        G                   RG            70          Active
#> 701    2021  DAL        G                    C            68          Active
#> 702    2021  DAL        G                   RG            66          Active
#> 703    2021  DAL        G                   LG            52          Active
#> 704    2021  DAL        K                   PK             0          Active
#> 705    2021  DAL        K                   PK             2          Active
#> 706    2021  DAL       LB                  SLB            55          Active
#> 707    2021  DAL       LB                  MLB            57          Active
#> 708    2021  DAL       LB                  SLB            53          Active
#> 709    2021  DAL       LB                  WLB            11          Active
#> 710    2021  DAL       LB                  WLB            51          Active
#> 711    2021  DAL       LB                  MLB            42          Active
#> 712    2021  DAL       LB                  WLB            14        Inactive
#> 713    2021  DAL       LS                 <NA>            44          Active
#> 714    2021  DAL       OL                 <NA>            65        Inactive
#> 715    2021  DAL       OT                   RT            75        Inactive
#> 716    2021  DAL       OT                   LT            60          Active
#> 717    2021  DAL        P                 <NA>             7        Inactive
#> 718    2021  DAL        P                 <NA>             5          Active
#> 719    2021  DAL       QB                   QB            10          Active
#> 720    2021  DAL       QB                 <NA>             3          Active
#> 721    2021  DAL       QB                   QB             4          Active
#> 722    2021  DAL       QB                   QB            15        Inactive
#> 723    2021  DAL       RB                   RB            20          Active
#> 724    2021  DAL       RB                 <NA>            46          Active
#> 725    2021  DAL       RB                 <NA>            37          Active
#> 726    2021  DAL       RB                 <NA>            34        Inactive
#> 727    2021  DAL       RB                   RB            21          Active
#> 728    2021  DAL       RB                 <NA>            43          Active
#> 729    2021  DAL       RB                   RB            32          Active
#> 730    2021  DAL        T                   RG            76          Active
#> 731    2021  DAL        T                   LT            77          Active
#> 732    2021  DAL        T                   RT            71          Active
#> 733    2021  DAL        T                   LT            78          Active
#> 734    2021  DAL        T                   RT            79          Active
#> 735    2021  DAL       TE                   FB            49          Active
#> 736    2021  DAL       TE                   TE            87          Active
#> 737    2021  DAL       TE                   TE            89          Active
#> 738    2021  DAL       TE                   TE            86          Active
#> 739    2021  DAL       TE                 <NA>            84          Active
#> 740    2021  DAL       WR                  LWR            17          Active
#> 741    2021  DAL       WR                  RWR             1          Active
#> 742    2021  DAL       WR                  LWR            85          Active
#> 743    2021  DAL       WR                  LWR            19          Active
#> 744    2021  DAL       WR                  SWR            81          Active
#> 745    2021  DAL       WR                  RWR            13        Inactive
#> 746    2021  DAL       WR                  SWR            80          Active
#> 747    2021  DAL       WR                  SWR            88          Active
#> 748    2021  DAL       WR                  SWR            16          Active
#> 749    2021  DAL       WR                 <NA>            15        Inactive
#> 750    2021  DAL       WR                  RWR            83          Active
#> 751    2021  DEN        C                    C            79          Active
#> 752    2021  DEN        C                 <NA>            65        Inactive
#> 753    2021  DEN       CB                 <NA>            21        Inactive
#> 754    2021  DEN       CB                  RCB            29          Active
#> 755    2021  DEN       CB                  LCB            23          Active
#> 756    2021  DEN       CB                  RCB             0          Active
#> 757    2021  DEN       CB                  LCB            13          Active
#> 758    2021  DEN       CB                  LCB            27          Active
#> 759    2021  DEN       CB                 <NA>             2        Inactive
#> 760    2021  DEN       CB                 <NA>            20        Inactive
#> 761    2021  DEN       DB                 <NA>            32          Active
#> 762    2021  DEN       DB                   SS            37          Active
#> 763    2021  DEN       DB                 <NA>            39          Active
#> 764    2021  DEN       DB                 <NA>            22        Inactive
#> 765    2021  DEN       DB                   FS            31          Active
#> 766    2021  DEN       DB                  RCB            12          Active
#> 767    2021  DEN       DB                   FS            30          Active
#> 768    2021  DEN       DB                   SS            49          Active
#> 769    2021  DEN       DE                  WLB            94          Active
#> 770    2021  DEN       DE                  LDE            93          Active
#> 771    2021  DEN       DE                  RDE            96          Active
#> 772    2021  DEN       DE                 <NA>            51          Active
#> 773    2021  DEN       DE                 <NA>            61          Active
#> 774    2021  DEN       DT                 <NA>            90        Inactive
#> 775    2021  DEN       DT                 <NA>            92          Active
#> 776    2021  DEN       DT                  LDE            99          Active
#> 777    2021  DEN       DT                   NT            74          Active
#> 778    2021  DEN       DT                 <NA>            97          Active
#> 779    2021  DEN       DT                  RDE            95          Active
#> 780    2021  DEN       FB                 <NA>            83        Inactive
#> 781    2021  DEN        G                   LG            52          Active
#> 782    2021  DEN        G                   RG            71          Active
#> 783    2021  DEN        G                 <NA>            66        Inactive
#> 784    2021  DEN        G                 <NA>            61        Inactive
#> 785    2021  DEN        G                 <NA>            69          Active
#> 786    2021  DEN        K                   PK             8          Active
#> 787    2021  DEN       LB                 RILB            41          Active
#> 788    2021  DEN       LB                 LILB            56          Active
#> 789    2021  DEN       LB                 LILB            43          Active
#> 790    2021  DEN       LB                  WLB            59          Active
#> 791    2021  DEN       LB                 LILB            40          Active
#> 792    2021  DEN       LB                  WLB            91          Active
#> 793    2021  DEN       LB                 <NA>            57        Inactive
#> 794    2021  DEN       LB                  SLB            48          Active
#> 795    2021  DEN       LB                 <NA>            47        Inactive
#> 796    2021  DEN       LB                 RILB            50          Active
#> 797    2021  DEN       LB                  SLB            55          Active
#> 798    2021  DEN       LB                 RILB            54          Active
#> 799    2021  DEN       LB                 <NA>            45        Inactive
#> 800    2021  DEN       LB                  SLB            53          Active
#> 801    2021  DEN       LS                 <NA>            46          Active
#> 802    2021  DEN       NT                   NT            98          Active
#> 803    2021  DEN       OL                 <NA>            60          Active
#> 804    2021  DEN       OL                 <NA>            68          Active
#> 805    2021  DEN       OL                   RG            77          Active
#> 806    2021  DEN      OLB                  SLB            47          Active
#> 807    2021  DEN       OT                   RT            78          Active
#> 808    2021  DEN       OT                 <NA>            75          Active
#> 809    2021  DEN       OT                   LT            72          Active
#> 810    2021  DEN        P                 <NA>             6          Active
#> 811    2021  DEN        P                 <NA>             0          Active
#> 812    2021  DEN       QB                 <NA>            15          Active
#> 813    2021  DEN       QB                 <NA>             5        Inactive
#> 814    2021  DEN       QB                   QB             3          Active
#> 815    2021  DEN       QB                   QB             4          Active
#> 816    2021  DEN       RB                 <NA>            28          Active
#> 817    2021  DEN       RB                 <NA>            17        Inactive
#> 818    2021  DEN       RB                   RB            25          Active
#> 819    2021  DEN       RB                   RB            33          Active
#> 820    2021  DEN       RB                   RB            26          Active
#> 821    2021  DEN        T                 <NA>             0          Active
#> 822    2021  DEN        T                   RT            73          Active
#> 823    2021  DEN        T                   RT            70          Active
#> 824    2021  DEN        T                 <NA>            76          Active
#> 825    2021  DEN       TE                  RTE            82          Active
#> 826    2021  DEN       TE                  LTE            88          Active
#> 827    2021  DEN       TE                  LTE            87          Active
#> 828    2021  DEN       TE                  RTE            85          Active
#> 829    2021  DEN       TE                 <NA>            86          Active
#> 830    2021  DEN       WR                  LWR            14          Active
#> 831    2021  DEN       WR                  RWR            10          Active
#> 832    2021  DEN       WR                 <NA>            17          Active
#> 833    2021  DEN       WR                 <NA>            17          Active
#> 834    2021  DEN       WR                  RWR            81          Active
#> 835    2021  DEN       WR                  LWR             9          Active
#> 836    2021  DEN       WR                 <NA>            16          Active
#> 837    2021  DEN       WR                 <NA>             1        Inactive
#> 838    2021  DEN       WR                  RWR            19          Active
#> 839    2021  DEN       WR                  LWR            11          Active
#> 840    2021  DET        C                    C            63          Active
#> 841    2021  DET        C                 <NA>            77        Inactive
#> 842    2021  DET        C                    C            74          Active
#> 843    2021  DET       CB                 <NA>            24        Inactive
#> 844    2021  DET       CB                 <NA>            23        Inactive
#> 845    2021  DET       CB                 <NA>            29          Active
#> 846    2021  DET       CB                 <NA>            19          Active
#> 847    2021  DET       CB                  LCB            41          Active
#> 848    2021  DET       CB                  RCB            26          Active
#> 849    2021  DET       CB                  RCB            40          Active
#> 850    2021  DET       CB                  RCB            39        Inactive
#> 851    2021  DET       DB                  LCB            27          Active
#> 852    2021  DET       DB                 <NA>             0          Active
#> 853    2021  DET       DB                   SS            42          Active
#> 854    2021  DET       DB                 <NA>            43          Active
#> 855    2021  DET       DB                   FS            21          Active
#> 856    2021  DET       DB                   SS            25          Active
#> 857    2021  DET       DB                   FS            38        Inactive
#> 858    2021  DET       DB                   SS            31          Active
#> 859    2021  DET       DB                   FS            15          Active
#> 860    2021  DET       DE                 <NA>            79        Inactive
#> 861    2021  DET       DE                  LDE            91          Active
#> 862    2021  DET       DE                  RDE            94          Active
#> 863    2021  DET       DE                  RDE            75          Active
#> 864    2021  DET       DE                   NT            76          Active
#> 865    2021  DET       DE                  RDE            97          Active
#> 866    2021  DET       DT                  LDE            96          Active
#> 867    2021  DET       FB                   FB            45          Active
#> 868    2021  DET        G                   LG            73          Active
#> 869    2021  DET        G                   RG            72          Active
#> 870    2021  DET        G                   RG            78        Inactive
#> 871    2021  DET        G                 <NA>            71        Inactive
#> 872    2021  DET        K                   PK             6          Active
#> 873    2021  DET        K                 <NA>             4        Inactive
#> 874    2021  DET        K                   PK             5          Active
#> 875    2021  DET       LB                 ROLB            99          Active
#> 876    2021  DET       LB                 ROLB            52          Active
#> 877    2021  DET       LB                 RILB            57          Active
#> 878    2021  DET       LB                 LOLB            49          Active
#> 879    2021  DET       LB                 LILB            55          Active
#> 880    2021  DET       LB                 RILB            44          Active
#> 881    2021  DET       LB                 LILB            59          Active
#> 882    2021  DET       LB                 <NA>            50        Inactive
#> 883    2021  DET       LB                 ROLB            53          Active
#> 884    2021  DET       LB                 <NA>            51        Inactive
#> 885    2021  DET       LB                 LOLB             2          Active
#> 886    2021  DET       LB                 <NA>            95        Inactive
#> 887    2021  DET       LB                 <NA>            34        Inactive
#> 888    2021  DET       LB                 <NA>            90        Inactive
#> 889    2021  DET       LB                 LILB            43          Active
#> 890    2021  DET       LS                 <NA>            47          Active
#> 891    2021  DET       NT                   NT            54          Active
#> 892    2021  DET       NT                   NT            98          Active
#> 893    2021  DET        P                 <NA>             3          Active
#> 894    2021  DET       QB                   QB            12          Active
#> 895    2021  DET       QB                 <NA>            19          Active
#> 896    2021  DET       QB                   QB            10          Active
#> 897    2021  DET       QB                   QB            16          Active
#> 898    2021  DET       RB                   RB             0        Inactive
#> 899    2021  DET       RB                   RB            32          Active
#> 900    2021  DET       RB                 <NA>            30          Active
#> 901    2021  DET       RB                 <NA>            46          Active
#> 902    2021  DET       RB                   RB            28          Active
#> 903    2021  DET       RB                   RB            35          Active
#> 904    2021  DET        T                   LT            70          Active
#> 905    2021  DET        T                   RT            58          Active
#> 906    2021  DET        T                   RT            69          Active
#> 907    2021  DET        T                   RT            67          Active
#> 908    2021  DET        T                   LT            68          Active
#> 909    2021  DET       TE                   TE             0          Active
#> 910    2021  DET       TE                   TE            89          Active
#> 911    2021  DET       TE                   TE            80          Active
#> 912    2021  DET       TE                 <NA>            86          Active
#> 913    2021  DET       TE                 <NA>            84          Active
#> 914    2021  DET       TE                 <NA>            84          Active
#> 915    2021  DET       TE                 <NA>            88        Inactive
#> 916    2021  DET       WR                  LWR            83          Active
#> 917    2021  DET       WR                  SWR            85          Active
#> 918    2021  DET       WR                  SWR            14          Active
#> 919    2021  DET       WR                  LWR            18          Active
#> 920    2021  DET       WR                 <NA>            87        Inactive
#> 921    2021  DET       WR                  RWR            17          Active
#> 922    2021  DET       WR                  LWR             8          Active
#> 923    2021  DET       WR                  RWR            11          Active
#> 924    2021   GB        C                    C            67          Active
#> 925    2021   GB       CB                   CB            39          Active
#> 926    2021   GB       CB                   CB            21          Active
#> 927    2021   GB       CB                   CB            24          Active
#> 928    2021   GB       CB                   CB            20          Active
#> 929    2021   GB       CB                   CB            29          Active
#> 930    2021   GB       CB                 <NA>            22          Active
#> 931    2021   GB       CB                   CB             0          Active
#> 932    2021   GB       CB                   CB            23          Active
#> 933    2021   GB       CB                 <NA>            48          Active
#> 934    2021   GB       DB                 <NA>            38          Active
#> 935    2021   GB       DB                   SS            26          Active
#> 936    2021   GB       DB                   FS            31          Active
#> 937    2021   GB       DB                   SS            41          Active
#> 938    2021   GB       DB                   FS            36          Active
#> 939    2021   GB       DB                   SS            30          Active
#> 940    2021   GB       DE                  LDE            94          Active
#> 941    2021   GB       DE                   NT            97          Active
#> 942    2021   GB       DE                 <NA>            98          Active
#> 943    2021   GB       DT                 <NA>            62          Active
#> 944    2021   GB       DT                   NT            93          Active
#> 945    2021   GB       DT                   NT            90          Active
#> 946    2021   GB       DT                  RDE            95          Active
#> 947    2021   GB        G                 <NA>            64          Active
#> 948    2021   GB        G                 <NA>            74          Active
#> 949    2021   GB        G                   RG            62          Active
#> 950    2021   GB        G                   LG            76          Active
#> 951    2021   GB        K                   PK             0          Active
#> 952    2021   GB        K                   PK             2          Active
#> 953    2021   GB        K                   PK            11          Active
#> 954    2021   GB       LB                 LOLB            91          Active
#> 955    2021   GB       LB                 LOLB            52          Active
#> 956    2021   GB       LB                   FS            57          Active
#> 957    2021   GB       LB                 <NA>            47          Active
#> 958    2021   GB       LB                 <NA>            43          Active
#> 959    2021   GB       LB                 ROLB            53          Active
#> 960    2021   GB       LB                 RILB            42          Active
#> 961    2021   GB       LB                 <NA>            44          Active
#> 962    2021   GB       LB                 LOLB            50          Active
#> 963    2021   GB       LB                 ROLB            55          Active
#> 964    2021   GB       LB                 RILB            59          Active
#> 965    2021   GB       LB                 ROLB            40          Active
#> 966    2021   GB       LB                 LILB            51          Active
#> 967    2021   GB       LB                 LILB            58          Active
#> 968    2021   GB       LB                 <NA>            56          Active
#> 969    2021   GB       LB                  LDE            54          Active
#> 970    2021   GB       LS                 <NA>            46          Active
#> 971    2021   GB       OL                 <NA>            65          Active
#> 972    2021   GB       OL                   RT            78          Active
#> 973    2021   GB       OL                   RG            70          Active
#> 974    2021   GB       OL                   RT            77          Active
#> 975    2021   GB       OL                    C            71          Active
#> 976    2021   GB       OT                   LT            69          Active
#> 977    2021   GB        P                 <NA>             7          Active
#> 978    2021   GB       QB                   QB            12          Active
#> 979    2021   GB       QB                   QB            10          Active
#> 980    2021   GB       QB                   QB             6          Active
#> 981    2021   GB       QB                 <NA>             9          Active
#> 982    2021   GB       RB                   RB            27          Active
#> 983    2021   GB       RB                   RB            33          Active
#> 984    2021   GB       RB                   RB            28          Active
#> 985    2021   GB       RB                 <NA>            34          Active
#> 986    2021   GB       RB                 <NA>            32          Active
#> 987    2021   GB        T                   RT            79          Active
#> 988    2021   GB        T                   LT            73          Active
#> 989    2021   GB       TE                  LTE            89          Active
#> 990    2021   GB       TE                  RTE            49          Active
#> 991    2021   GB       TE                  RTE             0          Active
#> 992    2021   GB       TE                   FB            81          Active
#> 993    2021   GB       TE                   TE            82        Inactive
#> 994    2021   GB       TE                  LTE            84          Active
#> 995    2021   GB       TE                 <NA>            45          Active
#> 996    2021   GB       TE                 <NA>            85          Active
#> 997    2021   GB       WR                  RWR            18          Active
#> 998    2021   GB       WR                  LWR            17          Active
#> 999    2021   GB       WR                 <NA>             6        Inactive
#> 1000   2021   GB       WR                 <NA>            86          Active
#> 1001   2021   GB       WR                 <NA>            16          Active
#> 1002   2021   GB       WR                 <NA>            19          Active
#> 1003   2021   GB       WR                  RWR             8          Active
#> 1004   2021   GB       WR                 <NA>            82          Active
#> 1005   2021   GB       WR                  LWR            13          Active
#> 1006   2021   GB       WR                  RWR            83          Active
#> 1007   2021   GB       WR                 <NA>             0          Active
#> 1008   2021   GB       WR                  LWR            88          Active
#> 1009   2021  HOU       CB                  RCB            22          Active
#> 1010   2021  HOU       DB                   SS            23          Active
#> 1011   2021  HOU       DB                  RCB            25          Active
#> 1012   2021  HOU       DB                 <NA>            36        Inactive
#> 1013   2021  HOU       DB                  LCB            24          Active
#> 1014   2021  HOU       DB                   FS            14          Active
#> 1015   2021  HOU       DB                  LCB            39          Active
#> 1016   2021  HOU       DB                   FS            20          Active
#> 1017   2021  HOU       DB                 <NA>            35        Inactive
#> 1018   2021  HOU       DB                   SS             1          Active
#> 1019   2021  HOU       DB                   FS             8          Active
#> 1020   2021  HOU       DB                   SS            33          Active
#> 1021   2021  HOU       DB                  RCB            37          Active
#> 1022   2021  HOU       DE                  LDE            95          Active
#> 1023   2021  HOU       DE                  LDE            54          Active
#> 1024   2021  HOU       DE                  RDE            50          Active
#> 1025   2021  HOU       DE                 <NA>            94          Active
#> 1026   2021  HOU       DE                  RDE            55          Active
#> 1027   2021  HOU       DE                  RDE            52          Active
#> 1028   2021  HOU       DE                 WILL            92          Active
#> 1029   2021  HOU       DE                  LDT             0          Active
#> 1030   2021  HOU       DT                  LDT            91          Active
#> 1031   2021  HOU       DT                  RDT            90          Active
#> 1032   2021  HOU       DT                  LDT            98          Active
#> 1033   2021  HOU       DT                 <NA>            96        Inactive
#> 1034   2021  HOU       DT                  RDT            93          Active
#> 1035   2021  HOU       DT                  RDT            97          Active
#> 1036   2021  HOU        G                   RG             0          Active
#> 1037   2021  HOU        K                   PK             7          Active
#> 1038   2021  HOU       LB                  SLB            32          Active
#> 1039   2021  HOU       LB                 <NA>            56        Inactive
#> 1040   2021  HOU       LB                 MIKE            43          Active
#> 1041   2021  HOU       LB                  SLB            51          Active
#> 1042   2021  HOU       LB                  LDE            75          Active
#> 1043   2021  HOU       LB                 MIKE            59          Active
#> 1044   2021  HOU       LB                 WILL            40          Active
#> 1045   2021  HOU       LB                 <NA>            53          Active
#> 1046   2021  HOU       LB                  SLB            57          Active
#> 1047   2021  HOU       LB                 <NA>            55        Inactive
#> 1048   2021  HOU       LB                 MIKE            58          Active
#> 1049   2021  HOU       LS                 <NA>             0          Active
#> 1050   2021  HOU       LS                 <NA>            46          Active
#> 1051   2021  HOU       OL                   RT            71          Active
#> 1052   2021  HOU       OL                   LG            65          Active
#> 1053   2021  HOU       OL                   RT            72          Active
#> 1054   2021  HOU       OL                    C            68          Active
#> 1055   2021  HOU       OL                    C            79          Active
#> 1056   2021  HOU       OL                   RG            74          Active
#> 1057   2021  HOU       OL                 <NA>            78        Inactive
#> 1058   2021  HOU       OL                 <NA>            62          Active
#> 1059   2021  HOU       OL                 <NA>            66        Inactive
#> 1060   2021  HOU       OL                 <NA>            61        Inactive
#> 1061   2021  HOU       OL                   RG            64          Active
#> 1062   2021  HOU       OL                    C            60          Active
#> 1063   2021  HOU       OL                 <NA>            70          Active
#> 1064   2021  HOU        P                 <NA>            11          Active
#> 1065   2021  HOU       QB                   QB            10          Active
#> 1066   2021  HOU       QB                   QB             4          Active
#> 1067   2021  HOU       QB                   QB             5          Active
#> 1068   2021  HOU       QB                 <NA>             6          Active
#> 1069   2021  HOU       RB                   RB             0          Active
#> 1070   2021  HOU       RB                   RB            28          Active
#> 1071   2021  HOU       RB                   RB            31          Active
#> 1072   2021  HOU       RB                   RB            26          Active
#> 1073   2021  HOU       RB                 <NA>            27        Inactive
#> 1074   2021  HOU        T                   RT            67          Active
#> 1075   2021  HOU       TE                 <NA>            83          Active
#> 1076   2021  HOU       TE                   TE            88          Active
#> 1077   2021  HOU       TE                   TE             9          Active
#> 1078   2021  HOU       TE                   TE            85          Active
#> 1079   2021  HOU       TE                 <NA>            45          Active
#> 1080   2021  HOU       WR                  RWR            15          Active
#> 1081   2021  HOU       WR                  LWR            89          Active
#> 1082   2021  HOU       WR                 <NA>            84          Active
#> 1083   2021  HOU       WR                  RWR            12          Active
#> 1084   2021  HOU       WR                 <NA>             2        Inactive
#> 1085   2021  HOU       WR                  LWR            18          Active
#> 1086   2021  HOU       WR                  LWR            13          Active
#> 1087   2021  HOU       WR                 <NA>            81        Inactive
#> 1088   2021  HOU       WR                  RWR            17          Active
#> 1089   2021  HOU       WR                 <NA>            86          Active
#> 1090   2021  IND        C                    C            78          Active
#> 1091   2021  IND       CB                   CB            38          Active
#> 1092   2021  IND       CB                 <NA>             0          Active
#> 1093   2021  IND       CB                   CB            26          Active
#> 1094   2021  IND       CB                 <NA>            48          Active
#> 1095   2021  IND       CB                 <NA>            40          Active
#> 1096   2021  IND       CB                   CB            27          Active
#> 1097   2021  IND       CB                   CB            47          Active
#> 1098   2021  IND       CB                 <NA>            33          Active
#> 1099   2021  IND       CB                   NB            34          Active
#> 1100   2021  IND       CB                   NB            23          Active
#> 1101   2021  IND       CB                   FS            39          Active
#> 1102   2021  IND       DB                   SS            37          Active
#> 1103   2021  IND       DB                 <NA>            36          Active
#> 1104   2021  IND       DB                   FS            41          Active
#> 1105   2021  IND       DB                 <NA>            32          Active
#> 1106   2021  IND       DB                   SS            30          Active
#> 1107   2021  IND       DB                 <NA>            42          Active
#> 1108   2021  IND       DB                 <NA>            29          Active
#> 1109   2021  IND       DB                   FS            42          Active
#> 1110   2021  IND       DB                 <NA>            36          Active
#> 1111   2021  IND       DE                  LDE            51          Active
#> 1112   2021  IND       DE                 <NA>            94          Active
#> 1113   2021  IND       DE                  LDE            57          Active
#> 1114   2021  IND       DE                  RDE            92          Active
#> 1115   2021  IND       DE                  RDE            91          Active
#> 1116   2021  IND       DE                  RDE            97          Active
#> 1117   2021  IND       DE                 <NA>            54          Active
#> 1118   2021  IND       DE                  LDE            52          Active
#> 1119   2021  IND       DT                   DT            66          Active
#> 1120   2021  IND       DT                   NT             0          Active
#> 1121   2021  IND       DT                 <NA>            96          Active
#> 1122   2021  IND       DT                   NT            95          Active
#> 1123   2021  IND       DT                   NT            90          Active
#> 1124   2021  IND       DT                 <NA>            93          Active
#> 1125   2021  IND       DT                   DT            99          Active
#> 1126   2021  IND        G                   RG            64          Active
#> 1127   2021  IND        G                   RG            75          Active
#> 1128   2021  IND        G                    C            63          Active
#> 1129   2021  IND        G                   LG            62          Active
#> 1130   2021  IND        K                 <NA>             3          Active
#> 1131   2021  IND        K                   PK             6          Active
#> 1132   2021  IND        K                   PK             0          Active
#> 1133   2021  IND       LB                  MLB            43          Active
#> 1134   2021  IND       LB                  WLB            53          Active
#> 1135   2021  IND       LB                  SLB            49          Active
#> 1136   2021  IND       LB                 <NA>            55          Active
#> 1137   2021  IND       LB                  MLB            58          Active
#> 1138   2021  IND       LB                  WLB            59          Active
#> 1139   2021  IND       LB                  WLB            45          Active
#> 1140   2021  IND       LB                  SLB            44          Active
#> 1141   2021  IND       LS                 <NA>            46          Active
#> 1142   2021  IND       OL                   LG            56          Active
#> 1143   2021  IND       OL                   RT            72          Active
#> 1144   2021  IND       OT                 <NA>            71          Active
#> 1145   2021  IND       OT                   LT            79          Active
#> 1146   2021  IND       OT                   LT            76          Active
#> 1147   2021  IND        P                 <NA>             8          Active
#> 1148   2021  IND       QB                   QB             4          Active
#> 1149   2021  IND       QB                   QB             9          Active
#> 1150   2021  IND       QB                 <NA>             5          Active
#> 1151   2021  IND       QB                 <NA>             6          Active
#> 1152   2021  IND       QB                   QB             2          Active
#> 1153   2021  IND       RB                 <NA>            35          Active
#> 1154   2021  IND       RB                   RB            21          Active
#> 1155   2021  IND       RB                   RB            28          Active
#> 1156   2021  IND       RB                   RB            25          Active
#> 1157   2021  IND        T                   RT            73          Active
#> 1158   2021  IND        T                   RT            61          Active
#> 1159   2021  IND        T                   LT            69          Active
#> 1160   2021  IND        T                 <NA>             0          Active
#> 1161   2021  IND       TE                  LTE            83          Active
#> 1162   2021  IND       TE                 <NA>             0          Active
#> 1163   2021  IND       TE                  LTE            84          Active
#> 1164   2021  IND       TE                  RTE            81          Active
#> 1165   2021  IND       TE                  LTE            85          Active
#> 1166   2021  IND       TE                  RTE            80          Active
#> 1167   2021  IND       TE                  RTE            41          Active
#> 1168   2021  IND       WR                  RWR            10          Active
#> 1169   2021  IND       WR                  SWR             1          Active
#> 1170   2021  IND       WR                 <NA>            12          Active
#> 1171   2021  IND       WR                 <NA>             5          Active
#> 1172   2021  IND       WR                 <NA>            15          Active
#> 1173   2021  IND       WR                  LWR            17          Active
#> 1174   2021  IND       WR                  SWR            15          Active
#> 1175   2021  IND       WR                 <NA>             3          Active
#> 1176   2021  IND       WR                  RWR            16          Active
#> 1177   2021  IND       WR                  SWR            14          Active
#> 1178   2021  IND       WR                  SWR            13          Active
#> 1179   2021  IND       WR                  RWR            11          Active
#> 1180   2021  JAX       CB                  LCB            26          Active
#> 1181   2021  JAX       CB                 <NA>            34          Active
#> 1182   2021  JAX       CB                 <NA>            35          Active
#> 1183   2021  JAX       CB                  LCB            29          Active
#> 1184   2021  JAX       CB                   CB            21          Active
#> 1185   2021  JAX       CB                  RCB            32          Active
#> 1186   2021  JAX       CB                  RCB            37          Active
#> 1187   2021  JAX       DB                   FS            20          Active
#> 1188   2021  JAX       DB                   SS             5          Active
#> 1189   2021  JAX       DB                   FS            42          Active
#> 1190   2021  JAX       DB                   SS            38          Active
#> 1191   2021  JAX       DB                 <NA>            22          Active
#> 1192   2021  JAX       DB                   CB            27          Active
#> 1193   2021  JAX       DB                 <NA>             2          Active
#> 1194   2021  JAX       DE                 <NA>            98          Active
#> 1195   2021  JAX       DE                   DE             6          Active
#> 1196   2021  JAX       DE                   DT            93          Active
#> 1197   2021  JAX       DE                 <NA>            96          Active
#> 1198   2021  JAX       DE                  SLB            92          Active
#> 1199   2021  JAX       DE                  OLB            41          Active
#> 1200   2021  JAX       DE                   DE            95          Active
#> 1201   2021  JAX       DE                   DE            91          Active
#> 1202   2021  JAX       DE                  OLB            55          Active
#> 1203   2021  JAX       DT                 <NA>             0          Active
#> 1204   2021  JAX       DT                   DT            90          Active
#> 1205   2021  JAX       DT                   NT            52          Active
#> 1206   2021  JAX       DT                   DT            97          Active
#> 1207   2021  JAX        G                   LG            70          Active
#> 1208   2021  JAX        K                   PK            15          Active
#> 1209   2021  JAX       LB                  WLB            49          Active
#> 1210   2021  JAX       LB                  MLB            50          Active
#> 1211   2021  JAX       LB                  WLB            53          Active
#> 1212   2021  JAX       LB                  MLB            54          Active
#> 1213   2021  JAX       LB                  MLB            59          Active
#> 1214   2021  JAX       LB                 <NA>            57          Active
#> 1215   2021  JAX       LB                  SLB            45          Active
#> 1216   2021  JAX       LB                 <NA>             0          Active
#> 1217   2021  JAX       LB                  SLB            40          Active
#> 1218   2021  JAX       LB                  WLB            44          Active
#> 1219   2021  JAX       LS                 <NA>            46          Active
#> 1220   2021  JAX       OL                    C            69          Active
#> 1221   2021  JAX       OL                   RG            78          Active
#> 1222   2021  JAX       OL                 <NA>            60          Active
#> 1223   2021  JAX       OL                   LG            68          Active
#> 1224   2021  JAX       OL                    C            65          Active
#> 1225   2021  JAX       OL                   RG            62          Active
#> 1226   2021  JAX       OL                   RT            76          Active
#> 1227   2021  JAX       OL                 <NA>            77          Active
#> 1228   2021  JAX       OL                   LT            74          Active
#> 1229   2021  JAX       OL                   RT            75          Active
#> 1230   2021  JAX        P                 <NA>             9          Active
#> 1231   2021  JAX        P                 <NA>            13          Active
#> 1232   2021  JAX       QB                   QB             0          Active
#> 1233   2021  JAX       QB                   QB            16          Active
#> 1234   2021  JAX       QB                   QB             3          Active
#> 1235   2021  JAX       RB                   RB            23          Active
#> 1236   2021  JAX       RB                 <NA>            31          Active
#> 1237   2021  JAX       RB                 <NA>            24          Active
#> 1238   2021  JAX       RB                 <NA>             1          Active
#> 1239   2021  JAX       RB                 <NA>            25          Active
#> 1240   2021  JAX       RB                   RB            36          Active
#> 1241   2021  JAX       RB                   RB            33          Active
#> 1242   2021  JAX        T                   LT            72          Active
#> 1243   2021  JAX        T                   LT            64          Active
#> 1244   2021  JAX        T                   RT            73          Active
#> 1245   2021  JAX       TE                  RTE            80          Active
#> 1246   2021  JAX       TE                  LTE            89          Active
#> 1247   2021  JAX       TE                  LTE            84          Active
#> 1248   2021  JAX       TE                 <NA>            85          Active
#> 1249   2021  JAX       TE                  LTE            47          Active
#> 1250   2021  JAX       TE                  RTE            86          Active
#> 1251   2021  JAX       WR                  RWR             4          Active
#> 1252   2021  JAX       WR                 <NA>            39          Active
#> 1253   2021  JAX       WR                 <NA>            14          Active
#> 1254   2021  JAX       WR                  LWR            11          Active
#> 1255   2021  JAX       WR                  SWR            88          Active
#> 1256   2021  JAX       WR                  RWR            81          Active
#> 1257   2021  JAX       WR                  RWR            18          Active
#> 1258   2021  JAX       WR                  LWR             7          Active
#> 1259   2021  JAX       WR                  SWR            10          Active
#> 1260   2021  JAX       WR                 <NA>            17          Active
#> 1261   2021  JAX       WR                  LWR            83          Active
#> 1262   2021   KC       CB                   CB            21          Active
#> 1263   2021   KC       CB                  RCB            38          Active
#> 1264   2021   KC       CB                   CB            27          Active
#> 1265   2021   KC       CB                 <NA>            26          Active
#> 1266   2021   KC       CB                  LCB            35          Active
#> 1267   2021   KC       CB                  RCB            30          Active
#> 1268   2021   KC       DB                 <NA>            24          Active
#> 1269   2021   KC       DB                   FS            22          Active
#> 1270   2021   KC       DB                   SS            23          Active
#> 1271   2021   KC       DB                 <NA>             0          Active
#> 1272   2021   KC       DB                   FS            49          Active
#> 1273   2021   KC       DB                   FS            39          Active
#> 1274   2021   KC       DB                  LCB             2          Active
#> 1275   2021   KC       DB                   SS            32          Active
#> 1276   2021   KC       DB                 <NA>            20          Active
#> 1277   2021   KC       DE                  LDE            97          Active
#> 1278   2021   KC       DE                  LDE            59        Inactive
#> 1279   2021   KC       DE                  RDE            55          Active
#> 1280   2021   KC       DE                 <NA>             0          Active
#> 1281   2021   KC       DE                  RDE            51          Active
#> 1282   2021   KC       DE                 <NA>            70          Active
#> 1283   2021   KC       DE                 <NA>            60          Active
#> 1284   2021   KC       DT                  RDT            99          Active
#> 1285   2021   KC       DT                 <NA>             0          Active
#> 1286   2021   KC       DT                  LDT            98          Active
#> 1287   2021   KC       DT                  LDT            90          Active
#> 1288   2021   KC       DT                 <NA>            79          Active
#> 1289   2021   KC       DT                  RDT            91          Active
#> 1290   2021   KC       DT                  RDT            95          Active
#> 1291   2021   KC       FB                   FB            45          Active
#> 1292   2021   KC        G                   RT            77          Active
#> 1293   2021   KC        G                   RG            73          Active
#> 1294   2021   KC        K                   PK             7          Active
#> 1295   2021   KC       LB                   LB            44          Active
#> 1296   2021   KC       LB                   LB             0          Active
#> 1297   2021   KC       LB                   LB            50          Active
#> 1298   2021   KC       LB                   LB            24          Active
#> 1299   2021   KC       LB                   LB            53          Active
#> 1300   2021   KC       LB                   LB            56          Active
#> 1301   2021   KC       LB                 <NA>            47          Active
#> 1302   2021   KC       LB                   LB            54          Active
#> 1303   2021   KC       LS                 <NA>            41          Active
#> 1304   2021   KC       LS                 <NA>             0          Active
#> 1305   2021   KC       OG                   RT            69          Active
#> 1306   2021   KC       OL                    C            52          Active
#> 1307   2021   KC       OL                 <NA>            67          Active
#> 1308   2021   KC       OL                   RG            65          Active
#> 1309   2021   KC       OL                    C            66          Active
#> 1310   2021   KC       OL                   LG            62          Active
#> 1311   2021   KC       OL                    C             0          Active
#> 1312   2021   KC        P                   PK             5          Active
#> 1313   2021   KC       QB                   QB            15          Active
#> 1314   2021   KC       QB                   QB             4          Active
#> 1315   2021   KC       QB                   QB             6          Active
#> 1316   2021   KC       RB                 <NA>             1          Active
#> 1317   2021   KC       RB                 <NA>            24          Active
#> 1318   2021   KC       RB                   RB            40          Active
#> 1319   2021   KC       RB                   RB            31          Active
#> 1320   2021   KC       RB                   RB            25          Active
#> 1321   2021   KC        T                 <NA>            75          Active
#> 1322   2021   KC        T                   RT             0          Active
#> 1323   2021   KC        T                   LT            57          Active
#> 1324   2021   KC        T                   LT            70          Active
#> 1325   2021   KC       TE                 <NA>             0          Active
#> 1326   2021   KC       TE                  RTE             0          Active
#> 1327   2021   KC       TE                  LTE            83          Active
#> 1328   2021   KC       TE                  LTE            87          Active
#> 1329   2021   KC       TE                 <NA>            88          Active
#> 1330   2021   KC       TE                 <NA>             0          Active
#> 1331   2021   KC       TE                  LTE            81          Active
#> 1332   2021   KC       TE                 <NA>            80          Active
#> 1333   2021   KC       WR                  RWR            11          Active
#> 1334   2021   KC       WR                 <NA>            14          Active
#> 1335   2021   KC       WR                  SWR            17          Active
#> 1336   2021   KC       WR                 <NA>            82          Active
#> 1337   2021   KC       WR                  SWR             1  Practice Squad
#> 1338   2021   KC       WR                  RWR            12          Active
#> 1339   2021   KC       WR                 <NA>            19          Active
#> 1340   2021   KC       WR                  LWR            13          Active
#> 1341   2021   KC       WR                  SWR            10          Active
#> 1342   2021   KC       WR                  LWR            85          Active
#> 1343   2021   KC       WR                  SWR             0          Active
#> 1344   2021   LA       CB                  RCB            22          Active
#> 1345   2021   LA       CB                  LCB            21          Active
#> 1346   2021   LA       CB                  RCB             5          Active
#> 1347   2021   LA       CB                  RCB            11          Active
#> 1348   2021   LA       DB                 <NA>            49          Active
#> 1349   2021   LA       DB                 <NA>            31        Inactive
#> 1350   2021   LA       DB                 <NA>            37          Active
#> 1351   2021   LA       DB                   SS            33          Active
#> 1352   2021   LA       DB                 <NA>             4        Inactive
#> 1353   2021   LA       DB                 <NA>            41        Inactive
#> 1354   2021   LA       DB                   FS            24          Active
#> 1355   2021   LA       DB                  LCB            46          Active
#> 1356   2021   LA       DB                   SS            39          Active
#> 1357   2021   LA       DB                   FS            39          Active
#> 1358   2021   LA       DB                  LCB            37          Active
#> 1359   2021   LA       DB                 <NA>            36          Active
#> 1360   2021   LA       DB                   FS            26          Active
#> 1361   2021   LA       DB                   SS            35          Active
#> 1362   2021   LA       DE                 <NA>            92          Active
#> 1363   2021   LA       DE                  LDE            90          Active
#> 1364   2021   LA       DT                   NT            91          Active
#> 1365   2021   LA       DT                   NT            69          Active
#> 1366   2021   LA       DT                   DT            99          Active
#> 1367   2021   LA       DT                  LDE            94          Active
#> 1368   2021   LA       DT                   NT            95          Active
#> 1369   2021   LA       DT                   DT            96          Active
#> 1370   2021   LA       DT                   DT            93          Active
#> 1371   2021   LA       FS                 <NA>            20        Inactive
#> 1372   2021   LA        G                   RG             0          Active
#> 1373   2021   LA        K                 <NA>             0          Active
#> 1374   2021   LA        K                   PK             8          Active
#> 1375   2021   LA       LB                  SLB            48          Active
#> 1376   2021   LA       LB                 RILB            51          Active
#> 1377   2021   LA       LB                 RILB            50          Active
#> 1378   2021   LA       LB                  SLB            45          Active
#> 1379   2021   LA       LB                  SLB            54          Active
#> 1380   2021   LA       LB                 WILL            40          Active
#> 1381   2021   LA       LB                 WILL            58          Active
#> 1382   2021   LA       LB                 RILB            56          Active
#> 1383   2021   LA       LB                 <NA>            57        Inactive
#> 1384   2021   LA       LB                 WILL            52          Active
#> 1385   2021   LA       LB                 LILB            32          Active
#> 1386   2021   LA       LS                 <NA>            42          Active
#> 1387   2021   LA       LS                 <NA>             0          Active
#> 1388   2021   LA       OL                   RG            64        Inactive
#> 1389   2021   LA       OL                   LG            60          Active
#> 1390   2021   LA       OL                 <NA>            70        Inactive
#> 1391   2021   LA       OL                   RT            79          Active
#> 1392   2021   LA       OL                   LT            67          Active
#> 1393   2021   LA       OL                   LG            73          Active
#> 1394   2021   LA       OL                   LT            66          Active
#> 1395   2021   LA       OL                   RG            63          Active
#> 1396   2021   LA       OL                   LG            72          Active
#> 1397   2021   LA       OL                   LT            77          Active
#> 1398   2021   LA       OL                    C            65          Active
#> 1399   2021   LA       OL                   RG            71          Active
#> 1400   2021   LA       OL                   RT            68          Active
#> 1401   2021   LA       OL                    C            55          Active
#> 1402   2021   LA        P                 <NA>            16          Active
#> 1403   2021   LA        P                 <NA>             6          Active
#> 1404   2021   LA       QB                   QB            13          Active
#> 1405   2021   LA       QB                   QB             9          Active
#> 1406   2021   LA       QB                   QB            16          Active
#> 1407   2021   LA       RB                   RB            25          Active
#> 1408   2021   LA       RB                 <NA>            23          Active
#> 1409   2021   LA       RB                 <NA>            38          Active
#> 1410   2021   LA       RB                   RB            30        Inactive
#> 1411   2021   LA       RB                   RB            27          Active
#> 1412   2021   LA       RB                 <NA>            14          Active
#> 1413   2021   LA       RB                   RB            34          Active
#> 1414   2021   LA       TE                   TE            88          Active
#> 1415   2021   LA       TE                 <NA>            87        Inactive
#> 1416   2021   LA       TE                 <NA>            89        Inactive
#> 1417   2021   LA       TE                   TE            47          Active
#> 1418   2021   LA       TE                   TE            86          Active
#> 1419   2021   LA       TE                 <NA>            82        Inactive
#> 1420   2021   LA       WR                 <NA>             2        Inactive
#> 1421   2021   LA       WR                  RWR            84          Active
#> 1422   2021   LA       WR                  SWR            18          Active
#> 1423   2021   LA       WR                  SWR             3        Inactive
#> 1424   2021   LA       WR                 <NA>            83        Inactive
#> 1425   2021   LA       WR                  RWR            12          Active
#> 1426   2021   LA       WR                  LWR            17          Active
#> 1427   2021   LA       WR                  LWR            10          Active
#> 1428   2021   LA       WR                  LWR            19          Active
#> 1429   2021   LA       WR                 <NA>            15        Inactive
#> 1430   2021  LAC        C                    C            63          Active
#> 1431   2021  LAC       CB                  LCB            37          Active
#> 1432   2021  LAC       CB                  RCB            20        Inactive
#> 1433   2021  LAC       CB                  LCB            26          Active
#> 1434   2021  LAC       CB                 <NA>            23        Inactive
#> 1435   2021  LAC       CB                  LCB            43          Active
#> 1436   2021  LAC       CB                  RCB            28          Active
#> 1437   2021  LAC       CB                   NB            25          Active
#> 1438   2021  LAC       DB                   FS            24          Active
#> 1439   2021  LAC       DB                   SS            46          Active
#> 1440   2021  LAC       DB                   SS            32          Active
#> 1441   2021  LAC       DB                 <NA>            29        Inactive
#> 1442   2021  LAC       DB                   FS            36          Active
#> 1443   2021  LAC       DB                   SS             3          Active
#> 1444   2021  LAC       DE                 <NA>            59          Active
#> 1445   2021  LAC       DE                 EDGE            92        Inactive
#> 1446   2021  LAC       DT                   DL            99          Active
#> 1447   2021  LAC       DT                   DL            98          Active
#> 1448   2021  LAC       DT                   DL            95          Active
#> 1449   2021  LAC       DT                 <NA>            91          Active
#> 1450   2021  LAC       DT                   DL            93          Active
#> 1451   2021  LAC       DT                 <NA>            77          Active
#> 1452   2021  LAC       DT                 <NA>            90          Active
#> 1453   2021  LAC       FB                   FB            40          Active
#> 1454   2021  LAC        G                 <NA>            76        Inactive
#> 1455   2021  LAC        G                   LG            71          Active
#> 1456   2021  LAC        G                   LT            67          Active
#> 1457   2021  LAC        K                   PK             6          Active
#> 1458   2021  LAC        K                 <NA>            16          Active
#> 1459   2021  LAC       LB                   LB            49          Active
#> 1460   2021  LAC       LB                 EDGE            94          Active
#> 1461   2021  LAC       LB                 EDGE            97          Active
#> 1462   2021  LAC       LB                   LB            57          Active
#> 1463   2021  LAC       LB                   LB            44          Active
#> 1464   2021  LAC       LB                   LB             9          Active
#> 1465   2021  LAC       LB                 <NA>            53        Inactive
#> 1466   2021  LAC       LB                 EDGE            42          Active
#> 1467   2021  LAC       LB                 <NA>            50          Active
#> 1468   2021  LAC       LB                 <NA>            51          Active
#> 1469   2021  LAC       LB                   LB            31          Active
#> 1470   2021  LAC       LB                   LB            52          Active
#> 1471   2021  LAC       LS                 <NA>            54          Active
#> 1472   2021  LAC       NT                   DL            96          Active
#> 1473   2021  LAC       OL                    C            61          Active
#> 1474   2021  LAC       OL                   LG            68          Active
#> 1475   2021  LAC       OL                   RG            64          Active
#> 1476   2021  LAC        P                 <NA>             1          Active
#> 1477   2021  LAC       QB                   QB             4          Active
#> 1478   2021  LAC       QB                   QB             2          Active
#> 1479   2021  LAC       QB                   QB            10          Active
#> 1480   2021  LAC       RB                   RB            27          Active
#> 1481   2021  LAC       RB                   RB            30          Active
#> 1482   2021  LAC       RB                 <NA>            35          Active
#> 1483   2021  LAC       RB                   RB            22          Active
#> 1484   2021  LAC        T                   LT            70          Active
#> 1485   2021  LAC        T                   RT            73          Active
#> 1486   2021  LAC        T                   LT            79          Active
#> 1487   2021  LAC        T                   RT            74          Active
#> 1488   2021  LAC        T                 <NA>            75        Inactive
#> 1489   2021  LAC        T                   RT            72          Active
#> 1490   2021  LAC       TE                 <NA>            47          Active
#> 1491   2021  LAC       TE                   TE            88          Active
#> 1492   2021  LAC       TE                 <NA>            89        Inactive
#> 1493   2021  LAC       TE                   TE            87          Active
#> 1494   2021  LAC       TE                   TE            82          Active
#> 1495   2021  LAC       WR                  LWR            80          Active
#> 1496   2021  LAC       WR                  RWR            11          Active
#> 1497   2021  LAC       WR                  SWR            13          Active
#> 1498   2021  LAC       WR                 <NA>            84          Active
#> 1499   2021  LAC       WR                  SWR             5          Active
#> 1500   2021  LAC       WR                  SWR            83          Active
#> 1501   2021  LAC       WR                 <NA>            12          Active
#> 1502   2021  LAC       WR                  LWR            15          Active
#> 1503   2021  LAC       WR                  RWR            81          Active
#> 1504   2021  LAC       WR                  RWR             7          Active
#> 1505   2021   LV        C                    C            68          Active
#> 1506   2021   LV        C                    C            66          Active
#> 1507   2021   LV        C                    C             0          Active
#> 1508   2021   LV       CB                 <NA>            22          Active
#> 1509   2021   LV       CB                   NB            39          Active
#> 1510   2021   LV       CB                  LCB            35          Active
#> 1511   2021   LV       CB                   NB            21          Active
#> 1512   2021   LV       CB                  LCB            27        Inactive
#> 1513   2021   LV       CB                  RCB            29          Active
#> 1514   2021   LV       CB                  RCB            10          Active
#> 1515   2021   LV       CB                 <NA>            40          Active
#> 1516   2021   LV       DB                   SS            33          Active
#> 1517   2021   LV       DB                   FS            43          Active
#> 1518   2021   LV       DB                   FS            25          Active
#> 1519   2021   LV       DB                   SS            37          Active
#> 1520   2021   LV       DB                 <NA>            20          Active
#> 1521   2021   LV       DB                   FS            32          Active
#> 1522   2021   LV       DB                 <NA>            38          Active
#> 1523   2021   LV       DB                 <NA>            24        Inactive
#> 1524   2021   LV       DB                 <NA>             0          Active
#> 1525   2021   LV       DB                 <NA>             0          Active
#> 1526   2021   LV       DE                  RDE            94          Active
#> 1527   2021   LV       DE                 <NA>             0          Active
#> 1528   2021   LV       DE                  LDE            99          Active
#> 1529   2021   LV       DE                  RDE            51          Active
#> 1530   2021   LV       DE                  RDE            91          Active
#> 1531   2021   LV       DE                   NT            95          Active
#> 1532   2021   LV       DE                  LDE            98          Active
#> 1533   2021   LV       DE                 <NA>            56          Active
#> 1534   2021   LV       DT                   DT            77          Active
#> 1535   2021   LV       DT                 <NA>            96        Inactive
#> 1536   2021   LV       DT                   NT            90          Active
#> 1537   2021   LV       DT                   DT            92          Active
#> 1538   2021   LV       DT                   DT            54          Active
#> 1539   2021   LV       DT                 <NA>            93        Inactive
#> 1540   2021   LV       FB                   FB            41          Active
#> 1541   2021   LV       FB                 <NA>            45        Inactive
#> 1542   2021   LV        G                 <NA>            71        Inactive
#> 1543   2021   LV        G                 <NA>             0          Active
#> 1544   2021   LV        G                 <NA>            64        Inactive
#> 1545   2021   LV        G                 <NA>            67          Active
#> 1546   2021   LV        G                   LG            60          Active
#> 1547   2021   LV        G                   LG            76          Active
#> 1548   2021   LV        K                   PK             2          Active
#> 1549   2021   LV       LB                  WLB            53          Active
#> 1550   2021   LV       LB                 <NA>            50        Inactive
#> 1551   2021   LV       LB                  MLB            48          Active
#> 1552   2021   LV       LB                 <NA>            44        Inactive
#> 1553   2021   LV       LB                  WLB            42          Active
#> 1554   2021   LV       LB                  MLB            58          Active
#> 1555   2021   LV       LB                  MLB            52          Active
#> 1556   2021   LV       LB                  WLB             5          Active
#> 1557   2021   LV       LB                  SLB            55          Active
#> 1558   2021   LV       LB                  SLB            34          Active
#> 1559   2021   LV       LS                 <NA>            47          Active
#> 1560   2021   LV       OL                   RT            74          Active
#> 1561   2021   LV       OL                   LG            79          Active
#> 1562   2021   LV       OL                   RG             0          Active
#> 1563   2021   LV       OL                   RG            72          Active
#> 1564   2021   LV       OL                 <NA>            65          Active
#> 1565   2021   LV       OT                 <NA>            63          Active
#> 1566   2021   LV        P                 <NA>             6          Active
#> 1567   2021   LV       QB                   QB             4          Active
#> 1568   2021   LV       QB                 <NA>             3          Active
#> 1569   2021   LV       QB                   QB             8          Active
#> 1570   2021   LV       RB                   RB            28          Active
#> 1571   2021   LV       RB                 <NA>            23        Inactive
#> 1572   2021   LV       RB                   RB            30          Active
#> 1573   2021   LV       RB                   FB            36          Active
#> 1574   2021   LV       RB                   RB            31          Active
#> 1575   2021   LV        T                   RT            75          Active
#> 1576   2021   LV        T                   RT            78          Active
#> 1577   2021   LV        T                   RG            70          Active
#> 1578   2021   LV        T                   LT            74          Active
#> 1579   2021   LV       TE                   TE            82          Active
#> 1580   2021   LV       TE                   TE            83          Active
#> 1581   2021   LV       TE                 <NA>            85          Active
#> 1582   2021   LV       TE                   TE            87          Active
#> 1583   2021   LV       WR                  LWR            17          Active
#> 1584   2021   LV       WR                  SWR            15          Active
#> 1585   2021   LV       WR                 <NA>            19          Active
#> 1586   2021   LV       WR                  LWR             7          Active
#> 1587   2021   LV       WR                  SWR            13          Active
#> 1588   2021   LV       WR                  SWR             1          Active
#> 1589   2021   LV       WR                  RWR            89          Active
#> 1590   2021   LV       WR                  RWR            16          Active
#> 1591   2021  MIA        C                 <NA>             0          Active
#> 1592   2021  MIA        C                 <NA>            64          Active
#> 1593   2021  MIA       CB                 <NA>            33          Active
#> 1594   2021  MIA       CB                 <NA>             6          Active
#> 1595   2021  MIA       CB                   CB            24          Active
#> 1596   2021  MIA       CB                   CB            38          Active
#> 1597   2021  MIA       CB                   CB             9          Active
#> 1598   2021  MIA       CB                 <NA>            10          Active
#> 1599   2021  MIA       CB                   CB            40          Active
#> 1600   2021  MIA       CB                 <NA>             0          Active
#> 1601   2021  MIA       CB                   CB            25          Active
#> 1602   2021  MIA       CB                   CB            27          Active
#> 1603   2021  MIA       DB                   FS             8          Active
#> 1604   2021  MIA       DB                   SS            29          Active
#> 1605   2021  MIA       DB                 <NA>             0          Active
#> 1606   2021  MIA       DB                   FS            42          Active
#> 1607   2021  MIA       DB                   SS            21          Active
#> 1608   2021  MIA       DB                 <NA>            30          Active
#> 1609   2021  MIA       DB                 <NA>            35          Active
#> 1610   2021  MIA       DB                 <NA>            22          Active
#> 1611   2021  MIA       DB                   FS            20          Active
#> 1612   2021  MIA       DE                 LILB            41          Active
#> 1613   2021  MIA       DE                  RDE            91          Active
#> 1614   2021  MIA       DE                  RDE             0          Active
#> 1615   2021  MIA       DT                  LDE            92          Active
#> 1616   2021  MIA       DT                 <NA>            95          Active
#> 1617   2021  MIA       DT                   NT            90          Active
#> 1618   2021  MIA       DT                  RDE            94          Active
#> 1619   2021  MIA       DT                   NT            70          Active
#> 1620   2021  MIA       DT                   NT            98          Active
#> 1621   2021  MIA        G                 <NA>            69          Active
#> 1622   2021  MIA        G                   RG            65          Active
#> 1623   2021  MIA        G                   LG            66          Active
#> 1624   2021  MIA        K                   PK             7          Active
#> 1625   2021  MIA       LB                  WLB            43          Active
#> 1626   2021  MIA       LB                  SLB            47          Active
#> 1627   2021  MIA       LB                 RILB            45          Active
#> 1628   2021  MIA       LB                 <NA>            48          Active
#> 1629   2021  MIA       LB                  SLB            50          Active
#> 1630   2021  MIA       LB                 LILB            49          Active
#> 1631   2021  MIA       LB                 RILB            55          Active
#> 1632   2021  MIA       LB                 LILB            52          Active
#> 1633   2021  MIA       LB                  SLB            15          Active
#> 1634   2021  MIA       LB                  WLB            57          Active
#> 1635   2021  MIA       LS                 <NA>            44          Active
#> 1636   2021  MIA       OL                   RG            68          Active
#> 1637   2021  MIA       OL                    C            62          Active
#> 1638   2021  MIA       OL                   RT            77          Active
#> 1639   2021  MIA       OL                    C            63          Active
#> 1640   2021  MIA        P                 <NA>             5          Active
#> 1641   2021  MIA       QB                   QB            14          Active
#> 1642   2021  MIA       QB                   QB             0          Active
#> 1643   2021  MIA       QB                   QB             1          Active
#> 1644   2021  MIA       QB                 <NA>             0          Active
#> 1645   2021  MIA       RB                 <NA>            32          Active
#> 1646   2021  MIA       RB                   RB            26          Active
#> 1647   2021  MIA       RB                   RB            37          Active
#> 1648   2021  MIA       RB                   RB            31          Active
#> 1649   2021  MIA       RB                 <NA>            23          Active
#> 1650   2021  MIA       RB                 <NA>            22        Inactive
#> 1651   2021  MIA       RB                 <NA>            34          Active
#> 1652   2021  MIA       RB                 <NA>            28          Active
#> 1653   2021  MIA        T                 <NA>            75          Active
#> 1654   2021  MIA        T                   LT            76          Active
#> 1655   2021  MIA        T                   RG            78          Active
#> 1656   2021  MIA        T                 <NA>            79          Active
#> 1657   2021  MIA        T                   RT            73          Active
#> 1658   2021  MIA        T                   LT            74          Active
#> 1659   2021  MIA       TE                  RTE            82          Active
#> 1660   2021  MIA       TE                 <NA>            60          Active
#> 1661   2021  MIA       TE                 <NA>            48          Active
#> 1662   2021  MIA       TE                  LTE            81          Active
#> 1663   2021  MIA       TE                  LTE            80          Active
#> 1664   2021  MIA       TE                  RTE            88          Active
#> 1665   2021  MIA       TE                  LTE            84          Active
#> 1666   2021  MIA       WR                  SWR             2          Active
#> 1667   2021  MIA       WR                  RWR            17          Active
#> 1668   2021  MIA       WR                  LWR            86          Active
#> 1669   2021  MIA       WR                  LWR            11          Active
#> 1670   2021  MIA       WR                 <NA>             8          Active
#> 1671   2021  MIA       WR                 <NA>            85          Active
#> 1672   2021  MIA       WR                 <NA>             0          Active
#> 1673   2021  MIA       WR                  SWR             6          Active
#> 1674   2021  MIA       WR                  RWR             0          Active
#> 1675   2021  MIA       WR                 <NA>            17          Active
#> 1676   2021  MIA       WR                 <NA>             3          Active
#> 1677   2021  MIA       WR                  RWR            87          Active
#> 1678   2021  MIA       WR                  SWR            18          Active
#> 1679   2021  MIN        C                    C            56          Active
#> 1680   2021  MIN       CB                  RCB            27          Active
#> 1681   2021  MIN       CB                  RCB            39          Active
#> 1682   2021  MIN       CB                 <NA>            36          Active
#> 1683   2021  MIN       CB                 <NA>            21          Active
#> 1684   2021  MIN       CB                  LCB            20          Active
#> 1685   2021  MIN       CB                  LCB            24          Active
#> 1686   2021  MIN       CB                 <NA>             5          Active
#> 1687   2021  MIN       CB                  LCB             7          Active
#> 1688   2021  MIN       CB                  RCB            29          Active
#> 1689   2021  MIN       DB                   FS            43          Active
#> 1690   2021  MIN       DB                   FS            23          Active
#> 1691   2021  MIN       DB                   FS            46          Active
#> 1692   2021  MIN       DB                   SS            44          Active
#> 1693   2021  MIN       DB                   SS            22          Active
#> 1694   2021  MIN       DE                 <NA>            99          Active
#> 1695   2021  MIN       DE                 <NA>            95          Active
#> 1696   2021  MIN       DE                  LDE            93          Active
#> 1697   2021  MIN       DE                  LDE            93          Active
#> 1698   2021  MIN       DE                 <NA>            66          Active
#> 1699   2021  MIN       DE                  RDE            79          Active
#> 1700   2021  MIN       DE                  LDE            98          Active
#> 1701   2021  MIN       DE                 <NA>            97          Active
#> 1702   2021  MIN       DE                  RDE            73          Active
#> 1703   2021  MIN       DT                   NT            92          Active
#> 1704   2021  MIN       DT                 <NA>            76          Active
#> 1705   2021  MIN       DT                   DT            94          Active
#> 1706   2021  MIN       DT                  RDE            90          Active
#> 1707   2021  MIN       DT                   DT            50          Active
#> 1708   2021  MIN       DT                   NT            58          Active
#> 1709   2021  MIN       DT                 <NA>            66          Active
#> 1710   2021  MIN       DT                 <NA>            91          Active
#> 1711   2021  MIN       DT                   NT            96          Active
#> 1712   2021  MIN       FB                 <NA>            34          Active
#> 1713   2021  MIN       FB                   FB            30          Active
#> 1714   2021  MIN        G                   LG            51          Active
#> 1715   2021  MIN        G                   RG            74          Active
#> 1716   2021  MIN        G                 <NA>            62          Active
#> 1717   2021  MIN        G                   RG            78          Active
#> 1718   2021  MIN        G                   LG            72          Active
#> 1719   2021  MIN        G                    C            68          Active
#> 1720   2021  MIN        K                   PK             1          Active
#> 1721   2021  MIN       LB                  WLB            41          Active
#> 1722   2021  MIN       LB                  MLB            54          Active
#> 1723   2021  MIN       LB                  MLB            47          Active
#> 1724   2021  MIN       LB                  SLB            48          Active
#> 1725   2021  MIN       LB                  WLB            59          Active
#> 1726   2021  MIN       LB                 <NA>            57          Active
#> 1727   2021  MIN       LB                  SLB            55          Active
#> 1728   2021  MIN       LB                  MLB            45          Active
#> 1729   2021  MIN       LS                 <NA>            42          Active
#> 1730   2021  MIN       OL                 <NA>            52          Active
#> 1731   2021  MIN        P                 <NA>             3          Active
#> 1732   2021  MIN       QB                   QB             8          Active
#> 1733   2021  MIN       QB                   QB            14          Active
#> 1734   2021  MIN       QB                   QB            11          Active
#> 1735   2021  MIN       RB                 <NA>            36          Active
#> 1736   2021  MIN       RB                 <NA>            31          Active
#> 1737   2021  MIN       RB                   RB            33          Active
#> 1738   2021  MIN       RB                   RB            25          Active
#> 1739   2021  MIN       RB                   RB            26          Active
#> 1740   2021  MIN        T                   LT            69          Active
#> 1741   2021  MIN        T                   RT            75          Active
#> 1742   2021  MIN        T                   LT            71          Active
#> 1743   2021  MIN        T                   RT            61          Active
#> 1744   2021  MIN        T                   RT            64          Active
#> 1745   2021  MIN       TE                   TE            35          Active
#> 1746   2021  MIN       TE                   TE            89          Active
#> 1747   2021  MIN       TE                 <NA>            84          Active
#> 1748   2021  MIN       TE                 <NA>            82          Active
#> 1749   2021  MIN       TE                   TE            83          Active
#> 1750   2021  MIN       TE                 <NA>            40          Active
#> 1751   2021  MIN       WR                  LWR            15          Active
#> 1752   2021  MIN       WR                  RWR            17          Active
#> 1753   2021  MIN       WR                 <NA>            19          Active
#> 1754   2021  MIN       WR                  LWR            87          Active
#> 1755   2021  MIN       WR                  SWR             9          Active
#> 1756   2021  MIN       WR                 <NA>            81          Active
#> 1757   2021  MIN       WR                  SWR            12          Active
#> 1758   2021  MIN       WR                  RWR            85          Active
#> 1759   2021  MIN       WR                  LWR            18          Active
#> 1760   2021   NE        C                    C            60          Active
#> 1761   2021   NE       CB                 <NA>            13          Active
#> 1762   2021   NE       CB                   CB            33          Active
#> 1763   2021   NE       CB                  RCB             2          Active
#> 1764   2021   NE       CB                  LCB            26          Active
#> 1765   2021   NE       CB                 <NA>            35          Active
#> 1766   2021   NE       DB                   SS            29          Active
#> 1767   2021   NE       DB                   CB            23          Active
#> 1768   2021   NE       DB                  LCB            41          Active
#> 1769   2021   NE       DB                   SS            22          Active
#> 1770   2021   NE       DB                 <NA>            31          Active
#> 1771   2021   NE       DB                   SS            32          Active
#> 1772   2021   NE       DB                   FS            21          Active
#> 1773   2021   NE       DB                 <NA>            24          Active
#> 1774   2021   NE       DB                  LCB            27          Active
#> 1775   2021   NE       DB                 <NA>            30          Active
#> 1776   2021   NE       DE                  LDE            91          Active
#> 1777   2021   NE       DE                  RDE            50          Active
#> 1778   2021   NE       DE                 <NA>            94          Active
#> 1779   2021   NE       DT                 <NA>            95          Active
#> 1780   2021   NE       DT                   DL            90          Active
#> 1781   2021   NE       DT                  LDE            98          Active
#> 1782   2021   NE       DT                   DL             0          Active
#> 1783   2021   NE       DT                  RDE            93          Active
#> 1784   2021   NE       DT                   DL            92          Active
#> 1785   2021   NE       DT                 <NA>            99          Active
#> 1786   2021   NE       FB                   FB            47          Active
#> 1787   2021   NE        G                   RG            70          Active
#> 1788   2021   NE        K                   PK             6          Active
#> 1789   2021   NE        K                   PK             3          Active
#> 1790   2021   NE       LB                 <NA>            59          Active
#> 1791   2021   NE       LB                 <NA>            59          Active
#> 1792   2021   NE       LB                 <NA>            59          Active
#> 1793   2021   NE       LB                   LB            36          Active
#> 1794   2021   NE       LB                   LB            55          Active
#> 1795   2021   NE       LB                   LB            53          Active
#> 1796   2021   NE       LB                 <NA>            45          Active
#> 1797   2021   NE       LB                   LB            48          Active
#> 1798   2021   NE       LB                 <NA>            46          Active
#> 1799   2021   NE       LB                   LB            58          Active
#> 1800   2021   NE       LB                 <NA>            52          Active
#> 1801   2021   NE       LB                   LB             8          Active
#> 1802   2021   NE       LB                   LB            54          Active
#> 1803   2021   NE       LB                 <NA>            51          Active
#> 1804   2021   NE       LB                   LB             9          Active
#> 1805   2021   NE       LS                 <NA>            49          Active
#> 1806   2021   NE       OG                 <NA>            64        Inactive
#> 1807   2021   NE       OL                   RT            75          Active
#> 1808   2021   NE       OL                 <NA>            65          Active
#> 1809   2021   NE       OL                   RG            69          Active
#> 1810   2021   NE       OL                   LT            72          Active
#> 1811   2021   NE       OL                   LG            71          Active
#> 1812   2021   NE       OL                   RT            77          Active
#> 1813   2021   NE       OL                 <NA>             0          Active
#> 1814   2021   NE       OL                    C            67          Active
#> 1815   2021   NE       OL                   RG             0          Active
#> 1816   2021   NE       OL                   LT            76          Active
#> 1817   2021   NE        P                 <NA>             7          Active
#> 1818   2021   NE       QB                   QB             5          Active
#> 1819   2021   NE       QB                   QB            10          Active
#> 1820   2021   NE       QB                   QB             4          Active
#> 1821   2021   NE       RB                 <NA>            34          Active
#> 1822   2021   NE       RB                 <NA>            28          Active
#> 1823   2021   NE       RB                   RB            37          Active
#> 1824   2021   NE       RB                   RB            38          Active
#> 1825   2021   NE       RB                 <NA>            25          Active
#> 1826   2021   NE       RB                   RB            42          Active
#> 1827   2021   NE        T                 <NA>            68          Active
#> 1828   2021   NE       TE                   TE            85          Active
#> 1829   2021   NE       TE                 <NA>            88          Active
#> 1830   2021   NE       TE                 <NA>            44          Active
#> 1831   2021   NE       TE                   TE            81          Active
#> 1832   2021   NE       TE                 <NA>            83          Active
#> 1833   2021   NE       TE                   TE            86          Active
#> 1834   2021   NE       WR                  RWR            84          Active
#> 1835   2021   NE       WR                 <NA>            87          Active
#> 1836   2021   NE       WR                 <NA>             0          Active
#> 1837   2021   NE       WR                  RWR            16          Active
#> 1838   2021   NE       WR                  LWR            80          Active
#> 1839   2021   NE       WR                 <NA>            17          Active
#> 1840   2021   NE       WR                  LWR            15          Active
#> 1841   2021   NE       WR                  LWR            18          Active
#> 1842   2021   NE       WR                 <NA>            88          Active
#> 1843   2021   NE       WR                  RWR             1          Active
#> 1844   2021   NO        C                 <NA>            64          Active
#> 1845   2021   NO        C                    C            68          Active
#> 1846   2021   NO       CB                   FS            26          Active
#> 1847   2021   NO       CB                  RCB            29          Active
#> 1848   2021   NO       CB                 <NA>            35          Active
#> 1849   2021   NO       CB                  LCB            37          Active
#> 1850   2021   NO       CB                 <NA>            32          Active
#> 1851   2021   NO       CB                  LCB            21          Active
#> 1852   2021   NO       CB                  RCB            23          Active
#> 1853   2021   NO       CB                  LCB            25          Active
#> 1854   2021   NO       DB                   SS            48          Active
#> 1855   2021   NO       DB                   FS            38          Active
#> 1856   2021   NO       DB                 <NA>            36        Inactive
#> 1857   2021   NO       DB                   FS            43          Active
#> 1858   2021   NO       DB                  RCB            35          Active
#> 1859   2021   NO       DB                   SS            22          Active
#> 1860   2021   NO       DB                 <NA>            44        Inactive
#> 1861   2021   NO       DE                 <NA>            98        Inactive
#> 1862   2021   NO       DE                  LDE            94          Active
#> 1863   2021   NO       DE                  RDE            92          Active
#> 1864   2021   NO       DE                  RDE            96          Active
#> 1865   2021   NO       DE                  RDE            57          Active
#> 1866   2021   NO       DE                 <NA>            90        Inactive
#> 1867   2021   NO       DT                  RDT            97          Active
#> 1868   2021   NO       DT                  RDT            99          Active
#> 1869   2021   NO       DT                  RDT            52          Active
#> 1870   2021   NO       DT                 <NA>            77        Inactive
#> 1871   2021   NO       DT                  LDT            95        Inactive
#> 1872   2021   NO       DT                 <NA>            91          Active
#> 1873   2021   NO       DT                  LDT            93          Active
#> 1874   2021   NO       DT                  LDT            70          Active
#> 1875   2021   NO       FB                   FB            46          Active
#> 1876   2021   NO        K                 <NA>             3          Active
#> 1877   2021   NO        K                   PK            19          Active
#> 1878   2021   NO       LB                 <NA>            42          Active
#> 1879   2021   NO       LB                  MLB            56          Active
#> 1880   2021   NO       LB                  WLB            53          Active
#> 1881   2021   NO       LB                  WLB            20          Active
#> 1882   2021   NO       LB                  SLB            55          Active
#> 1883   2021   NO       LB                  WLB             5          Active
#> 1884   2021   NO       LB                 <NA>            50          Active
#> 1885   2021   NO       LB                 <NA>            52        Inactive
#> 1886   2021   NO       LB                  LDE            56          Active
#> 1887   2021   NO       LS                 <NA>            49          Active
#> 1888   2021   NO       OL                 <NA>            73        Inactive
#> 1889   2021   NO       OL                   LG            76          Active
#> 1890   2021   NO       OL                 <NA>             0        Inactive
#> 1891   2021   NO       OL                 <NA>            75        Inactive
#> 1892   2021   NO       OL                   RG            51          Active
#> 1893   2021   NO       OL                   LT            74          Active
#> 1894   2021   NO       OL                    C            78          Active
#> 1895   2021   NO       OL                 <NA>            66          Active
#> 1896   2021   NO       OL                   LT            65          Active
#> 1897   2021   NO       OT                   RT            63          Active
#> 1898   2021   NO       OT                   RT            79          Active
#> 1899   2021   NO        P                 <NA>             4          Active
#> 1900   2021   NO       QB                 <NA>             2        Inactive
#> 1901   2021   NO       QB                 <NA>             6          Active
#> 1902   2021   NO       QB                   QB            16          Active
#> 1903   2021   NO       QB                   QB             7          Active
#> 1904   2021   NO       QB                   QB            15          Active
#> 1905   2021   NO       RB                   RB            14          Active
#> 1906   2021   NO       RB                 <NA>            34          Active
#> 1907   2021   NO       RB                   RB            41          Active
#> 1908   2021   NO       RB                   RB            24          Active
#> 1909   2021   NO       RB                 <NA>             0          Active
#> 1910   2021   NO       SS                   SS            27          Active
#> 1911   2021   NO        T                   RT            79          Active
#> 1912   2021   NO        T                   RG            77          Active
#> 1913   2021   NO        T                 <NA>            67        Inactive
#> 1914   2021   NO        T                   RT            71          Active
#> 1915   2021   NO        T                   LT            72          Active
#> 1916   2021   NO       TE                   TE            82          Active
#> 1917   2021   NO       TE                   TE            81          Active
#> 1918   2021   NO       TE                 <NA>            89        Inactive
#> 1919   2021   NO       TE                   TE            83          Active
#> 1920   2021   NO       TE                 <NA>            86          Active
#> 1921   2021   NO       TE                 <NA>            45          Active
#> 1922   2021   NO       WR                 <NA>            13          Active
#> 1923   2021   NO       WR                 <NA>             0          Active
#> 1924   2021   NO       WR                 <NA>            18          Active
#> 1925   2021   NO       WR                  RWR            88          Active
#> 1926   2021   NO       WR                  RWR            10          Active
#> 1927   2021   NO       WR                 <NA>            17          Active
#> 1928   2021   NO       WR                  RWR            11          Active
#> 1929   2021   NO       WR                 <NA>            86          Active
#> 1930   2021   NO       WR                 <NA>            17          Active
#> 1931   2021   NO       WR                  LWR            84          Active
#> 1932   2021   NO       WR                  LWR            12          Active
#> 1933   2021   NO       WR                  LWR             1          Active
#> 1934   2021   NO       WR                 <NA>            80          Active
#> 1935   2021   NO     <NA>                 <NA>             0          Active
#> 1936   2021  NYG        C                 <NA>            65        Inactive
#> 1937   2021  NYG        C                    C            67          Active
#> 1938   2021  NYG       CB                  LCB            28        Inactive
#> 1939   2021  NYG       CB                 <NA>            25        Inactive
#> 1940   2021  NYG       CB                  RCB            34          Active
#> 1941   2021  NYG       CB                  LCB            33          Active
#> 1942   2021  NYG       CB                 <NA>            30        Inactive
#> 1943   2021  NYG       CB                  LCB            24          Active
#> 1944   2021  NYG       DB                 <NA>            28        Inactive
#> 1945   2021  NYG       DB                 <NA>            39        Inactive
#> 1946   2021  NYG       DB                 <NA>            21        Inactive
#> 1947   2021  NYG       DB                   FS            20        Inactive
#> 1948   2021  NYG       DB                   SS            38          Active
#> 1949   2021  NYG       DB                 <NA>            43        Inactive
#> 1950   2021  NYG       DB                   FS            27          Active
#> 1951   2021  NYG       DB                   FS            23          Active
#> 1952   2021  NYG       DB                  RCB            31        Inactive
#> 1953   2021  NYG       DB                  RCB            22        Inactive
#> 1954   2021  NYG       DB                   SS            29          Active
#> 1955   2021  NYG       DE                   DT            99          Active
#> 1956   2021  NYG       DE                   DT            91          Active
#> 1957   2021  NYG       DE                   DE            57          Active
#> 1958   2021  NYG       DT                 <NA>            90          Active
#> 1959   2021  NYG       DT                   NT            98          Active
#> 1960   2021  NYG       DT                   DT            96          Active
#> 1961   2021  NYG       DT                   DE            97          Active
#> 1962   2021  NYG       DT                   NT            75          Active
#> 1963   2021  NYG       FB                   FB            36          Active
#> 1964   2021  NYG        G                   RG            68          Active
#> 1965   2021  NYG        G                   LG            63          Active
#> 1966   2021  NYG        G                   RG            71          Active
#> 1967   2021  NYG        K                   PK             5          Active
#> 1968   2021  NYG       LB                 <NA>            94        Inactive
#> 1969   2021  NYG       LB                 RILB            49          Active
#> 1970   2021  NYG       LB                  SAM            47          Active
#> 1971   2021  NYG       LB                  OLB            45          Active
#> 1972   2021  NYG       LB                  SAM            59          Active
#> 1973   2021  NYG       LB                  WLB            48          Active
#> 1974   2021  NYG       LB                   DE            95          Active
#> 1975   2021  NYG       LB                  OLB            51          Active
#> 1976   2021  NYG       LB                 RILB            55          Active
#> 1977   2021  NYG       LB                 <NA>            52        Inactive
#> 1978   2021  NYG       LB                  OLB            53          Active
#> 1979   2021  NYG       LB                 <NA>            46        Inactive
#> 1980   2021  NYG       LB                 <NA>            44        Inactive
#> 1981   2021  NYG       LB                 <NA>            54        Inactive
#> 1982   2021  NYG       LB                 <NA>            35        Inactive
#> 1983   2021  NYG       LS                 <NA>            58          Active
#> 1984   2021  NYG       OL                 <NA>            61          Active
#> 1985   2021  NYG       OL                 <NA>            66        Inactive
#> 1986   2021  NYG       OL                 <NA>            60        Inactive
#> 1987   2021  NYG       OL                 <NA>            64        Inactive
#> 1988   2021  NYG       OL                    C            69          Active
#> 1989   2021  NYG        P                 <NA>             9          Active
#> 1990   2021  NYG        P                 <NA>             6          Active
#> 1991   2021  NYG       QB                 <NA>             8        Inactive
#> 1992   2021  NYG       QB                 <NA>             6          Active
#> 1993   2021  NYG       QB                   QB            17          Active
#> 1994   2021  NYG       QB                   QB             5          Active
#> 1995   2021  NYG       QB                   QB             2          Active
#> 1996   2021  NYG       QB                 <NA>             0          Active
#> 1997   2021  NYG       RB                   RB            28          Active
#> 1998   2021  NYG       RB                   FB            39          Active
#> 1999   2021  NYG       RB                 <NA>            34          Active
#> 2000   2021  NYG       RB                   RB            25        Inactive
#> 2001   2021  NYG       RB                 <NA>            37        Inactive
#> 2002   2021  NYG       RB                   RB            26          Active
#> 2003   2021  NYG       RB                   RB             0          Active
#> 2004   2021  NYG        T                 <NA>            74        Inactive
#> 2005   2021  NYG        T                   LT            78          Active
#> 2006   2021  NYG        T                   LT            79          Active
#> 2007   2021  NYG        T                   RT            62          Active
#> 2008   2021  NYG        T                   RT            76          Active
#> 2009   2021  NYG       TE                  RTE            80          Active
#> 2010   2021  NYG       TE                  LTE            88          Active
#> 2011   2021  NYG       TE                  LTE            49          Active
#> 2012   2021  NYG       TE                 <NA>            82        Inactive
#> 2013   2021  NYG       TE                  RTE             0          Active
#> 2014   2021  NYG       TE                 <NA>            44        Inactive
#> 2015   2021  NYG       TE                 <NA>            85        Inactive
#> 2016   2021  NYG       TE                   TE             0          Active
#> 2017   2021  NYG       WR                 <NA>             6          Active
#> 2018   2021  NYG       WR                 <NA>            13          Active
#> 2019   2021  NYG       WR                 <NA>            83          Active
#> 2020   2021  NYG       WR                  RWR            89          Active
#> 2021   2021  NYG       WR                 <NA>            18        Inactive
#> 2022   2021  NYG       WR                 <NA>             0        Inactive
#> 2023   2021  NYG       WR                  RWR             0          Active
#> 2024   2021  NYG       WR                  LWR            86          Active
#> 2025   2021  NYG       WR                 <NA>            81          Active
#> 2026   2021  NYG       WR                 <NA>            84          Active
#> 2027   2021  NYG       WR                 <NA>            13          Active
#> 2028   2021  NYG       WR                 <NA>             3        Inactive
#> 2029   2021  NYG       WR                  RWR            12        Inactive
#> 2030   2021  NYG       WR                  LWR            19          Active
#> 2031   2021  NYG       WR                  LWR            15          Active
#> 2032   2021  NYJ       CB                 <NA>            33          Active
#> 2033   2021  NYJ       CB                   CB            37          Active
#> 2034   2021  NYJ       CB                 <NA>             4        Inactive
#> 2035   2021  NYJ       CB                   CB            41          Active
#> 2036   2021  NYJ       CB                   NB            30          Active
#> 2037   2021  NYJ       CB                   CB            26          Active
#> 2038   2021  NYJ       CB                   NB            40          Active
#> 2039   2021  NYJ       CB                 <NA>            29          Active
#> 2040   2021  NYJ       CB                   CB            34          Active
#> 2041   2021  NYJ       DB                   SS             0          Active
#> 2042   2021  NYJ       DB                   FS            39          Active
#> 2043   2021  NYJ       DB                 <NA>            29          Active
#> 2044   2021  NYJ       DB                   CB            33          Active
#> 2045   2021  NYJ       DB                 <NA>            20          Active
#> 2046   2021  NYJ       DB                   FS            21          Active
#> 2047   2021  NYJ       DB                   SS             1          Active
#> 2048   2021  NYJ       DB                   CB            27          Active
#> 2049   2021  NYJ       DE                 <NA>            58          Active
#> 2050   2021  NYJ       DE                 <NA>            61          Active
#> 2051   2021  NYJ       DE                   DL            51          Active
#> 2052   2021  NYJ       DE                   DL            92          Active
#> 2053   2021  NYJ       DE                 <NA>            47          Active
#> 2054   2021  NYJ       DE                   LB            55          Active
#> 2055   2021  NYJ       DE                   DL             0          Active
#> 2056   2021  NYJ       DE                 <NA>            54          Active
#> 2057   2021  NYJ       DT                   DL            94          Active
#> 2058   2021  NYJ       DT                   DL            93          Active
#> 2059   2021  NYJ       DT                   DL            91          Active
#> 2060   2021  NYJ       DT                   DL            79          Active
#> 2061   2021  NYJ       DT                   DL            95          Active
#> 2062   2021  NYJ       DT                   DL            96          Active
#> 2063   2021  NYJ       DT                   DL            98          Active
#> 2064   2021  NYJ       DT                   DL            97          Active
#> 2065   2021  NYJ       FB                 <NA>            48          Active
#> 2066   2021  NYJ        K                   PK             6          Active
#> 2067   2021  NYJ        K                   PK            15          Active
#> 2068   2021  NYJ       LB                   LB            45          Active
#> 2069   2021  NYJ       LB                   LB            57          Active
#> 2070   2021  NYJ       LB                   LB            43          Active
#> 2071   2021  NYJ       LB                   FS             9          Active
#> 2072   2021  NYJ       LB                 <NA>            53          Active
#> 2073   2021  NYJ       LB                   LB            56          Active
#> 2074   2021  NYJ       LB                   LB            52          Active
#> 2075   2021  NYJ       LB                 <NA>            51          Active
#> 2076   2021  NYJ       LB                 <NA>            44          Active
#> 2077   2021  NYJ       LS                 <NA>            42          Active
#> 2078   2021  NYJ       OG                   RG            62          Active
#> 2079   2021  NYJ       OL                 <NA>            68          Active
#> 2080   2021  NYJ       OL                   LT            63          Active
#> 2081   2021  NYJ       OL                   LG            67          Active
#> 2082   2021  NYJ       OL                    C            60          Active
#> 2083   2021  NYJ       OL                   LG            75          Active
#> 2084   2021  NYJ       OL                   RG            72          Active
#> 2085   2021  NYJ       OL                   LG            65          Active
#> 2086   2021  NYJ       OL                 <NA>            69          Active
#> 2087   2021  NYJ       OL                   RT            78          Active
#> 2088   2021  NYJ       OL                 <NA>            71          Active
#> 2089   2021  NYJ       OL                    C            66          Active
#> 2090   2021  NYJ       OT                 <NA>            72        Inactive
#> 2091   2021  NYJ       OT                 <NA>            76          Active
#> 2092   2021  NYJ       OT                 <NA>            77          Active
#> 2093   2021  NYJ       OT                   LT            70          Active
#> 2094   2021  NYJ        P                 <NA>             7          Active
#> 2095   2021  NYJ       QB                   QB             5          Active
#> 2096   2021  NYJ       QB                   QB            19          Active
#> 2097   2021  NYJ       QB                   QB             2          Active
#> 2098   2021  NYJ       RB                   RB            25          Active
#> 2099   2021  NYJ       RB                 <NA>            32          Active
#> 2100   2021  NYJ       RB                   RB            22          Active
#> 2101   2021  NYJ       RB                 <NA>            36          Active
#> 2102   2021  NYJ       RB                   RB            23          Active
#> 2103   2021  NYJ        T                   RT            68          Active
#> 2104   2021  NYJ       TE                   TE            44          Active
#> 2105   2021  NYJ       TE                 <NA>            89          Active
#> 2106   2021  NYJ       TE                   TE            81          Active
#> 2107   2021  NYJ       TE                 <NA>            85          Active
#> 2108   2021  NYJ       TE                 <NA>            87        Inactive
#> 2109   2021  NYJ       TE                 <NA>            86          Active
#> 2110   2021  NYJ       TE                   TE            83          Active
#> 2111   2021  NYJ       WR                 <NA>            84          Active
#> 2112   2021  NYJ       WR                  RWR            82          Active
#> 2113   2021  NYJ       WR                   WR            88          Active
#> 2114   2021  NYJ       WR                 <NA>            10          Active
#> 2115   2021  NYJ       WR                   WR            14          Active
#> 2116   2021  NYJ       WR                  LWR            16          Active
#> 2117   2021  NYJ       WR                  LWR            11          Active
#> 2118   2021  NYJ       WR                  LWR            13          Active
#> 2119   2021  NYJ       WR                 <NA>             8          Active
#> 2120   2021  NYJ       WR                  RWR             0          Active
#> 2121   2021  NYJ       WR                  SWR            16          Active
#> 2122   2021  NYJ       WR                  RWR             3          Active
#> 2123   2021  PHI        C                    C            62          Active
#> 2124   2021  PHI       CB                  LCB            34          Active
#> 2125   2021  PHI       CB                  LCB             2          Active
#> 2126   2021  PHI       CB                 <NA>            37          Active
#> 2127   2021  PHI       CB                   NB            33          Active
#> 2128   2021  PHI       CB                  LCB            27          Active
#> 2129   2021  PHI       CB                  RCB             3          Active
#> 2130   2021  PHI       CB                  RCB            31          Active
#> 2131   2021  PHI       CB                   NB            36          Active
#> 2132   2021  PHI       CB                   NB            29          Active
#> 2133   2021  PHI       DB                   SS            21          Active
#> 2134   2021  PHI       DB                   FS            22          Active
#> 2135   2021  PHI       DB                 <NA>            41          Active
#> 2136   2021  PHI       DB                   FS            28          Active
#> 2137   2021  PHI       DB                   SS            23          Active
#> 2138   2021  PHI       DB                   SS            42          Active
#> 2139   2021  PHI       DE                  LDE            59          Active
#> 2140   2021  PHI       DE                  LDE            94          Active
#> 2141   2021  PHI       DE                 <NA>            55          Active
#> 2142   2021  PHI       DE                  RDE            75          Active
#> 2143   2021  PHI       DE                  RDE            66          Active
#> 2144   2021  PHI       DE                  LDE            90          Active
#> 2145   2021  PHI       DE                  RDE            96          Active
#> 2146   2021  PHI       DT                  RDT            73          Active
#> 2147   2021  PHI       DT                 <NA>             0          Active
#> 2148   2021  PHI       DT                  LDT            91          Active
#> 2149   2021  PHI       DT                  RDT            97          Active
#> 2150   2021  PHI       DT                 <NA>             0          Active
#> 2151   2021  PHI       DT                  LDT            95          Active
#> 2152   2021  PHI       DT                  LDT            98          Active
#> 2153   2021  PHI       DT                  RDT            93          Active
#> 2154   2021  PHI        G                 <NA>            56          Active
#> 2155   2021  PHI        G                 <NA>            79        Inactive
#> 2156   2021  PHI        G                   RG            76          Active
#> 2157   2021  PHI        G                   RG            67          Active
#> 2158   2021  PHI        G                   LG            78          Active
#> 2159   2021  PHI        K                   PK             4          Active
#> 2160   2021  PHI       LB                  SAM            58          Active
#> 2161   2021  PHI       LB                 MIKE            57          Active
#> 2162   2021  PHI       LB                 WILL            54          Active
#> 2163   2021  PHI       LB                  SAM            53          Active
#> 2164   2021  PHI       LB                 WILL            49          Active
#> 2165   2021  PHI       LB                 <NA>            52          Active
#> 2166   2021  PHI       LB                 <NA>            30          Active
#> 2167   2021  PHI       LB                  SAM            48          Active
#> 2168   2021  PHI       LS                 <NA>            45          Active
#> 2169   2021  PHI       OL                   LG            69          Active
#> 2170   2021  PHI       OL                 <NA>            64          Active
#> 2171   2021  PHI       OL                   RG            72          Active
#> 2172   2021  PHI        P                 <NA>             8          Active
#> 2173   2021  PHI       QB                   QB             1          Active
#> 2174   2021  PHI       QB                   QB             7          Active
#> 2175   2021  PHI       QB                   QB            10          Active
#> 2176   2021  PHI       RB                   RB            24          Active
#> 2177   2021  PHI       RB                 <NA>            14          Active
#> 2178   2021  PHI       RB                   RB            26          Active
#> 2179   2021  PHI       RB                   RB            35          Active
#> 2180   2021  PHI       RB                 <NA>            32          Active
#> 2181   2021  PHI        T                   RT            65          Active
#> 2182   2021  PHI        T                   RT            74          Active
#> 2183   2021  PHI        T                   LT            68          Active
#> 2184   2021  PHI        T                 <NA>            63          Active
#> 2185   2021  PHI        T                   LT            77          Active
#> 2186   2021  PHI       TE                   TE            89          Active
#> 2187   2021  PHI       TE                 <NA>            80          Active
#> 2188   2021  PHI       TE                 <NA>            81          Active
#> 2189   2021  PHI       TE                   TE            88          Active
#> 2190   2021  PHI       TE                 <NA>            83          Active
#> 2191   2021  PHI       TE                   TE            81          Active
#> 2192   2021  PHI       WR                  LWR            84          Active
#> 2193   2021  PHI       WR                  SWR            18          Active
#> 2194   2021  PHI       WR                  LWR            16          Active
#> 2195   2021  PHI       WR                  SWR            85          Active
#> 2196   2021  PHI       WR                 <NA>            19          Active
#> 2197   2021  PHI       WR                  RWR             0          Active
#> 2198   2021  PHI       WR                  RWR             6          Active
#> 2199   2021  PIT        C                    C            53          Active
#> 2200   2021  PIT        C                    C            60          Active
#> 2201   2021  PIT       CB                  LCB            25          Active
#> 2202   2021  PIT       CB                   NB            31          Active
#> 2203   2021  PIT       CB                  RCB            20          Active
#> 2204   2021  PIT       CB                  LCB            23          Active
#> 2205   2021  PIT       CB                 <NA>            30          Active
#> 2206   2021  PIT       CB                  RCB            35          Active
#> 2207   2021  PIT       CB                  LCB            42          Active
#> 2208   2021  PIT       DB                   SS            28          Active
#> 2209   2021  PIT       DB                   NB            21          Active
#> 2210   2021  PIT       DB                   SS            34          Active
#> 2211   2021  PIT       DB                   SS            26          Active
#> 2212   2021  PIT       DB                   FS            39          Active
#> 2213   2021  PIT       DB                 <NA>             8          Active
#> 2214   2021  PIT       DB                  RCB            40          Active
#> 2215   2021  PIT       DE                 ROLB            98          Active
#> 2216   2021  PIT       DE                   NT            99          Active
#> 2217   2021  PIT       DE                 <NA>            40          Active
#> 2218   2021  PIT       DE                   DT            92          Active
#> 2219   2021  PIT       DE                 <NA>            94          Active
#> 2220   2021  PIT       DE                 <NA>            91          Active
#> 2221   2021  PIT       DT                   DE            95          Active
#> 2222   2021  PIT       DT                   DT            97          Active
#> 2223   2021  PIT       DT                   DT            73          Active
#> 2224   2021  PIT       DT                 <NA>            93          Active
#> 2225   2021  PIT       DT                   NT            57          Active
#> 2226   2021  PIT       DT                 <NA>            61          Active
#> 2227   2021  PIT       DT                 <NA>            68          Active
#> 2228   2021  PIT       FB                   FB            44          Active
#> 2229   2021  PIT        G                   LG            62          Active
#> 2230   2021  PIT        G                   RG            51          Active
#> 2231   2021  PIT        G                   RG            64          Active
#> 2232   2021  PIT        K                   PK             9          Active
#> 2233   2021  PIT        K                   PK            16          Active
#> 2234   2021  PIT       LB                 RILB            93          Active
#> 2235   2021  PIT       LB                   DE            50          Active
#> 2236   2021  PIT       LB                 LOLB            38          Active
#> 2237   2021  PIT       LB                 <NA>            45          Active
#> 2238   2021  PIT       LB                 RILB            41          Active
#> 2239   2021  PIT       LB                 LILB            30          Active
#> 2240   2021  PIT       LB                 LILB            55          Active
#> 2241   2021  PIT       LB                 LOLB            90          Active
#> 2242   2021  PIT       LB                 ROLB            48          Active
#> 2243   2021  PIT       LB                 ROLB            56          Active
#> 2244   2021  PIT       LB                 RILB            27          Active
#> 2245   2021  PIT       LB                 LILB            54          Active
#> 2246   2021  PIT       LS                 <NA>             0          Active
#> 2247   2021  PIT       LS                 <NA>            46          Active
#> 2248   2021  PIT       OL                 <NA>            69          Active
#> 2249   2021  PIT       OL                 <NA>            67          Active
#> 2250   2021  PIT       OL                   RT            76          Active
#> 2251   2021  PIT       OT                   LT            65          Active
#> 2252   2021  PIT       OT                   LG            77          Active
#> 2253   2021  PIT        P                 <NA>            16          Active
#> 2254   2021  PIT        P                 <NA>             6          Active
#> 2255   2021  PIT       QB                 <NA>             5          Active
#> 2256   2021  PIT       QB                   QB             7          Active
#> 2257   2021  PIT       QB                   QB             2          Active
#> 2258   2021  PIT       QB                   QB             3          Active
#> 2259   2021  PIT       QB                 <NA>             0          Active
#> 2260   2021  PIT       RB                 <NA>            26          Active
#> 2261   2021  PIT       RB                   RB            24          Active
#> 2262   2021  PIT       RB                   FB            33          Active
#> 2263   2021  PIT       RB                   RB            29          Active
#> 2264   2021  PIT       RB                   RB            22          Active
#> 2265   2021  PIT        T                   RT            72          Active
#> 2266   2021  PIT        T                 <NA>            74          Active
#> 2267   2021  PIT        T                   RT            71          Active
#> 2268   2021  PIT       TE                 <NA>            89          Active
#> 2269   2021  PIT       TE                 <NA>            85        Inactive
#> 2270   2021  PIT       TE                   TE            88          Active
#> 2271   2021  PIT       TE                   TE            87          Active
#> 2272   2021  PIT       TE                   TE            81          Active
#> 2273   2021  PIT       TE                   TE            49          Active
#> 2274   2021  PIT       WR                  RWR            11          Active
#> 2275   2021  PIT       WR                  SWR            18          Active
#> 2276   2021  PIT       WR                 <NA>            84          Active
#> 2277   2021  PIT       WR                  SWR            13          Active
#> 2278   2021  PIT       WR                 <NA>            15          Active
#> 2279   2021  PIT       WR                  RWR            82          Active
#> 2280   2021  PIT       WR                  LWR            14          Active
#> 2281   2021  PIT       WR                 <NA>            17          Active
#> 2282   2021  PIT       WR                  LWR            19          Active
#> 2283   2021  PIT       WR                  LWR            80          Active
#> 2284   2021  SEA        C                   RG            64          Active
#> 2285   2021  SEA       CB                 <NA>            38        Inactive
#> 2286   2021  SEA       CB                  RCB            23          Active
#> 2287   2021  SEA       CB                  LCB            29          Active
#> 2288   2021  SEA       CB                  RCB            30          Active
#> 2289   2021  SEA       CB                  LCB             2          Active
#> 2290   2021  SEA       CB                 <NA>            22        Inactive
#> 2291   2021  SEA       DB                 <NA>            27        Inactive
#> 2292   2021  SEA       DB                   FS            39        Inactive
#> 2293   2021  SEA       DB                   FS             6          Active
#> 2294   2021  SEA       DB                  RCB            28          Active
#> 2295   2021  SEA       DB                  LCB            36          Active
#> 2296   2021  SEA       DB                 <NA>            42          Active
#> 2297   2021  SEA       DE                 <NA>            48        Inactive
#> 2298   2021  SEA       DE                 ROLB            52          Active
#> 2299   2021  SEA       DE                 ROLB            98          Active
#> 2300   2021  SEA       DE                  LEO            94          Active
#> 2301   2021  SEA       DE                  LDE            91          Active
#> 2302   2021  SEA       DE                  LEO            10          Active
#> 2303   2021  SEA       DE                  LDE            51          Active
#> 2304   2021  SEA       DL                  LDE             8          Active
#> 2305   2021  SEA       DT                   DT            99          Active
#> 2306   2021  SEA       DT                   DT            67          Active
#> 2307   2021  SEA       DT                   NT            90          Active
#> 2308   2021  SEA       DT                   NT            62          Active
#> 2309   2021  SEA       DT                 <NA>            79          Active
#> 2310   2021  SEA       DT                   DT            92          Active
#> 2311   2021  SEA       DT                   NT            97          Active
#> 2312   2021  SEA       FB                  MLB            44          Active
#> 2313   2021  SEA        G                   LG            68          Active
#> 2314   2021  SEA        G                   RG            66          Active
#> 2315   2021  SEA        K                   PK             5          Active
#> 2316   2021  SEA       LB                 <NA>            55        Inactive
#> 2317   2021  SEA       LB                  SLB            56          Active
#> 2318   2021  SEA       LB                  SLB            57          Active
#> 2319   2021  SEA       LB                 ROLB            47          Active
#> 2320   2021  SEA       LB                 <NA>            43          Active
#> 2321   2021  SEA       LB                  LEO            58          Active
#> 2322   2021  SEA       LB                  MLB            54          Active
#> 2323   2021  SEA       LB                 <NA>            59        Inactive
#> 2324   2021  SEA       LB                 <NA>            58          Active
#> 2325   2021  SEA       LB                 <NA>            48          Active
#> 2326   2021  SEA       LB                 <NA>             0          Active
#> 2327   2021  SEA       LS                 <NA>            69          Active
#> 2328   2021  SEA       OG                   LG            60          Active
#> 2329   2021  SEA       OG                   RT            62          Active
#> 2330   2021  SEA       OL                    C            77          Active
#> 2331   2021  SEA       OL                    C            61          Active
#> 2332   2021  SEA       OT                   RT            75          Active
#> 2333   2021  SEA        P                 <NA>             4          Active
#> 2334   2021  SEA       QB                 <NA>             0          Active
#> 2335   2021  SEA       QB                   QB             7          Active
#> 2336   2021  SEA       QB                   QB            17          Active
#> 2337   2021  SEA       QB                   QB             3          Active
#> 2338   2021  SEA       RB                   RB            20          Active
#> 2339   2021  SEA       RB                 <NA>            41        Inactive
#> 2340   2021  SEA       RB                 <NA>             0          Active
#> 2341   2021  SEA       RB                 <NA>            21        Inactive
#> 2342   2021  SEA       RB                   RB            31          Active
#> 2343   2021  SEA       RB                 <NA>            34          Active
#> 2344   2021  SEA       RB                   RB            25          Active
#> 2345   2021  SEA       RB                 <NA>            32        Inactive
#> 2346   2021  SEA       SS                   SS            26          Active
#> 2347   2021  SEA       SS                 <NA>            33        Inactive
#> 2348   2021  SEA        T                   LT            73          Active
#> 2349   2021  SEA        T                   LT            78          Active
#> 2350   2021  SEA        T                   LT            76          Active
#> 2351   2021  SEA        T                 <NA>            72        Inactive
#> 2352   2021  SEA        T                   RT            74          Active
#> 2353   2021  SEA       TE                   TE            81          Active
#> 2354   2021  SEA       TE                 <NA>            85          Active
#> 2355   2021  SEA       TE                   TE            84          Active
#> 2356   2021  SEA       TE                   TE            89        Inactive
#> 2357   2021  SEA       WR                  RWR            16          Active
#> 2358   2021  SEA       WR                 <NA>            15        Inactive
#> 2359   2021  SEA       WR                  LWR            13          Active
#> 2360   2021  SEA       WR                  SWR            87          Active
#> 2361   2021  SEA       WR                  SWR            18          Active
#> 2362   2021  SEA       WR                  LWR            19          Active
#> 2363   2021  SEA       WR                  LWR            14          Active
#> 2364   2021  SEA       WR                 <NA>            11          Active
#> 2365   2021  SEA       WR                  SWR             1          Active
#> 2366   2021  SEA       WR                  RWR            88          Active
#> 2367   2021   SF        C                    C            50          Active
#> 2368   2021   SF       CB                  RCB            26          Active
#> 2369   2021   SF       CB                 <NA>            39          Active
#> 2370   2021   SF       CB                  RCB             4          Active
#> 2371   2021   SF       CB                 <NA>            43          Active
#> 2372   2021   SF       CB                 <NA>            41        Inactive
#> 2373   2021   SF       CB                   NB            24          Active
#> 2374   2021   SF       CB                 <NA>             2        Inactive
#> 2375   2021   SF       CB                 <NA>            25          Active
#> 2376   2021   SF       CB                  LCB            20          Active
#> 2377   2021   SF       CB                   FS            27          Active
#> 2378   2021   SF       DB                 <NA>            30          Active
#> 2379   2021   SF       DB                 <NA>            32        Inactive
#> 2380   2021   SF       DB                 <NA>            33          Active
#> 2381   2021   SF       DB                   SS             3          Active
#> 2382   2021   SF       DB                  RCB            38          Active
#> 2383   2021   SF       DB                   SS            29          Active
#> 2384   2021   SF       DB                 <NA>            48          Active
#> 2385   2021   SF       DB                  LCB             0          Active
#> 2386   2021   SF       DB                   FS             1          Active
#> 2387   2021   SF       DE                  LDE            92          Active
#> 2388   2021   SF       DE                  LDE            94          Active
#> 2389   2021   SF       DE                  LDT            91          Active
#> 2390   2021   SF       DE                  RDE            64          Active
#> 2391   2021   SF       DE                  RDE            98          Active
#> 2392   2021   SF       DE                  LDE            97          Active
#> 2393   2021   SF       DE                  RDE            56          Active
#> 2394   2021   SF       DE                 <NA>            55        Inactive
#> 2395   2021   SF       DT                 <NA>            78          Active
#> 2396   2021   SF       DT                 <NA>            99        Inactive
#> 2397   2021   SF       DT                  RDT            95          Active
#> 2398   2021   SF       DT                  LDT            96          Active
#> 2399   2021   SF       DT                 <NA>            67        Inactive
#> 2400   2021   SF       DT                  RDT            93          Active
#> 2401   2021   SF       DT                  RDT            63          Active
#> 2402   2021   SF       DT                  RDT            90          Active
#> 2403   2021   SF       FB                 <NA>            40          Active
#> 2404   2021   SF       FB                   FB            44          Active
#> 2405   2021   SF        G                 <NA>            61          Active
#> 2406   2021   SF        K                   PK             9          Active
#> 2407   2021   SF       LB                 <NA>            53          Active
#> 2408   2021   SF       LB                 WILL            36          Active
#> 2409   2021   SF       LB                 MIKE            45          Active
#> 2410   2021   SF       LB                 MIKE            54          Active
#> 2411   2021   SF       LB                 MIKE            59          Active
#> 2412   2021   SF       LB                  SAM            51          Active
#> 2413   2021   SF       LB                 WILL            57          Active
#> 2414   2021   SF       LS                 <NA>            46          Active
#> 2415   2021   SF       OL                   LG            75          Active
#> 2416   2021   SF       OL                   RG            65          Active
#> 2417   2021   SF       OL                   RT            76          Active
#> 2418   2021   SF       OL                    C            64          Active
#> 2419   2021   SF       OL                   RT            66          Active
#> 2420   2021   SF       OL                   LG            68          Active
#> 2421   2021   SF       OL                   RT            77          Active
#> 2422   2021   SF       OL                   RG            60          Active
#> 2423   2021   SF       OT                 <NA>            67        Inactive
#> 2424   2021   SF       OT                 <NA>            62          Active
#> 2425   2021   SF        P                 <NA>            18          Active
#> 2426   2021   SF       QB                 <NA>             7          Active
#> 2427   2021   SF       QB                   QB            10          Active
#> 2428   2021   SF       QB                   QB             5          Active
#> 2429   2021   SF       RB                 <NA>            29          Active
#> 2430   2021   SF       RB                   RB            25          Active
#> 2431   2021   SF       RB                   RB            22          Active
#> 2432   2021   SF       RB                   RB            49          Active
#> 2433   2021   SF       RB                 <NA>            35          Active
#> 2434   2021   SF       RB                 <NA>            31        Inactive
#> 2435   2021   SF       RB                 <NA>            28          Active
#> 2436   2021   SF       RB                 <NA>            23          Active
#> 2437   2021   SF        T                   LT            71          Active
#> 2438   2021   SF        T                 <NA>            69        Inactive
#> 2439   2021   SF       TE                   TE            82          Active
#> 2440   2021   SF       TE                 <NA>            88          Active
#> 2441   2021   SF       TE                   TE            89          Active
#> 2442   2021   SF       TE                 <NA>            84          Active
#> 2443   2021   SF       TE                   TE            85          Active
#> 2444   2021   SF       WR                 <NA>            83          Active
#> 2445   2021   SF       WR                 <NA>             0          Active
#> 2446   2021   SF       WR                  LWR             6          Active
#> 2447   2021   SF       WR                  RWR            19          Active
#> 2448   2021   SF       WR                  LWR            15          Active
#> 2449   2021   SF       WR                  RWR            17          Active
#> 2450   2021   SF       WR                 <NA>            14          Active
#> 2451   2021   SF       WR                  SWR            13        Inactive
#> 2452   2021   SF       WR                  LWR            11          Active
#> 2453   2021   SF       WR                  RWR            81          Active
#> 2454   2021   TB        C                    C            66          Active
#> 2455   2021   TB       CB                 <NA>             5          Active
#> 2456   2021   TB       CB                 <NA>            29          Active
#> 2457   2021   TB       CB                  RCB            23          Active
#> 2458   2021   TB       CB                  RCB            30          Active
#> 2459   2021   TB       CB                  RCB            35          Active
#> 2460   2021   TB       CB                   CB            28          Active
#> 2461   2021   TB       CB                   CB            24          Active
#> 2462   2021   TB       CB                   CB            43          Active
#> 2463   2021   TB       CB                 <NA>            36          Active
#> 2464   2021   TB       DB                   FS            33          Active
#> 2465   2021   TB       DB                   SS            22          Active
#> 2466   2021   TB       DB                 <NA>            37          Active
#> 2467   2021   TB       DB                 <NA>            39          Active
#> 2468   2021   TB       DB                   FS            26          Active
#> 2469   2021   TB       DB                 <NA>            32          Active
#> 2470   2021   TB       DB                   SS            31          Active
#> 2471   2021   TB       DE                 <NA>            79          Active
#> 2472   2021   TB       DE                  RDE            92          Active
#> 2473   2021   TB       DT                  RDE            91          Active
#> 2474   2021   TB       DT                 <NA>            94          Active
#> 2475   2021   TB       DT                  RDE            96          Active
#> 2476   2021   TB       DT                  LDE            93          Active
#> 2477   2021   TB       DT                   NT            71          Active
#> 2478   2021   TB       DT                   NT            50          Active
#> 2479   2021   TB       DT                   NT            56          Active
#> 2480   2021   TB        G                   RG            75          Active
#> 2481   2021   TB        G                   RG            64          Active
#> 2482   2021   TB        G                   LG            74          Active
#> 2483   2021   TB        G                   LG            60          Active
#> 2484   2021   TB        G                   RG            65          Active
#> 2485   2021   TB        K                   PK            19          Active
#> 2486   2021   TB        K                   PK             3          Active
#> 2487   2021   TB       LB                 RILB            48          Active
#> 2488   2021   TB       LB                 RILB            52          Active
#> 2489   2021   TB       LB                 LILB            51          Active
#> 2490   2021   TB       LB                  LDE            44          Active
#> 2491   2021   TB       LB                 LOLB            98          Active
#> 2492   2021   TB       LB                 ROLB            58          Active
#> 2493   2021   TB       LB                 ROLB            49          Active
#> 2494   2021   TB       LB                 LILB            45          Active
#> 2495   2021   TB       LB                 RILB            54          Active
#> 2496   2021   TB       LB                 ROLB             9          Active
#> 2497   2021   TB       LB                 LOLB            90          Active
#> 2498   2021   TB       LS                 <NA>            89          Active
#> 2499   2021   TB       LS                 <NA>            97          Active
#> 2500   2021   TB       OG                 <NA>            61          Active
#> 2501   2021   TB       OL                 <NA>            72          Active
#> 2502   2021   TB       OL                    C            70          Active
#> 2503   2021   TB       OT                   RT             0          Active
#> 2504   2021   TB       OT                   LG             0          Active
#> 2505   2021   TB       OT                 <NA>            68          Active
#> 2506   2021   TB        P                 <NA>             8          Active
#> 2507   2021   TB        P                 <NA>             0          Active
#> 2508   2021   TB       QB                 <NA>             4          Active
#> 2509   2021   TB       QB                   QB            11          Active
#> 2510   2021   TB       QB                   QB            12          Active
#> 2511   2021   TB       QB                   QB             2          Active
#> 2512   2021   TB       RB                   RB            27          Active
#> 2513   2021   TB       RB                   RB            21          Active
#> 2514   2021   TB       RB                 <NA>            25          Active
#> 2515   2021   TB       RB                   RB             7          Active
#> 2516   2021   TB       RB                 <NA>            38          Active
#> 2517   2021   TB       RB                   RB             6          Active
#> 2518   2021   TB        T                   LT            76          Active
#> 2519   2021   TB        T                   RT            72          Active
#> 2520   2021   TB        T                   RT            78          Active
#> 2521   2021   TB       TE                  LTE            80          Active
#> 2522   2021   TB       TE                  LTE            84          Active
#> 2523   2021   TB       TE                  RTE            87          Active
#> 2524   2021   TB       TE                 <NA>            86          Active
#> 2525   2021   TB       TE                 <NA>            88          Active
#> 2526   2021   TB       WR                 <NA>            83          Active
#> 2527   2021   TB       WR                  RWR            15          Active
#> 2528   2021   TB       WR                 <NA>            14          Active
#> 2529   2021   TB       WR                 <NA>            89          Active
#> 2530   2021   TB       WR                 <NA>             0          Active
#> 2531   2021   TB       WR                 <NA>             0          Active
#> 2532   2021   TB       WR                 <NA>             0          Active
#> 2533   2021   TB       WR                  RWR            18          Active
#> 2534   2021   TB       WR                  RWR            16          Active
#> 2535   2021   TB       WR                  LWR            13          Active
#> 2536   2021   TB       WR                  LWR             1          Active
#> 2537   2021   TB       WR                  LWR            10          Active
#> 2538   2021   TB     <NA>                 <NA>             0          Active
#> 2539   2021  TEN        C                    C            60          Active
#> 2540   2021  TEN        C                 <NA>            52          Active
#> 2541   2021  TEN       CB                   CB            30          Active
#> 2542   2021  TEN       CB                 <NA>             0          Active
#> 2543   2021  TEN       CB                   CB            26          Active
#> 2544   2021  TEN       CB                   CB            20          Active
#> 2545   2021  TEN       CB                 <NA>            36          Active
#> 2546   2021  TEN       CB                 <NA>            40          Active
#> 2547   2021  TEN       CB                 <NA>            23          Active
#> 2548   2021  TEN       CB                 <NA>             3          Active
#> 2549   2021  TEN       CB                   NB            24          Active
#> 2550   2021  TEN       DB                   SS            21          Active
#> 2551   2021  TEN       DB                   NB            38          Active
#> 2552   2021  TEN       DB                   SS            37          Active
#> 2553   2021  TEN       DB                 <NA>            39          Active
#> 2554   2021  TEN       DB                 <NA>            25          Active
#> 2555   2021  TEN       DB                   CB            35          Active
#> 2556   2021  TEN       DB                   FS            47          Active
#> 2557   2021  TEN       DB                   FS            29          Active
#> 2558   2021  TEN       DB                   FS            31          Active
#> 2559   2021  TEN       DE                  LDE            96          Active
#> 2560   2021  TEN       DE                  LDE            97          Active
#> 2561   2021  TEN       DE                 <NA>            94          Active
#> 2562   2021  TEN       DT                 <NA>            97          Active
#> 2563   2021  TEN       DT                 <NA>            76          Active
#> 2564   2021  TEN       DT                   NT            90          Active
#> 2565   2021  TEN       DT                   DT            98          Active
#> 2566   2021  TEN       DT                   NT            93          Active
#> 2567   2021  TEN       DT                 <NA>             0          Active
#> 2568   2021  TEN       DT                   DT            95          Active
#> 2569   2021  TEN       DT                   DT            91          Active
#> 2570   2021  TEN       FB                   FB            45          Active
#> 2571   2021  TEN       FB                 <NA>            44          Active
#> 2572   2021  TEN        G                    C            61          Active
#> 2573   2021  TEN        G                   LG            76          Active
#> 2574   2021  TEN        G                   RG            64          Active
#> 2575   2021  TEN        G                 <NA>            57          Active
#> 2576   2021  TEN        K                 <NA>             4          Active
#> 2577   2021  TEN        K                   PK            14          Active
#> 2578   2021  TEN       LB                 ROLB            53          Active
#> 2579   2021  TEN       LB                 LOLB            50          Active
#> 2580   2021  TEN       LB                 RILB            49          Active
#> 2581   2021  TEN       LB                 ROLB            92          Active
#> 2582   2021  TEN       LB                 <NA>            99          Active
#> 2583   2021  TEN       LB                 LOLB             0          Active
#> 2584   2021  TEN       LB                 <NA>            56          Active
#> 2585   2021  TEN       LB                 LILB            41          Active
#> 2586   2021  TEN       LB                 LOLB            48          Active
#> 2587   2021  TEN       LB                 ROLB            58          Active
#> 2588   2021  TEN       LB                 <NA>             0          Active
#> 2589   2021  TEN       LB                 <NA>            42          Active
#> 2590   2021  TEN       LB                 RILB            57          Active
#> 2591   2021  TEN       LB                 RILB            54          Active
#> 2592   2021  TEN       LB                 LILB            55          Active
#> 2593   2021  TEN       LB                 LILB            51          Active
#> 2594   2021  TEN       LB                 <NA>            53          Active
#> 2595   2021  TEN       LB                 <NA>             0          Active
#> 2596   2021  TEN       LS                 <NA>            46          Active
#> 2597   2021  TEN       OL                   RT            72          Active
#> 2598   2021  TEN       OL                   RG            75          Active
#> 2599   2021  TEN       OL                   RG            62          Active
#> 2600   2021  TEN       OT                   LT            77          Active
#> 2601   2021  TEN       OT                   RT            71          Active
#> 2602   2021  TEN        P                 <NA>             6          Active
#> 2603   2021  TEN       QB                   QB            17          Active
#> 2604   2021  TEN       QB                   QB            18          Active
#> 2605   2021  TEN       QB                   QB             5          Active
#> 2606   2021  TEN       RB                 <NA>            32          Active
#> 2607   2021  TEN       RB                   RB            40          Active
#> 2608   2021  TEN       RB                 <NA>            33          Active
#> 2609   2021  TEN       RB                 <NA>            28          Active
#> 2610   2021  TEN       RB                   RB            22          Active
#> 2611   2021  TEN       RB                   RB             7          Active
#> 2612   2021  TEN        T                 <NA>            66          Active
#> 2613   2021  TEN        T                   RT            69          Active
#> 2614   2021  TEN        T                   LT            66          Active
#> 2615   2021  TEN       TE                   TE            85          Active
#> 2616   2021  TEN       TE                   TE            87          Active
#> 2617   2021  TEN       TE                 <NA>            49          Active
#> 2618   2021  TEN       TE                   TE            86          Active
#> 2619   2021  TEN       TE                 <NA>            83        Inactive
#> 2620   2021  TEN       TE                 <NA>            89          Active
#> 2621   2021  TEN       TE                 <NA>            84          Active
#> 2622   2021  TEN       TE                 <NA>            83          Active
#> 2623   2021  TEN       WR                 <NA>            13          Active
#> 2624   2021  TEN       WR                  SWR             0          Active
#> 2625   2021  TEN       WR                  LWR            83          Active
#> 2626   2021  TEN       WR                  LWR             2          Active
#> 2627   2021  TEN       WR                  SWR            80          Active
#> 2628   2021  TEN       WR                  RWR            11          Active
#> 2629   2021  TEN       WR                 <NA>            88          Active
#> 2630   2021  TEN       WR                  RWR            15          Active
#> 2631   2021  TEN       WR                  SWR            81          Active
#> 2632   2021  TEN       WR                  RWR            16          Active
#> 2633   2021  TEN       WR                  LWR            10          Active
#> 2634   2021  TEN       WR                  LWR            12          Active
#> 2635   2021  WAS        C                    C            61          Active
#> 2636   2021  WAS        C                 <NA>            73          Active
#> 2637   2021  WAS        C                    C            60          Active
#> 2638   2021  WAS        C                    C            69          Active
#> 2639   2021  WAS       CB                   FS            20          Active
#> 2640   2021  WAS       CB                  LCB            14          Active
#> 2641   2021  WAS       CB                  LCB            34          Active
#> 2642   2021  WAS       CB                 <NA>            35          Active
#> 2643   2021  WAS       CB                  RCB            23          Active
#> 2644   2021  WAS       CB                 <NA>            37          Active
#> 2645   2021  WAS       CB                  RCB            36          Active
#> 2646   2021  WAS       CB                  LCB            29          Active
#> 2647   2021  WAS       DB                 <NA>            26          Active
#> 2648   2021  WAS       DB                   SS            48          Active
#> 2649   2021  WAS       DB                 <NA>            22          Active
#> 2650   2021  WAS       DB                   FS            31          Active
#> 2651   2021  WAS       DB                 <NA>            25          Active
#> 2652   2021  WAS       DB                   FS            39          Active
#> 2653   2021  WAS       DB                  RCB            30          Active
#> 2654   2021  WAS       DE                  RDE            57          Active
#> 2655   2021  WAS       DE                  LDE            96          Active
#> 2656   2021  WAS       DE                  RDE            90          Active
#> 2657   2021  WAS       DE                  RDE            95          Active
#> 2658   2021  WAS       DE                 <NA>            56          Active
#> 2659   2021  WAS       DE                 <NA>            99          Active
#> 2660   2021  WAS       DE                 <NA>            57          Active
#> 2661   2021  WAS       DE                  LDE            58          Active
#> 2662   2021  WAS       DE                  LDE            50          Active
#> 2663   2021  WAS       DT                  RDT            98          Active
#> 2664   2021  WAS       DT                 <NA>            64          Active
#> 2665   2021  WAS       DT                  LDT            94          Active
#> 2666   2021  WAS       DT                  RDT            68          Active
#> 2667   2021  WAS       DT                  LDT            92          Active
#> 2668   2021  WAS       DT                  LDT            97          Active
#> 2669   2021  WAS       DT                 <NA>            62          Active
#> 2670   2021  WAS       DT                  RDT            93          Active
#> 2671   2021  WAS       FB                 <NA>            40          Active
#> 2672   2021  WAS        G                 <NA>            74          Active
#> 2673   2021  WAS        G                 <NA>            61          Active
#> 2674   2021  WAS        G                   LG            68          Active
#> 2675   2021  WAS        G                 <NA>            71          Active
#> 2676   2021  WAS        G                   RG            63          Active
#> 2677   2021  WAS        G                   RG            75          Active
#> 2678   2021  WAS        K                   PK             3          Active
#> 2679   2021  WAS        K                   PK            16          Active
#> 2680   2021  WAS       LB                 <NA>            53          Active
#> 2681   2021  WAS       LB                 ROLB            51          Active
#> 2682   2021  WAS       LB                  MLB            45          Active
#> 2683   2021  WAS       LB                  MLB            52          Active
#> 2684   2021  WAS       LB                 <NA>            50          Active
#> 2685   2021  WAS       LB                 ROLB            59          Active
#> 2686   2021  WAS       LB                  MLB            46          Active
#> 2687   2021  WAS       LB                 <NA>            47          Active
#> 2688   2021  WAS       LB                 LOLB            55          Active
#> 2689   2021  WAS       LS                 <NA>            54          Active
#> 2690   2021  WAS       OL                   RT            76          Active
#> 2691   2021  WAS       OL                   LG            64          Active
#> 2692   2021  WAS       OT                 <NA>             0        Inactive
#> 2693   2021  WAS        P                 <NA>             5          Active
#> 2694   2021  WAS       QB                   QB             4          Active
#> 2695   2021  WAS       QB                   QB             8          Active
#> 2696   2021  WAS       QB                 <NA>            14          Active
#> 2697   2021  WAS       QB                   QB            19          Active
#> 2698   2021  WAS       RB                 <NA>            41          Active
#> 2699   2021  WAS       RB                 <NA>            39          Active
#> 2700   2021  WAS       RB                 <NA>            38          Active
#> 2701   2021  WAS       RB                   RB            35          Active
#> 2702   2021  WAS       RB                   RB            24          Active
#> 2703   2021  WAS       RB                   RB            32          Active
#> 2704   2021  WAS        T                   LT            72          Active
#> 2705   2021  WAS        T                   RT            77          Active
#> 2706   2021  WAS        T                   LG            79          Active
#> 2707   2021  WAS        T                 <NA>            66          Active
#> 2708   2021  WAS        T                   LT            78          Active
#> 2709   2021  WAS       TE                   TE            80          Active
#> 2710   2021  WAS       TE                 <NA>            83          Active
#> 2711   2021  WAS       TE                 <NA>            82          Active
#> 2712   2021  WAS       TE                 <NA>            45          Active
#> 2713   2021  WAS       TE                   TE            87          Active
#> 2714   2021  WAS       TE                 <NA>            88          Active
#> 2715   2021  WAS       WR                  SWR            18          Active
#> 2716   2021  WAS       WR                  RWR             1          Active
#> 2717   2021  WAS       WR                  RWR            15          Active
#> 2718   2021  WAS       WR                  SWR            10          Active
#> 2719   2021  WAS       WR                  LWR            17          Active
#> 2720   2021  WAS       WR                  SWR            11          Active
#> 2721   2021  WAS       WR                  LWR            84          Active
#> 2722   2021  WAS       WR                  RWR            13          Active
#> 2723   2021  WAS       WR                  LWR             2          Active
#> 2724   2021  WAS       WR                 <NA>            19          Active
#> 2725   2021 <NA>        C                    C             0 Injured Reserve
#> 2726   2021 <NA>        C                 <NA>            59        Inactive
#> 2727   2021 <NA>        C                 <NA>            62        Inactive
#> 2728   2021 <NA>        C                 <NA>            62          Active
#> 2729   2021 <NA>        C                 <NA>            74          Active
#> 2730   2021 <NA>        C                 <NA>             0          Active
#> 2731   2021 <NA>        C                 <NA>             0        Inactive
#> 2732   2021 <NA>        C                   LG             0          Active
#> 2733   2021 <NA>        C                    C            62        Inactive
#> 2734   2021 <NA>        C                 <NA>            55        Inactive
#> 2735   2021 <NA>        C                 <NA>            60        Inactive
#> 2736   2021 <NA>        C                 <NA>            64          Active
#> 2737   2021 <NA>        C                 <NA>             0 Injured Reserve
#> 2738   2021 <NA>        C                    C             0 Injured Reserve
#> 2739   2021 <NA>        C                 <NA>            60          Active
#> 2740   2021 <NA>        C                 <NA>             0          Active
#> 2741   2021 <NA>        C                 <NA>            63          Active
#> 2742   2021 <NA>        C                 <NA>            75        Inactive
#> 2743   2021 <NA>        C                 <NA>             0 Injured Reserve
#> 2744   2021 <NA>        C                 <NA>            60          Active
#> 2745   2021 <NA>        C                 <NA>            74        Inactive
#> 2746   2021 <NA>        C                 <NA>             0          Active
#> 2747   2021 <NA>        C                 <NA>            60        Inactive
#> 2748   2021 <NA>        C                 <NA>            61          Active
#> 2749   2021 <NA>        C                 <NA>            55        Inactive
#> 2750   2021 <NA>        C                    C             0 Injured Reserve
#> 2751   2021 <NA>        C                 <NA>            61          Active
#> 2752   2021 <NA>        C                 <NA>             0          Active
#> 2753   2021 <NA>        C                 <NA>            65        Inactive
#> 2754   2021 <NA>        C                 <NA>             0        Inactive
#> 2755   2021 <NA>        C                 <NA>            49          Active
#> 2756   2021 <NA>        C                 <NA>             0 Injured Reserve
#> 2757   2021 <NA>        C                    C             0          Active
#> 2758   2021 <NA>        C                 <NA>            68          Active
#> 2759   2021 <NA>        C                 <NA>             0          Active
#> 2760   2021 <NA>        C                 <NA>            76          Active
#> 2761   2021 <NA>        C                 <NA>            77        Inactive
#> 2762   2021 <NA>        C                 <NA>             0          Active
#> 2763   2021 <NA>        C                 <NA>             0 Injured Reserve
#> 2764   2021 <NA>        C                    C             0 Injured Reserve
#> 2765   2021 <NA>        C                 <NA>            69        Inactive
#> 2766   2021 <NA>        C                    C            64        Inactive
#> 2767   2021 <NA>        C                 <NA>             0          Active
#> 2768   2021 <NA>        C                 <NA>             0          Active
#> 2769   2021 <NA>        C                 <NA>            62          Active
#> 2770   2021 <NA>        C                 <NA>            63          Active
#> 2771   2021 <NA>        C                 <NA>            63        Inactive
#> 2772   2021 <NA>        C                 <NA>            59        Inactive
#> 2773   2021 <NA>        C                 <NA>            76          Active
#> 2774   2021 <NA>        C                 <NA>            73          Active
#> 2775   2021 <NA>        C                 <NA>            63          Active
#> 2776   2021 <NA>        C                 <NA>            72        Inactive
#> 2777   2021 <NA>        C                 <NA>             0          Active
#> 2778   2021 <NA>        C                 <NA>            60          Active
#> 2779   2021 <NA>        C                 <NA>            60          Active
#> 2780   2021 <NA>        C                 <NA>             0 Injured Reserve
#> 2781   2021 <NA>        C                 <NA>             0        Inactive
#> 2782   2021 <NA>       CB                 <NA>            39          Active
#> 2783   2021 <NA>       CB                 <NA>             0 Injured Reserve
#> 2784   2021 <NA>       CB                 <NA>            36        Inactive
#> 2785   2021 <NA>       CB                 <NA>            31        Inactive
#> 2786   2021 <NA>       CB                 <NA>            47        Inactive
#> 2787   2021 <NA>       CB                 <NA>            39        Inactive
#> 2788   2021 <NA>       CB                 <NA>             0          Active
#> 2789   2021 <NA>       CB                 <NA>            29          Active
#> 2790   2021 <NA>       CB                 <NA>             0          Active
#> 2791   2021 <NA>       CB                 <NA>            38        Inactive
#> 2792   2021 <NA>       CB                 <NA>            35        Inactive
#> 2793   2021 <NA>       CB                 <NA>            35          Active
#> 2794   2021 <NA>       CB                 <NA>            37        Inactive
#> 2795   2021 <NA>       CB                 <NA>            38          Active
#> 2796   2021 <NA>       CB                 <NA>            37          Active
#> 2797   2021 <NA>       CB                 <NA>            29        Inactive
#> 2798   2021 <NA>       CB                 <NA>            34          Active
#> 2799   2021 <NA>       CB                 <NA>             0 Injured Reserve
#> 2800   2021 <NA>       CB                 <NA>            47        Inactive
#> 2801   2021 <NA>       CB                 <NA>            38          Active
#> 2802   2021 <NA>       CB                 <NA>            36        Inactive
#> 2803   2021 <NA>       CB                 <NA>             0          Active
#> 2804   2021 <NA>       CB                  LCB             0 Injured Reserve
#> 2805   2021 <NA>       CB                 <NA>            23        Inactive
#> 2806   2021 <NA>       CB                 <NA>            43        Inactive
#> 2807   2021 <NA>       CB                 <NA>            39        Inactive
#> 2808   2021 <NA>       CB                 <NA>            29        Inactive
#> 2809   2021 <NA>       CB                 <NA>            44        Inactive
#> 2810   2021 <NA>       CB                 <NA>             0          Active
#> 2811   2021 <NA>       CB                 <NA>            32        Inactive
#> 2812   2021 <NA>       CB                 <NA>            35        Inactive
#> 2813   2021 <NA>       CB                 <NA>            34        Inactive
#> 2814   2021 <NA>       CB                 <NA>             0        Inactive
#> 2815   2021 <NA>       CB                 <NA>            39          Active
#> 2816   2021 <NA>       CB                 <NA>            24        Inactive
#> 2817   2021 <NA>       CB                  LCB             0        Inactive
#> 2818   2021 <NA>       CB                 <NA>            31        Inactive
#> 2819   2021 <NA>       CB                 <NA>            27        Inactive
#> 2820   2021 <NA>       CB                 <NA>            39        Inactive
#> 2821   2021 <NA>       CB                 <NA>            44          Active
#> 2822   2021 <NA>       CB                 <NA>            38          Active
#> 2823   2021 <NA>       CB                  LCB            39          Active
#> 2824   2021 <NA>       CB                 <NA>             0          Active
#> 2825   2021 <NA>       CB                 <NA>            35          Active
#> 2826   2021 <NA>       CB                 <NA>            20        Inactive
#> 2827   2021 <NA>       CB                  RCB            41        Inactive
#> 2828   2021 <NA>       CB                 <NA>            36          Active
#> 2829   2021 <NA>       CB                 <NA>            42          Active
#> 2830   2021 <NA>       CB                 <NA>            20          Active
#> 2831   2021 <NA>       CB                 <NA>            43        Inactive
#> 2832   2021 <NA>       CB                 <NA>            41          Active
#> 2833   2021 <NA>       CB                 <NA>             0          Active
#> 2834   2021 <NA>       CB                 <NA>             0          Active
#> 2835   2021 <NA>       CB                 <NA>             0          Active
#> 2836   2021 <NA>       CB                 <NA>             0          Active
#> 2837   2021 <NA>       CB                 <NA>            38        Inactive
#> 2838   2021 <NA>       CB                 <NA>            35          Active
#> 2839   2021 <NA>       CB                 <NA>            33 Injured Reserve
#> 2840   2021 <NA>       CB                 <NA>            31        Inactive
#> 2841   2021 <NA>       CB                 <NA>             0          Active
#> 2842   2021 <NA>       CB                 <NA>            43        Inactive
#> 2843   2021 <NA>       CB                 <NA>            20          Active
#> 2844   2021 <NA>       CB                 <NA>            30        Inactive
#> 2845   2021 <NA>       CB                 <NA>             0          Active
#> 2846   2021 <NA>       CB                 <NA>            31          Active
#> 2847   2021 <NA>       CB                 <NA>            48          Active
#> 2848   2021 <NA>       CB                 <NA>             0          Active
#> 2849   2021 <NA>       CB                 <NA>            41 Injured Reserve
#> 2850   2021 <NA>       CB                 <NA>            38        Inactive
#> 2851   2021 <NA>       CB                 <NA>             0        Inactive
#> 2852   2021 <NA>       CB                 <NA>            37          Active
#> 2853   2021 <NA>       CB                 <NA>            39          Active
#> 2854   2021 <NA>       CB                 <NA>            33        Inactive
#> 2855   2021 <NA>       CB                 <NA>            41        Inactive
#> 2856   2021 <NA>       CB                 <NA>            23        Inactive
#> 2857   2021 <NA>       CB                 <NA>            28        Inactive
#> 2858   2021 <NA>       CB                 <NA>             0          Active
#> 2859   2021 <NA>       CB                  LCB             0          Active
#> 2860   2021 <NA>       CB                 <NA>            34        Inactive
#> 2861   2021 <NA>       CB                 <NA>             0          Active
#> 2862   2021 <NA>       CB                 <NA>             0          Active
#> 2863   2021 <NA>       CB                 <NA>            46        Inactive
#> 2864   2021 <NA>       CB                 <NA>            30        Inactive
#> 2865   2021 <NA>       CB                 <NA>            35          Active
#> 2866   2021 <NA>       CB                 <NA>             0          Active
#> 2867   2021 <NA>       CB                 <NA>             0        Inactive
#> 2868   2021 <NA>       CB                 <NA>            46          Active
#> 2869   2021 <NA>       CB                 <NA>            66        Inactive
#> 2870   2021 <NA>       CB                  LCB            38        Inactive
#> 2871   2021 <NA>       CB                 <NA>            30        Inactive
#> 2872   2021 <NA>       CB                  RCB            27          Active
#> 2873   2021 <NA>       CB                 <NA>            47          Active
#> 2874   2021 <NA>       CB                 <NA>            24          Active
#> 2875   2021 <NA>       CB                 <NA>            34        Inactive
#> 2876   2021 <NA>       CB                 <NA>            41        Inactive
#> 2877   2021 <NA>       CB                 <NA>             1          Active
#> 2878   2021 <NA>       CB                 <NA>            23          Active
#> 2879   2021 <NA>       CB                 <NA>            36        Inactive
#> 2880   2021 <NA>       CB                 <NA>             0          Active
#> 2881   2021 <NA>       CB                 <NA>            45          Active
#> 2882   2021 <NA>       CB                 <NA>            29        Inactive
#> 2883   2021 <NA>       CB                 <NA>             0          Active
#> 2884   2021 <NA>       CB                  LCB             0          Active
#> 2885   2021 <NA>       CB                 <NA>            33          Active
#> 2886   2021 <NA>       CB                   NB             0          Active
#> 2887   2021 <NA>       CB                 <NA>             0        Inactive
#> 2888   2021 <NA>       CB                 <NA>            35        Inactive
#> 2889   2021 <NA>       CB                 <NA>            28          Active
#> 2890   2021 <NA>       CB                 <NA>            38          Active
#> 2891   2021 <NA>       CB                 <NA>            25        Inactive
#> 2892   2021 <NA>       CB                 <NA>            23          Active
#> 2893   2021 <NA>       CB                 <NA>            35        Inactive
#> 2894   2021 <NA>       CB                 <NA>            38        Inactive
#> 2895   2021 <NA>       CB                 <NA>             0        Inactive
#> 2896   2021 <NA>       CB                 <NA>            39        Inactive
#> 2897   2021 <NA>       CB                 <NA>             0        Inactive
#> 2898   2021 <NA>       CB                 <NA>            25        Inactive
#> 2899   2021 <NA>       CB                 <NA>             0 Injured Reserve
#> 2900   2021 <NA>       CB                 <NA>            37        Inactive
#> 2901   2021 <NA>       CB                 <NA>            32        Inactive
#> 2902   2021 <NA>       CB                 <NA>            39        Inactive
#> 2903   2021 <NA>       CB                 <NA>            43        Inactive
#> 2904   2021 <NA>       CB                 <NA>            37        Inactive
#> 2905   2021 <NA>       CB                 <NA>            30          Active
#> 2906   2021 <NA>       CB                 <NA>             0          Active
#> 2907   2021 <NA>       CB                  RCB            34        Inactive
#> 2908   2021 <NA>       CB                 <NA>             0        Inactive
#> 2909   2021 <NA>       CB                 <NA>            27          Active
#> 2910   2021 <NA>       CB                 <NA>             0 Injured Reserve
#> 2911   2021 <NA>       CB                 <NA>            31        Inactive
#> 2912   2021 <NA>       CB                 <NA>             0          Active
#> 2913   2021 <NA>       CB                 <NA>             0 Injured Reserve
#> 2914   2021 <NA>       CB                 <NA>             0          Active
#> 2915   2021 <NA>       CB                 <NA>            32        Inactive
#> 2916   2021 <NA>       CB                 <NA>            36          Active
#> 2917   2021 <NA>       CB                 <NA>             0          Active
#> 2918   2021 <NA>       CB                 <NA>            20        Inactive
#> 2919   2021 <NA>       CB                 <NA>             8        Inactive
#> 2920   2021 <NA>       CB                   NB            32          Active
#> 2921   2021 <NA>       CB                 <NA>            49        Inactive
#> 2922   2021 <NA>       CB                 <NA>             0          Active
#> 2923   2021 <NA>       CB                 <NA>            26        Inactive
#> 2924   2021 <NA>       CB                 <NA>            29          Active
#> 2925   2021 <NA>       CB                 <NA>            38          Active
#> 2926   2021 <NA>       CB                 <NA>            34        Inactive
#> 2927   2021 <NA>       CB                 <NA>            22        Inactive
#> 2928   2021 <NA>       CB                 <NA>            29        Inactive
#> 2929   2021 <NA>       CB                 <NA>             0          Active
#> 2930   2021 <NA>       CB                 <NA>            30          Active
#> 2931   2021 <NA>       CB                 <NA>             0          Active
#> 2932   2021 <NA>       CB                 <NA>            46          Active
#> 2933   2021 <NA>       CB                 <NA>            48        Inactive
#> 2934   2021 <NA>       CB                  RCB             0          Active
#> 2935   2021 <NA>       CB                 <NA>            39          Active
#> 2936   2021 <NA>       CB                  LCB             0          Active
#> 2937   2021 <NA>       CB                 <NA>             0        Inactive
#> 2938   2021 <NA>       CB                 <NA>            36        Inactive
#> 2939   2021 <NA>       CB                 <NA>            47        Inactive
#> 2940   2021 <NA>       CB                 <NA>             0 Injured Reserve
#> 2941   2021 <NA>       CB                 <NA>            29        Inactive
#> 2942   2021 <NA>       CB                 <NA>            33        Inactive
#> 2943   2021 <NA>       CB                  RCB             0        Inactive
#> 2944   2021 <NA>       CB                 <NA>            38        Inactive
#> 2945   2021 <NA>       CB                 <NA>             0          Active
#> 2946   2021 <NA>       CB                  RCB             0          Active
#> 2947   2021 <NA>       CB                 <NA>            34          Active
#> 2948   2021 <NA>       CB                  LCB             0 Injured Reserve
#> 2949   2021 <NA>       CB                 <NA>            30        Inactive
#> 2950   2021 <NA>       CB                 <NA>            49        Inactive
#> 2951   2021 <NA>       CB                 <NA>             1          Active
#> 2952   2021 <NA>       CB                 <NA>             0          Active
#> 2953   2021 <NA>       CB                 <NA>            31        Inactive
#> 2954   2021 <NA>       CB                 <NA>            39        Inactive
#> 2955   2021 <NA>       CB                 <NA>             0          Active
#> 2956   2021 <NA>       CB                 <NA>            38        Inactive
#> 2957   2021 <NA>       CB                 <NA>            40          Active
#> 2958   2021 <NA>       CB                 <NA>            33          Active
#> 2959   2021 <NA>       CB                 <NA>            35        Inactive
#> 2960   2021 <NA>       CB                 <NA>            23        Inactive
#> 2961   2021 <NA>       CB                 <NA>            38        Inactive
#> 2962   2021 <NA>       CB                 <NA>             0          Active
#> 2963   2021 <NA>       CB                 <NA>            37        Inactive
#> 2964   2021 <NA>       CB                 <NA>            25          Active
#> 2965   2021 <NA>       CB                 <NA>            29        Inactive
#> 2966   2021 <NA>       CB                   CB            38        Inactive
#> 2967   2021 <NA>       CB                 <NA>            27          Active
#> 2968   2021 <NA>       CB                 <NA>            37          Active
#> 2969   2021 <NA>       CB                 <NA>            20        Inactive
#> 2970   2021 <NA>       CB                 <NA>             0          Active
#> 2971   2021 <NA>       CB                 <NA>            42        Inactive
#> 2972   2021 <NA>       CB                  LCB             0          Active
#> 2973   2021 <NA>       CB                 <NA>            40          Active
#> 2974   2021 <NA>       CB                 <NA>            41          Active
#> 2975   2021 <NA>       DB                   FS            43        Inactive
#> 2976   2021 <NA>       DB                 <NA>            40          Active
#> 2977   2021 <NA>       DB                 <NA>            33          Active
#> 2978   2021 <NA>       DB                  RCB             6          Active
#> 2979   2021 <NA>       DB                 <NA>            31          Active
#> 2980   2021 <NA>       DB                 <NA>            33          Active
#> 2981   2021 <NA>       DB                 <NA>             0          Active
#> 2982   2021 <NA>       DB                   FS             0          Active
#> 2983   2021 <NA>       DB                   FS             0          Active
#> 2984   2021 <NA>       DB                 <NA>             0          Active
#> 2985   2021 <NA>       DB                 <NA>             0          Active
#> 2986   2021 <NA>       DB                   FS            33          Active
#> 2987   2021 <NA>       DB                 <NA>             0          Active
#> 2988   2021 <NA>       DB                   FS            27        Inactive
#> 2989   2021 <NA>       DB                 <NA>            43          Active
#> 2990   2021 <NA>       DB                 <NA>            39          Active
#> 2991   2021 <NA>       DB                 <NA>             0        Inactive
#> 2992   2021 <NA>       DB                   FS            38        Inactive
#> 2993   2021 <NA>       DB                 <NA>             0          Active
#> 2994   2021 <NA>       DB                 <NA>            38        Inactive
#> 2995   2021 <NA>       DB                 <NA>             0          Active
#> 2996   2021 <NA>       DB                 <NA>             0          Active
#> 2997   2021 <NA>       DB                 <NA>            40          Active
#> 2998   2021 <NA>       DB                 <NA>            41          Active
#> 2999   2021 <NA>       DB                 <NA>            38          Active
#> 3000   2021 <NA>       DB                   FS             0          Active
#> 3001   2021 <NA>       DB                 <NA>             0        Inactive
#> 3002   2021 <NA>       DB                 <NA>             0          Active
#> 3003   2021 <NA>       DB                 <NA>             0          Active
#> 3004   2021 <NA>       DB                 <NA>             0          Active
#> 3005   2021 <NA>       DB                 <NA>             0          Active
#> 3006   2021 <NA>       DB                 <NA>             0          Active
#> 3007   2021 <NA>       DB                 <NA>             0          Active
#> 3008   2021 <NA>       DB                 <NA>            38          Active
#> 3009   2021 <NA>       DB                 <NA>            46          Active
#> 3010   2021 <NA>       DE                 <NA>            94        Inactive
#> 3011   2021 <NA>       DE                 <NA>            93          Active
#> 3012   2021 <NA>       DE                  SLB            51        Inactive
#> 3013   2021 <NA>       DE                 <NA>            98        Inactive
#> 3014   2021 <NA>       DE                 <NA>            64          Active
#> 3015   2021 <NA>       DE                 <NA>            99          Active
#> 3016   2021 <NA>       DE                 <NA>             0          Active
#> 3017   2021 <NA>       DE                 <NA>            61          Active
#> 3018   2021 <NA>       DE                 <NA>             0          Active
#> 3019   2021 <NA>       DE                 <NA>            50        Inactive
#> 3020   2021 <NA>       DE                 <NA>             0 Injured Reserve
#> 3021   2021 <NA>       DE                 <NA>            57        Inactive
#> 3022   2021 <NA>       DE                 <NA>             0        Inactive
#> 3023   2021 <NA>       DE                 <NA>            52          Active
#> 3024   2021 <NA>       DE                 <NA>            68          Active
#> 3025   2021 <NA>       DE                 <NA>            98        Inactive
#> 3026   2021 <NA>       DE                 <NA>             0        Inactive
#> 3027   2021 <NA>       DE                 <NA>            66          Active
#> 3028   2021 <NA>       DE                   DL             0          Active
#> 3029   2021 <NA>       DE                 <NA>            98        Inactive
#> 3030   2021 <NA>       DE                 <NA>            71          Active
#> 3031   2021 <NA>       DE                 <NA>            96          Active
#> 3032   2021 <NA>       DE                 <NA>            94          Active
#> 3033   2021 <NA>       DE                 <NA>             0        Inactive
#> 3034   2021 <NA>       DE                 <NA>            91        Inactive
#> 3035   2021 <NA>       DE                 <NA>            95        Inactive
#> 3036   2021 <NA>       DE                 <NA>            99        Inactive
#> 3037   2021 <NA>       DE                 <NA>            76        Inactive
#> 3038   2021 <NA>       DE                 <NA>            92        Inactive
#> 3039   2021 <NA>       DE                 <NA>            90        Inactive
#> 3040   2021 <NA>       DE                 <NA>            48          Active
#> 3041   2021 <NA>       DE                 <NA>            59        Inactive
#> 3042   2021 <NA>       DE                 <NA>            56        Inactive
#> 3043   2021 <NA>       DE                 <NA>            57          Active
#> 3044   2021 <NA>       DE                   DT             0        Inactive
#> 3045   2021 <NA>       DE                 <NA>            56        Inactive
#> 3046   2021 <NA>       DE                   DL             0          Active
#> 3047   2021 <NA>       DE                 <NA>             0          Active
#> 3048   2021 <NA>       DE                 <NA>            61        Inactive
#> 3049   2021 <NA>       DE                 <NA>            58          Active
#> 3050   2021 <NA>       DE                 <NA>            62          Active
#> 3051   2021 <NA>       DE                 <NA>            95        Inactive
#> 3052   2021 <NA>       DE                 <NA>            95          Active
#> 3053   2021 <NA>       DE                 <NA>            78          Active
#> 3054   2021 <NA>       DE                 <NA>            92        Inactive
#> 3055   2021 <NA>       DE                 <NA>            46        Inactive
#> 3056   2021 <NA>       DE                 <NA>            99        Inactive
#> 3057   2021 <NA>       DE                 <NA>             0        Inactive
#> 3058   2021 <NA>       DE                 <NA>            93          Active
#> 3059   2021 <NA>       DE                 <NA>            70          Active
#> 3060   2021 <NA>       DE                 <NA>            76          Active
#> 3061   2021 <NA>       DE                 <NA>            79          Active
#> 3062   2021 <NA>       DE                 <NA>             0 Injured Reserve
#> 3063   2021 <NA>       DE                  RDT             0 Injured Reserve
#> 3064   2021 <NA>       DE                 <NA>            96        Inactive
#> 3065   2021 <NA>       DE                 <NA>            74          Active
#> 3066   2021 <NA>       DE                 <NA>            70          Active
#> 3067   2021 <NA>       DE                 <NA>            44        Inactive
#> 3068   2021 <NA>       DE                 <NA>             0          Active
#> 3069   2021 <NA>       DE                 <NA>            75        Inactive
#> 3070   2021 <NA>       DE                 <NA>            78        Inactive
#> 3071   2021 <NA>       DE                 <NA>            90        Inactive
#> 3072   2021 <NA>       DE                 <NA>            60          Active
#> 3073   2021 <NA>       DE                 <NA>            66          Active
#> 3074   2021 <NA>       DE                 <NA>            71          Active
#> 3075   2021 <NA>       DE                 <NA>            47          Active
#> 3076   2021 <NA>       DE                 <NA>            95        Inactive
#> 3077   2021 <NA>       DE                 <NA>            76 Injured Reserve
#> 3078   2021 <NA>       DE                 <NA>            94        Inactive
#> 3079   2021 <NA>       DE                 <NA>            49          Active
#> 3080   2021 <NA>       DE                 <NA>             0          Active
#> 3081   2021 <NA>       DE                 <NA>            93        Inactive
#> 3082   2021 <NA>       DE                 <NA>            91          Active
#> 3083   2021 <NA>       DE                 <NA>            64          Active
#> 3084   2021 <NA>       DE                 <NA>             0          Active
#> 3085   2021 <NA>       DE                 <NA>            98 Injured Reserve
#> 3086   2021 <NA>       DE                  LDE            79          Active
#> 3087   2021 <NA>       DE                 <NA>             0          Active
#> 3088   2021 <NA>       DE                 <NA>            62          Active
#> 3089   2021 <NA>       DE                 <NA>             0 Injured Reserve
#> 3090   2021 <NA>       DE                  RDE            54          Active
#> 3091   2021 <NA>       DE                 <NA>            43          Active
#> 3092   2021 <NA>       DE                 <NA>            90          Active
#> 3093   2021 <NA>       DE                 <NA>            48          Active
#> 3094   2021 <NA>       DE                 ROLB            52          Active
#> 3095   2021 <NA>       DE                 <NA>            67          Active
#> 3096   2021 <NA>       DE                 <NA>            79          Active
#> 3097   2021 <NA>       DE                 <NA>            96        Inactive
#> 3098   2021 <NA>       DE                 <NA>            63        Inactive
#> 3099   2021 <NA>       DE                 <NA>            92          Active
#> 3100   2021 <NA>       DE                 <NA>            58        Inactive
#> 3101   2021 <NA>       DE                 <NA>            91          Active
#> 3102   2021 <NA>       DE                 <NA>            97          Active
#> 3103   2021 <NA>       DE                  LDE            93        Inactive
#> 3104   2021 <NA>       DE                 <NA>            96        Inactive
#> 3105   2021 <NA>       DE                 <NA>             0 Injured Reserve
#> 3106   2021 <NA>       DE                 <NA>            96          Active
#> 3107   2021 <NA>       DE                 <NA>            69        Inactive
#> 3108   2021 <NA>       DE                 <NA>            93          Active
#> 3109   2021 <NA>       DE                 <NA>             0        Inactive
#> 3110   2021 <NA>       DE                 <NA>             0        Inactive
#> 3111   2021 <NA>       DE                 <NA>            54        Inactive
#> 3112   2021 <NA>       DE                 <NA>             0          Active
#> 3113   2021 <NA>       DE                 <NA>            50          Active
#> 3114   2021 <NA>       DE                 <NA>            55        Inactive
#> 3115   2021 <NA>       DE                 <NA>             0        Inactive
#> 3116   2021 <NA>       DE                 <NA>             0          Active
#> 3117   2021 <NA>       DE                 <NA>            56          Active
#> 3118   2021 <NA>       DE                 <NA>            98        Inactive
#> 3119   2021 <NA>       DE                 <NA>            63          Active
#> 3120   2021 <NA>       DE                 <NA>            95        Inactive
#> 3121   2021 <NA>       DE                 <NA>             0        Inactive
#> 3122   2021 <NA>       DE                 <NA>            97          Active
#> 3123   2021 <NA>       DE                 ROLB             0          Active
#> 3124   2021 <NA>       DE                   DT             0 Injured Reserve
#> 3125   2021 <NA>       DE                 <NA>            54          Active
#> 3126   2021 <NA>       DE                 <NA>            95        Inactive
#> 3127   2021 <NA>       DE                  LDE             0          Active
#> 3128   2021 <NA>       DE                 <NA>            72          Active
#> 3129   2021 <NA>       DE                 <NA>            57        Inactive
#> 3130   2021 <NA>       DE                 <NA>            90          Active
#> 3131   2021 <NA>       DE                 <NA>            90        Inactive
#> 3132   2021 <NA>       DE                  LDE            93          Active
#> 3133   2021 <NA>       DE                 <NA>             0          Active
#> 3134   2021 <NA>       DE                  RDE             0 Injured Reserve
#> 3135   2021 <NA>       DE                 <NA>            78          Active
#> 3136   2021 <NA>       DE                  RDE             0          Active
#> 3137   2021 <NA>       DE                 <NA>            98          Active
#> 3138   2021 <NA>       DE                 <NA>            96        Inactive
#> 3139   2021 <NA>       DL                 <NA>             0          Active
#> 3140   2021 <NA>       DL                 <NA>            92          Active
#> 3141   2021 <NA>       DL                 <NA>            69          Active
#> 3142   2021 <NA>       DL                 <NA>             0          Active
#> 3143   2021 <NA>       DL                 <NA>             0          Active
#> 3144   2021 <NA>       DL                 <NA>            43          Active
#> 3145   2021 <NA>       DL                 <NA>            52        Inactive
#> 3146   2021 <NA>       DL                 <NA>            59          Active
#> 3147   2021 <NA>       DL                 <NA>            60          Active
#> 3148   2021 <NA>       DL                  LDT            68        Inactive
#> 3149   2021 <NA>       DT                   NT            93        Inactive
#> 3150   2021 <NA>       DT                 <NA>            76        Inactive
#> 3151   2021 <NA>       DT                 <NA>            90        Inactive
#> 3152   2021 <NA>       DT                 <NA>             0          Active
#> 3153   2021 <NA>       DT                 <NA>             0          Active
#> 3154   2021 <NA>       DT                 <NA>            66        Inactive
#> 3155   2021 <NA>       DT                 <NA>            98          Active
#> 3156   2021 <NA>       DT                 <NA>             0 Injured Reserve
#> 3157   2021 <NA>       DT                 <NA>            95          Active
#> 3158   2021 <NA>       DT                  LDT            95          Active
#> 3159   2021 <NA>       DT                 <NA>            64          Active
#> 3160   2021 <NA>       DT                 <NA>            66        Inactive
#> 3161   2021 <NA>       DT                 <NA>            62          Active
#> 3162   2021 <NA>       DT                   DL            98          Active
#> 3163   2021 <NA>       DT                   DT            79        Inactive
#> 3164   2021 <NA>       DT                 <NA>            93          Active
#> 3165   2021 <NA>       DT                 <NA>            94        Inactive
#> 3166   2021 <NA>       DT                 <NA>            78          Active
#> 3167   2021 <NA>       DT                  LDT             0 Injured Reserve
#> 3168   2021 <NA>       DT                 <NA>            98        Inactive
#> 3169   2021 <NA>       DT                   NT            93        Inactive
#> 3170   2021 <NA>       DT                  RDE            96        Inactive
#> 3171   2021 <NA>       DT                 <NA>            97        Inactive
#> 3172   2021 <NA>       DT                 <NA>             0 Injured Reserve
#> 3173   2021 <NA>       DT                 <NA>            61          Active
#> 3174   2021 <NA>       DT                  LDT             0          Active
#> 3175   2021 <NA>       DT                 <NA>             0        Inactive
#> 3176   2021 <NA>       DT                 <NA>             0 Injured Reserve
#> 3177   2021 <NA>       DT                 <NA>             0        Inactive
#> 3178   2021 <NA>       DT                 <NA>            90        Inactive
#> 3179   2021 <NA>       DT                 <NA>            60          Active
#> 3180   2021 <NA>       DT                 <NA>             0        Inactive
#> 3181   2021 <NA>       DT                 <NA>             0        Inactive
#> 3182   2021 <NA>       DT                 <NA>             0 Injured Reserve
#> 3183   2021 <NA>       DT                  RDE            73        Inactive
#> 3184   2021 <NA>       DT                 <NA>            61          Active
#> 3185   2021 <NA>       DT                 <NA>             0          Active
#> 3186   2021 <NA>       DT                   NT             0          Active
#> 3187   2021 <NA>       DT                 <NA>            72        Inactive
#> 3188   2021 <NA>       DT                 <NA>            97          Active
#> 3189   2021 <NA>       DT                 <NA>             0        Inactive
#> 3190   2021 <NA>       DT                 <NA>            65        Inactive
#> 3191   2021 <NA>       DT                  RDT            97          Active
#> 3192   2021 <NA>       DT                 <NA>            93          Active
#> 3193   2021 <NA>       DT                 <NA>             0          Active
#> 3194   2021 <NA>       DT                 <NA>            61        Inactive
#> 3195   2021 <NA>       DT                 <NA>            97        Inactive
#> 3196   2021 <NA>       DT                 <NA>            73          Active
#> 3197   2021 <NA>       DT                 <NA>            71          Active
#> 3198   2021 <NA>       DT                 <NA>             0          Active
#> 3199   2021 <NA>       DT                 <NA>            94        Inactive
#> 3200   2021 <NA>       DT                 <NA>            76          Active
#> 3201   2021 <NA>       DT                 <NA>            65        Inactive
#> 3202   2021 <NA>       DT                 <NA>            97          Active
#> 3203   2021 <NA>       DT                 <NA>             0          Active
#> 3204   2021 <NA>       DT                 <NA>             0          Active
#> 3205   2021 <NA>       DT                   NT             0 Injured Reserve
#> 3206   2021 <NA>       DT                 <NA>            77 Injured Reserve
#> 3207   2021 <NA>       DT                 <NA>             0          Active
#> 3208   2021 <NA>       DT                   DE             0          Active
#> 3209   2021 <NA>       DT                   DE            93        Inactive
#> 3210   2021 <NA>       DT                 <NA>            65        Inactive
#> 3211   2021 <NA>       DT                 <NA>            78          Active
#> 3212   2021 <NA>       DT                   NT            94        Inactive
#> 3213   2021 <NA>       DT                 <NA>            60        Inactive
#> 3214   2021 <NA>       DT                 <NA>            93        Inactive
#> 3215   2021 <NA>       DT                 <NA>             0        Inactive
#> 3216   2021 <NA>       DT                 <NA>            67        Inactive
#> 3217   2021 <NA>       DT                  LDT             0          Active
#> 3218   2021 <NA>       DT                   NT            90        Inactive
#> 3219   2021 <NA>       DT                 <NA>             0          Active
#> 3220   2021 <NA>       DT                 <NA>            93          Active
#> 3221   2021 <NA>       DT                 <NA>            93        Inactive
#> 3222   2021 <NA>       DT                 <NA>            78        Inactive
#> 3223   2021 <NA>       DT                 <NA>            53        Inactive
#> 3224   2021 <NA>       DT                 <NA>            65          Active
#> 3225   2021 <NA>       DT                 <NA>            91          Active
#> 3226   2021 <NA>       DT                 <NA>            90 Injured Reserve
#> 3227   2021 <NA>       DT                 <NA>            63        Inactive
#> 3228   2021 <NA>       DT                 ROLB             0          Active
#> 3229   2021 <NA>       DT                 <NA>            61          Active
#> 3230   2021 <NA>       DT                 <NA>            95          Active
#> 3231   2021 <NA>       DT                 <NA>            97        Inactive
#> 3232   2021 <NA>       DT                   DT             0          Active
#> 3233   2021 <NA>       DT                 <NA>            93        Inactive
#> 3234   2021 <NA>       DT                  LDT            99          Active
#> 3235   2021 <NA>       DT                 <NA>             0 Injured Reserve
#> 3236   2021 <NA>       DT                 <NA>            75        Inactive
#> 3237   2021 <NA>       DT                 <NA>            65        Inactive
#> 3238   2021 <NA>       DT                 <NA>            72          Active
#> 3239   2021 <NA>       DT                 <NA>            96        Inactive
#> 3240   2021 <NA>       DT                 <NA>            96 Injured Reserve
#> 3241   2021 <NA>       DT                 <NA>            68          Active
#> 3242   2021 <NA>       DT                 <NA>            66        Inactive
#> 3243   2021 <NA>       DT                 <NA>            70          Active
#> 3244   2021 <NA>       DT                 <NA>            77        Inactive
#> 3245   2021 <NA>       DT                 <NA>             0          Active
#> 3246   2021 <NA>       DT                  RDE             0 Injured Reserve
#> 3247   2021 <NA>       DT                 <NA>             0          Active
#> 3248   2021 <NA>       DT                 <NA>            70          Active
#> 3249   2021 <NA>       DT                 <NA>            64          Active
#> 3250   2021 <NA>       DT                 <NA>            48          Active
#> 3251   2021 <NA>       FB                 <NA>            48        Inactive
#> 3252   2021 <NA>       FB                 <NA>            96          Active
#> 3253   2021 <NA>       FB                 <NA>            30          Active
#> 3254   2021 <NA>       FB                 <NA>            44        Inactive
#> 3255   2021 <NA>       FB                 <NA>            48        Inactive
#> 3256   2021 <NA>       FB                 <NA>            47        Inactive
#> 3257   2021 <NA>       FB                 <NA>            30          Active
#> 3258   2021 <NA>       FB                 <NA>            40        Inactive
#> 3259   2021 <NA>       FB                 <NA>            49        Inactive
#> 3260   2021 <NA>       FB                 <NA>            45        Inactive
#> 3261   2021 <NA>       FB                 <NA>            36          Active
#> 3262   2021 <NA>       FB                 <NA>            40        Inactive
#> 3263   2021 <NA>       FB                 <NA>            32        Inactive
#> 3264   2021 <NA>       FB                 <NA>             0 Injured Reserve
#> 3265   2021 <NA>       FB                 <NA>            45          Active
#> 3266   2021 <NA>       FB                 <NA>            45        Inactive
#> 3267   2021 <NA>       FB                 <NA>            48          Active
#> 3268   2021 <NA>       FB                 <NA>             0 Injured Reserve
#> 3269   2021 <NA>       FB                 <NA>            46        Inactive
#> 3270   2021 <NA>       FB                   RB             0 Injured Reserve
#> 3271   2021 <NA>       FB                 <NA>            22        Inactive
#> 3272   2021 <NA>       FB                 <NA>            35        Inactive
#> 3273   2021 <NA>       FB                 <NA>             0 Injured Reserve
#> 3274   2021 <NA>       FB                 <NA>             0 Injured Reserve
#> 3275   2021 <NA>       FB                 <NA>             0          Active
#> 3276   2021 <NA>       FB                 <NA>            27        Inactive
#> 3277   2021 <NA>       FB                 <NA>             0          Active
#> 3278   2021 <NA>       FB                 <NA>             0          Active
#> 3279   2021 <NA>       FB                 <NA>             0          Active
#> 3280   2021 <NA>       FB                 <NA>            75        Inactive
#> 3281   2021 <NA>       FS                 <NA>            29        Inactive
#> 3282   2021 <NA>       FS                 <NA>            35        Inactive
#> 3283   2021 <NA>       FS                 <NA>            34          Active
#> 3284   2021 <NA>       FS                 <NA>            22          Active
#> 3285   2021 <NA>       FS                 <NA>            23        Inactive
#> 3286   2021 <NA>       FS                 <NA>             0          Active
#> 3287   2021 <NA>       FS                 <NA>            45        Inactive
#> 3288   2021 <NA>       FS                 <NA>            38          Active
#> 3289   2021 <NA>       FS                 <NA>            44        Inactive
#> 3290   2021 <NA>       FS                 <NA>            39          Active
#> 3291   2021 <NA>       FS                 <NA>            35        Inactive
#> 3292   2021 <NA>       FS                 <NA>            31        Inactive
#> 3293   2021 <NA>       FS                 <NA>            41        Inactive
#> 3294   2021 <NA>       FS                 <NA>            31        Inactive
#> 3295   2021 <NA>       FS                 <NA>            35          Active
#> 3296   2021 <NA>       FS                 <NA>            28        Inactive
#> 3297   2021 <NA>       FS                 <NA>            33          Active
#> 3298   2021 <NA>       FS                 <NA>             0        Inactive
#> 3299   2021 <NA>       FS                 <NA>            42          Active
#> 3300   2021 <NA>       FS                 <NA>            23        Inactive
#> 3301   2021 <NA>       FS                 <NA>            35          Active
#> 3302   2021 <NA>       FS                 <NA>            36        Inactive
#> 3303   2021 <NA>       FS                 <NA>            28          Active
#> 3304   2021 <NA>       FS                 <NA>            20        Inactive
#> 3305   2021 <NA>       FS                 <NA>            24        Inactive
#> 3306   2021 <NA>       FS                   FS            29          Active
#> 3307   2021 <NA>       FS                 <NA>            41        Inactive
#> 3308   2021 <NA>       FS                 <NA>             0 Injured Reserve
#> 3309   2021 <NA>       FS                 <NA>             0          Active
#> 3310   2021 <NA>       FS                 <NA>            35          Active
#> 3311   2021 <NA>       FS                 <NA>            25          Active
#> 3312   2021 <NA>       FS                 <NA>            24          Active
#> 3313   2021 <NA>       FS                 <NA>            31          Active
#> 3314   2021 <NA>       FS                 <NA>            38        Inactive
#> 3315   2021 <NA>       FS                 <NA>            46        Inactive
#> 3316   2021 <NA>       FS                 <NA>            45          Active
#> 3317   2021 <NA>       FS                 <NA>            40        Inactive
#> 3318   2021 <NA>       FS                   FS            37        Inactive
#> 3319   2021 <NA>       FS                 <NA>            45        Inactive
#> 3320   2021 <NA>       FS                 <NA>             0 Injured Reserve
#> 3321   2021 <NA>       FS                 <NA>            46 Injured Reserve
#> 3322   2021 <NA>       FS                 <NA>            21        Inactive
#> 3323   2021 <NA>       FS                 <NA>             0 Injured Reserve
#> 3324   2021 <NA>       FS                 <NA>            34          Active
#> 3325   2021 <NA>       FS                 <NA>             0        Inactive
#> 3326   2021 <NA>       FS                 <NA>            38          Active
#> 3327   2021 <NA>       FS                 <NA>             0          Active
#> 3328   2021 <NA>       FS                 <NA>            27        Inactive
#> 3329   2021 <NA>       FS                 <NA>            34        Inactive
#> 3330   2021 <NA>       FS                 <NA>            30        Inactive
#> 3331   2021 <NA>       FS                 <NA>             0          Active
#> 3332   2021 <NA>       FS                 <NA>            37          Active
#> 3333   2021 <NA>       FS                 <NA>            20          Active
#> 3334   2021 <NA>       FS                 <NA>            36          Active
#> 3335   2021 <NA>       FS                 <NA>             0          Active
#> 3336   2021 <NA>       FS                 <NA>            29        Inactive
#> 3337   2021 <NA>       FS                 <NA>            29        Inactive
#> 3338   2021 <NA>       FS                 <NA>            29          Active
#> 3339   2021 <NA>       FS                 <NA>            43          Active
#> 3340   2021 <NA>       FS                 <NA>            21          Active
#> 3341   2021 <NA>       FS                 <NA>             0 Injured Reserve
#> 3342   2021 <NA>       FS                 <NA>            32          Active
#> 3343   2021 <NA>       FS                 <NA>            34        Inactive
#> 3344   2021 <NA>       FS                 <NA>            41          Active
#> 3345   2021 <NA>       FS                 <NA>             0          Active
#> 3346   2021 <NA>        G                 <NA>            66          Active
#> 3347   2021 <NA>        G                 <NA>             0          Active
#> 3348   2021 <NA>        G                 <NA>            72        Inactive
#> 3349   2021 <NA>        G                 <NA>            74        Inactive
#> 3350   2021 <NA>        G                 <NA>            70          Active
#> 3351   2021 <NA>        G                 <NA>            60        Inactive
#> 3352   2021 <NA>        G                 <NA>            65          Active
#> 3353   2021 <NA>        G                 <NA>            68          Active
#> 3354   2021 <NA>        G                 <NA>            61        Inactive
#> 3355   2021 <NA>        G                 <NA>            68          Active
#> 3356   2021 <NA>        G                 <NA>             0          Active
#> 3357   2021 <NA>        G                 <NA>            69          Active
#> 3358   2021 <NA>        G                 <NA>            60        Inactive
#> 3359   2021 <NA>        G                 <NA>            61        Inactive
#> 3360   2021 <NA>        G                   RG            78        Inactive
#> 3361   2021 <NA>        G                 <NA>            68        Inactive
#> 3362   2021 <NA>        G                 <NA>            71        Inactive
#> 3363   2021 <NA>        G                   LG            65        Inactive
#> 3364   2021 <NA>        G                 <NA>            65          Active
#> 3365   2021 <NA>        G                 <NA>            62        Inactive
#> 3366   2021 <NA>        G                   LG             0 Injured Reserve
#> 3367   2021 <NA>        G                 <NA>            66        Inactive
#> 3368   2021 <NA>        G                 <NA>            65        Inactive
#> 3369   2021 <NA>        G                 <NA>            68          Active
#> 3370   2021 <NA>        G                 <NA>            74        Inactive
#> 3371   2021 <NA>        G                 <NA>             0 Injured Reserve
#> 3372   2021 <NA>        G                   RG            67        Inactive
#> 3373   2021 <NA>        G                 <NA>            63          Active
#> 3374   2021 <NA>        G                 <NA>            69        Inactive
#> 3375   2021 <NA>        G                 <NA>             0          Active
#> 3376   2021 <NA>        G                 <NA>            63        Inactive
#> 3377   2021 <NA>        G                 <NA>            63        Inactive
#> 3378   2021 <NA>        G                 <NA>            75        Inactive
#> 3379   2021 <NA>        G                 <NA>            63          Active
#> 3380   2021 <NA>        G                 <NA>             0        Inactive
#> 3381   2021 <NA>        G                 <NA>             0          Active
#> 3382   2021 <NA>        G                 <NA>            74        Inactive
#> 3383   2021 <NA>        G                 <NA>            64        Inactive
#> 3384   2021 <NA>        G                 <NA>            63        Inactive
#> 3385   2021 <NA>        G                 <NA>            62        Inactive
#> 3386   2021 <NA>        G                 <NA>            75        Inactive
#> 3387   2021 <NA>        G                 <NA>             0 Injured Reserve
#> 3388   2021 <NA>        G                   RG            72        Inactive
#> 3389   2021 <NA>        G                 <NA>            65        Inactive
#> 3390   2021 <NA>        G                 <NA>            62        Inactive
#> 3391   2021 <NA>        G                 <NA>            69        Inactive
#> 3392   2021 <NA>        G                 <NA>            66        Inactive
#> 3393   2021 <NA>        G                 <NA>            61        Inactive
#> 3394   2021 <NA>        G                 <NA>            62        Inactive
#> 3395   2021 <NA>        G                 <NA>             0          Active
#> 3396   2021 <NA>        G                 <NA>            66        Inactive
#> 3397   2021 <NA>        G                 <NA>            70        Inactive
#> 3398   2021 <NA>        G                 <NA>             0          Active
#> 3399   2021 <NA>        G                 <NA>             0        Inactive
#> 3400   2021 <NA>        G                 <NA>             0          Active
#> 3401   2021 <NA>        G                 <NA>            63          Active
#> 3402   2021 <NA>        G                 <NA>             0 Injured Reserve
#> 3403   2021 <NA>        G                 <NA>             0 Injured Reserve
#> 3404   2021 <NA>        G                 <NA>             0 Injured Reserve
#> 3405   2021 <NA>        G                 <NA>            79        Inactive
#> 3406   2021 <NA>        G                 <NA>            60          Active
#> 3407   2021 <NA>        G                 <NA>             0          Active
#> 3408   2021 <NA>        G                 <NA>            69        Inactive
#> 3409   2021 <NA>        G                 <NA>            68        Inactive
#> 3410   2021 <NA>        G                 <NA>            60          Active
#> 3411   2021 <NA>        G                   RT            71          Active
#> 3412   2021 <NA>        G                 <NA>            66          Active
#> 3413   2021 <NA>        G                 <NA>            73          Active
#> 3414   2021 <NA>        G                 <NA>             0        Inactive
#> 3415   2021 <NA>        G                 <NA>            74          Active
#> 3416   2021 <NA>        G                 <NA>            78        Inactive
#> 3417   2021 <NA>        G                 <NA>            65        Inactive
#> 3418   2021 <NA>        G                 <NA>            79          Active
#> 3419   2021 <NA>        G                 <NA>            72        Inactive
#> 3420   2021 <NA>        G                 <NA>            76          Active
#> 3421   2021 <NA>        G                   LG            66          Active
#> 3422   2021 <NA>        G                 <NA>            60          Active
#> 3423   2021 <NA>        G                 <NA>            64          Active
#> 3424   2021 <NA>        G                 <NA>            61        Inactive
#> 3425   2021 <NA>        G                 <NA>            67        Inactive
#> 3426   2021 <NA>        G                 <NA>            64          Active
#> 3427   2021 <NA>        G                 <NA>            78          Active
#> 3428   2021 <NA>        G                   LG            69        Inactive
#> 3429   2021 <NA>        G                 <NA>            60          Active
#> 3430   2021 <NA>        G                 <NA>            78        Inactive
#> 3431   2021 <NA>        G                 <NA>             0          Active
#> 3432   2021 <NA>        G                 <NA>            63          Active
#> 3433   2021 <NA>        G                 <NA>            64          Active
#> 3434   2021 <NA>        G                 <NA>            67          Active
#> 3435   2021 <NA>        G                 <NA>             0          Active
#> 3436   2021 <NA>        G                 <NA>            68          Active
#> 3437   2021 <NA>        G                 <NA>            66          Active
#> 3438   2021 <NA>        G                 <NA>            61        Inactive
#> 3439   2021 <NA>        G                 <NA>            76        Inactive
#> 3440   2021 <NA>        G                 <NA>            70          Active
#> 3441   2021 <NA>        G                 <NA>            63          Active
#> 3442   2021 <NA>        G                    C            66          Active
#> 3443   2021 <NA>        G                   LG             0          Active
#> 3444   2021 <NA>        G                 <NA>            68        Inactive
#> 3445   2021 <NA>        G                 <NA>            60        Inactive
#> 3446   2021 <NA>        G                 <NA>            64        Inactive
#> 3447   2021 <NA>        G                 <NA>            72          Active
#> 3448   2021 <NA>        G                 <NA>            77          Active
#> 3449   2021 <NA>        G                 <NA>            68        Inactive
#> 3450   2021 <NA>        G                 <NA>            74          Active
#> 3451   2021 <NA>        G                 <NA>            79          Active
#> 3452   2021 <NA>        G                 <NA>             0 Injured Reserve
#> 3453   2021 <NA>        G                 <NA>             0          Active
#> 3454   2021 <NA>        G                 <NA>             0          Active
#> 3455   2021 <NA>        G                 <NA>             0          Active
#> 3456   2021 <NA>        G                 <NA>            76          Active
#> 3457   2021 <NA>        G                 <NA>             0 Injured Reserve
#> 3458   2021 <NA>        G                 <NA>            67          Active
#> 3459   2021 <NA>        G                 <NA>            74          Active
#> 3460   2021 <NA>        G                 <NA>            68          Active
#> 3461   2021 <NA>        G                 <NA>            73        Inactive
#> 3462   2021 <NA>        G                 <NA>             0          Active
#> 3463   2021 <NA>        G                 <NA>            73        Inactive
#> 3464   2021 <NA>        G                 <NA>             0 Injured Reserve
#> 3465   2021 <NA>        G                 <NA>            77        Inactive
#> 3466   2021 <NA>        G                 <NA>            67        Inactive
#> 3467   2021 <NA>        G                 <NA>            75          Active
#> 3468   2021 <NA>        G                 <NA>            64          Active
#> 3469   2021 <NA>        G                 <NA>            73          Active
#> 3470   2021 <NA>        G                 <NA>            68          Active
#> 3471   2021 <NA>        G                 <NA>            60          Active
#> 3472   2021 <NA>        G                 <NA>            61          Active
#> 3473   2021 <NA>        G                 <NA>            68          Active
#> 3474   2021 <NA>        G                 <NA>            69        Inactive
#> 3475   2021 <NA>        G                 <NA>            79          Active
#> 3476   2021 <NA>        G                 <NA>             0          Active
#> 3477   2021 <NA>        G                 <NA>            63          Active
#> 3478   2021 <NA>        G                 <NA>             0          Active
#> 3479   2021 <NA>        G                   RG            62          Active
#> 3480   2021 <NA>        G                   RG             0 Injured Reserve
#> 3481   2021 <NA>        G                 <NA>            67          Active
#> 3482   2021 <NA>        G                 <NA>            68        Inactive
#> 3483   2021 <NA>        G                 <NA>            68        Inactive
#> 3484   2021 <NA>      ILB                 RILB             0          Active
#> 3485   2021 <NA>      ILB                 <NA>            96        Inactive
#> 3486   2021 <NA>      ILB                 <NA>            45          Active
#> 3487   2021 <NA>      ILB                 <NA>            53        Inactive
#> 3488   2021 <NA>      ILB                 <NA>             0          Active
#> 3489   2021 <NA>      ILB                 <NA>            53          Active
#> 3490   2021 <NA>      ILB                 <NA>            47          Active
#> 3491   2021 <NA>      ILB                 <NA>             0        Inactive
#> 3492   2021 <NA>      ILB                 <NA>            46          Active
#> 3493   2021 <NA>      ILB                 <NA>            58        Inactive
#> 3494   2021 <NA>      ILB                 <NA>            50        Inactive
#> 3495   2021 <NA>      ILB                 <NA>             0        Inactive
#> 3496   2021 <NA>      ILB                 <NA>            59          Active
#> 3497   2021 <NA>      ILB                 <NA>            91          Active
#> 3498   2021 <NA>      ILB                 <NA>            52        Inactive
#> 3499   2021 <NA>      ILB                 <NA>            41        Inactive
#> 3500   2021 <NA>      ILB                 <NA>            46          Active
#> 3501   2021 <NA>      ILB                 <NA>            46          Active
#> 3502   2021 <NA>      ILB                 <NA>            52          Active
#> 3503   2021 <NA>      ILB                 <NA>            53        Inactive
#> 3504   2021 <NA>      ILB                 <NA>             0          Active
#> 3505   2021 <NA>      ILB                 <NA>            99        Inactive
#> 3506   2021 <NA>      ILB                 <NA>            48          Active
#> 3507   2021 <NA>      ILB                 <NA>            44        Inactive
#> 3508   2021 <NA>      ILB                 <NA>             0          Active
#> 3509   2021 <NA>      ILB                 <NA>            51        Inactive
#> 3510   2021 <NA>      ILB                 <NA>            47          Active
#> 3511   2021 <NA>      ILB                 <NA>            59        Inactive
#> 3512   2021 <NA>      ILB                 <NA>             0        Inactive
#> 3513   2021 <NA>      ILB                 <NA>            50          Active
#> 3514   2021 <NA>      ILB                 <NA>            50        Inactive
#> 3515   2021 <NA>      ILB                 <NA>             0          Active
#> 3516   2021 <NA>      ILB                 <NA>            52        Inactive
#> 3517   2021 <NA>      ILB                 <NA>            59          Active
#> 3518   2021 <NA>      ILB                 <NA>            57          Active
#> 3519   2021 <NA>      ILB                 <NA>            48          Active
#> 3520   2021 <NA>      ILB                 <NA>            53        Inactive
#> 3521   2021 <NA>      ILB                 <NA>            44          Active
#> 3522   2021 <NA>      ILB                 <NA>            53        Inactive
#> 3523   2021 <NA>      ILB                 <NA>             0          Active
#> 3524   2021 <NA>      ILB                 <NA>            43          Active
#> 3525   2021 <NA>      ILB                 <NA>            44        Inactive
#> 3526   2021 <NA>      ILB                 <NA>            40          Active
#> 3527   2021 <NA>      ILB                 <NA>             0          Active
#> 3528   2021 <NA>      ILB                 <NA>            55          Active
#> 3529   2021 <NA>        K                 <NA>             0 Injured Reserve
#> 3530   2021 <NA>        K                 <NA>             6        Inactive
#> 3531   2021 <NA>        K                 <NA>             5          Active
#> 3532   2021 <NA>        K                 <NA>            40 Injured Reserve
#> 3533   2021 <NA>        K                 <NA>             5        Inactive
#> 3534   2021 <NA>        K                 <NA>             2        Inactive
#> 3535   2021 <NA>        K                 <NA>             0 Injured Reserve
#> 3536   2021 <NA>        K                 <NA>             0          Active
#> 3537   2021 <NA>        K                 <NA>             1          Active
#> 3538   2021 <NA>        K                    K             0          Active
#> 3539   2021 <NA>        K                 <NA>             9          Active
#> 3540   2021 <NA>        K                 <NA>             4        Inactive
#> 3541   2021 <NA>        K                    K             0          Active
#> 3542   2021 <NA>        K                 <NA>             6        Inactive
#> 3543   2021 <NA>        K                 <NA>             8        Inactive
#> 3544   2021 <NA>        K                 <NA>             2        Inactive
#> 3545   2021 <NA>        K                    K             9        Inactive
#> 3546   2021 <NA>        K                 <NA>             0 Injured Reserve
#> 3547   2021 <NA>        K                 <NA>             0 Injured Reserve
#> 3548   2021 <NA>        K                 <NA>             4        Inactive
#> 3549   2021 <NA>        K                    K             0          Active
#> 3550   2021 <NA>        K                 <NA>             0        Inactive
#> 3551   2021 <NA>        K                 <NA>             3        Inactive
#> 3552   2021 <NA>        K                 <NA>             1        Inactive
#> 3553   2021 <NA>        K                 <NA>             3          Active
#> 3554   2021 <NA>        K                 <NA>             9        Inactive
#> 3555   2021 <NA>        K                 <NA>             0          Active
#> 3556   2021 <NA>       LB                 <NA>            44        Inactive
#> 3557   2021 <NA>       LB                  WLB             0          Active
#> 3558   2021 <NA>       LB                 <NA>            59 Injured Reserve
#> 3559   2021 <NA>       LB                 <NA>            55          Active
#> 3560   2021 <NA>       LB                 <NA>            52        Inactive
#> 3561   2021 <NA>       LB                 RILB            48          Active
#> 3562   2021 <NA>       LB                 <NA>             0 Injured Reserve
#> 3563   2021 <NA>       LB                 <NA>             0          Active
#> 3564   2021 <NA>       LB                  WLB             0 Injured Reserve
#> 3565   2021 <NA>       LB                 <NA>            50        Inactive
#> 3566   2021 <NA>       LB                 <NA>            40          Active
#> 3567   2021 <NA>       LB                 <NA>            55        Inactive
#> 3568   2021 <NA>       LB                 <NA>            57        Inactive
#> 3569   2021 <NA>       LB                 <NA>            54        Inactive
#> 3570   2021 <NA>       LB                 <NA>            58          Active
#> 3571   2021 <NA>       LB                 <NA>            51        Inactive
#> 3572   2021 <NA>       LB                 <NA>            59          Active
#> 3573   2021 <NA>       LB                 <NA>            50          Active
#> 3574   2021 <NA>       LB                 <NA>            52          Active
#> 3575   2021 <NA>       LB                 <NA>            49 Injured Reserve
#> 3576   2021 <NA>       LB                 <NA>            45          Active
#> 3577   2021 <NA>       LB                 <NA>            52        Inactive
#> 3578   2021 <NA>       LB                 <NA>             0          Active
#> 3579   2021 <NA>       LB                 <NA>             0          Active
#> 3580   2021 <NA>       LB                 <NA>             0        Inactive
#> 3581   2021 <NA>       LB                 <NA>            54          Active
#> 3582   2021 <NA>       LB                 <NA>            57        Inactive
#> 3583   2021 <NA>       LB                 <NA>             0 Injured Reserve
#> 3584   2021 <NA>       LB                 <NA>            47          Active
#> 3585   2021 <NA>       LB                 <NA>            50        Inactive
#> 3586   2021 <NA>       LB                 <NA>            56 Injured Reserve
#> 3587   2021 <NA>       LB                 <NA>            52          Active
#> 3588   2021 <NA>       LB                 RILB            42        Inactive
#> 3589   2021 <NA>       LB                 <NA>            56        Inactive
#> 3590   2021 <NA>       LB                 <NA>            55        Inactive
#> 3591   2021 <NA>       LB                 <NA>            54        Inactive
#> 3592   2021 <NA>       LB                 <NA>            59          Active
#> 3593   2021 <NA>       LB                 <NA>            47        Inactive
#> 3594   2021 <NA>       LB                 <NA>            45        Inactive
#> 3595   2021 <NA>       LB                 <NA>             0 Injured Reserve
#> 3596   2021 <NA>       LB                 <NA>             0        Inactive
#> 3597   2021 <NA>       LB                 <NA>             0        Inactive
#> 3598   2021 <NA>       LB                  SLB             0 Injured Reserve
#> 3599   2021 <NA>       LB                 <NA>             0          Active
#> 3600   2021 <NA>       LB                 <NA>            93 Injured Reserve
#> 3601   2021 <NA>       LB                 <NA>             0 Injured Reserve
#> 3602   2021 <NA>       LB                 <NA>            47          Active
#> 3603   2021 <NA>       LB                 <NA>            41        Inactive
#> 3604   2021 <NA>       LB                 <NA>            91        Inactive
#> 3605   2021 <NA>       LB                 <NA>            55        Inactive
#> 3606   2021 <NA>       LB                 <NA>             0          Active
#> 3607   2021 <NA>       LB                 <NA>            53        Inactive
#> 3608   2021 <NA>       LB                 <NA>             0          Active
#> 3609   2021 <NA>       LB                 <NA>            40          Active
#> 3610   2021 <NA>       LB                  MLB             0          Active
#> 3611   2021 <NA>       LB                 <NA>             0          Active
#> 3612   2021 <NA>       LB                  RDE            52        Inactive
#> 3613   2021 <NA>       LB                 <NA>            42        Inactive
#> 3614   2021 <NA>       LB                 <NA>            45        Inactive
#> 3615   2021 <NA>       LB                 <NA>            42        Inactive
#> 3616   2021 <NA>       LB                 <NA>            91        Inactive
#> 3617   2021 <NA>       LB                 <NA>             0          Active
#> 3618   2021 <NA>       LB                 <NA>             0          Active
#> 3619   2021 <NA>       LB                 <NA>             0 Injured Reserve
#> 3620   2021 <NA>       LB                 <NA>            54          Active
#> 3621   2021 <NA>       LB                 <NA>            50        Inactive
#> 3622   2021 <NA>       LB                 <NA>            51          Active
#> 3623   2021 <NA>       LB                 <NA>            57        Inactive
#> 3624   2021 <NA>       LB                 RILB             0 Injured Reserve
#> 3625   2021 <NA>       LB                 <NA>            45          Active
#> 3626   2021 <NA>       LB                 <NA>            49          Active
#> 3627   2021 <NA>       LB                 <NA>             0          Active
#> 3628   2021 <NA>       LB                 <NA>            49          Active
#> 3629   2021 <NA>       LB                 <NA>            56          Active
#> 3630   2021 <NA>       LB                 <NA>            49        Inactive
#> 3631   2021 <NA>       LB                 <NA>            52          Active
#> 3632   2021 <NA>       LB                 <NA>            50        Inactive
#> 3633   2021 <NA>       LB                 <NA>            55        Inactive
#> 3634   2021 <NA>       LB                 <NA>             0          Active
#> 3635   2021 <NA>       LB                 <NA>             0          Active
#> 3636   2021 <NA>       LB                 <NA>            55          Active
#> 3637   2021 <NA>       LB                 <NA>             0          Active
#> 3638   2021 <NA>       LB                 <NA>            52          Active
#> 3639   2021 <NA>       LB                 <NA>            45        Inactive
#> 3640   2021 <NA>       LB                 <NA>            53        Inactive
#> 3641   2021 <NA>       LB                  SLB            59        Inactive
#> 3642   2021 <NA>       LB                  SLB            59          Active
#> 3643   2021 <NA>       LB                 <NA>            56        Inactive
#> 3644   2021 <NA>       LB                 <NA>             0          Active
#> 3645   2021 <NA>       LB                 LOLB            42          Active
#> 3646   2021 <NA>       LB                  SAM            59        Inactive
#> 3647   2021 <NA>       LB                 <NA>            42        Inactive
#> 3648   2021 <NA>       LB                 <NA>             0          Active
#> 3649   2021 <NA>       LB                 <NA>            47          Active
#> 3650   2021 <NA>       LB                 <NA>             0 Injured Reserve
#> 3651   2021 <NA>       LB                 <NA>            41          Active
#> 3652   2021 <NA>       LB                 <NA>            94          Active
#> 3653   2021 <NA>       LB                 <NA>            47        Inactive
#> 3654   2021 <NA>       LB                 <NA>            53 Injured Reserve
#> 3655   2021 <NA>       LB                 <NA>            53        Inactive
#> 3656   2021 <NA>       LB                  WLB             0          Active
#> 3657   2021 <NA>       LB                 <NA>            53        Inactive
#> 3658   2021 <NA>       LB                 <NA>            63          Active
#> 3659   2021 <NA>       LB                   LB            54        Inactive
#> 3660   2021 <NA>       LB                 <NA>             0          Active
#> 3661   2021 <NA>       LB                 <NA>             0          Active
#> 3662   2021 <NA>       LB                 <NA>            51        Inactive
#> 3663   2021 <NA>       LB                 <NA>            69          Active
#> 3664   2021 <NA>       LB                 <NA>             0          Active
#> 3665   2021 <NA>       LB                 <NA>            51          Active
#> 3666   2021 <NA>       LB                 <NA>            52          Active
#> 3667   2021 <NA>       LB                  SLB             0          Active
#> 3668   2021 <NA>       LB                 <NA>             0          Active
#> 3669   2021 <NA>       LB                 <NA>            46          Active
#> 3670   2021 <NA>       LB                 ROLB             0          Active
#> 3671   2021 <NA>       LB                 <NA>             0        Inactive
#> 3672   2021 <NA>       LB                 <NA>            50 Injured Reserve
#> 3673   2021 <NA>       LB                   LB             0 Injured Reserve
#> 3674   2021 <NA>       LB                 MIKE             0          Active
#> 3675   2021 <NA>       LB                 LOLB            58 Injured Reserve
#> 3676   2021 <NA>       LB                  MLB             0 Injured Reserve
#> 3677   2021 <NA>       LB                 <NA>            57          Active
#> 3678   2021 <NA>       LB                 <NA>            57          Active
#> 3679   2021 <NA>       LB                  MLB            52        Inactive
#> 3680   2021 <NA>       LB                 <NA>            52        Inactive
#> 3681   2021 <NA>       LB                 <NA>            42        Inactive
#> 3682   2021 <NA>       LB                 MIKE            48          Active
#> 3683   2021 <NA>       LB                 <NA>            47          Active
#> 3684   2021 <NA>       LB                 <NA>            45          Active
#> 3685   2021 <NA>       LB                 <NA>            35          Active
#> 3686   2021 <NA>       LB                 <NA>            47          Active
#> 3687   2021 <NA>       LB                 <NA>            48          Active
#> 3688   2021 <NA>       LB                 <NA>            59          Active
#> 3689   2021 <NA>       LB                 RILB            58        Inactive
#> 3690   2021 <NA>       LB                 <NA>            55        Inactive
#> 3691   2021 <NA>       LB                 <NA>            71        Inactive
#> 3692   2021 <NA>       LB                 <NA>            57        Inactive
#> 3693   2021 <NA>       LB                 <NA>             0 Injured Reserve
#> 3694   2021 <NA>       LB                  LOB             0          Active
#> 3695   2021 <NA>       LB                 <NA>             0          Active
#> 3696   2021 <NA>       LB                 <NA>            55          Active
#> 3697   2021 <NA>       LB                 <NA>            59        Inactive
#> 3698   2021 <NA>       LB                 <NA>            96          Active
#> 3699   2021 <NA>       LB                 RILB             0 Injured Reserve
#> 3700   2021 <NA>       LB                 <NA>            53        Inactive
#> 3701   2021 <NA>       LB                 <NA>            54        Inactive
#> 3702   2021 <NA>       LB                 <NA>            96        Inactive
#> 3703   2021 <NA>       LB                 <NA>            48        Inactive
#> 3704   2021 <NA>       LB                 <NA>             0          Active
#> 3705   2021 <NA>       LB                 <NA>            40          Active
#> 3706   2021 <NA>       LB                  SLB            56        Inactive
#> 3707   2021 <NA>       LB                  SLB             0 Injured Reserve
#> 3708   2021 <NA>       LB                 <NA>            50        Inactive
#> 3709   2021 <NA>       LB                  SLB            59        Inactive
#> 3710   2021 <NA>       LS                 <NA>            59          Active
#> 3711   2021 <NA>       LS                 <NA>            91        Inactive
#> 3712   2021 <NA>       LS                 <NA>            92        Inactive
#> 3713   2021 <NA>       LS                 <NA>            48          Active
#> 3714   2021 <NA>       LS                 <NA>            47        Inactive
#> 3715   2021 <NA>       LS                 <NA>            51          Active
#> 3716   2021 <NA>       LS                 <NA>             0          Active
#> 3717   2021 <NA>       LS                 <NA>             0          Active
#> 3718   2021 <NA>       LS                 <NA>            48        Inactive
#> 3719   2021 <NA>       LS                 <NA>            58        Inactive
#> 3720   2021 <NA>       LS                 <NA>             0          Active
#> 3721   2021 <NA>       LS                 <NA>            47        Inactive
#> 3722   2021 <NA>       LS                 <NA>            63          Active
#> 3723   2021 <NA>       LS                 <NA>            41          Active
#> 3724   2021 <NA>       LS                 <NA>             0          Active
#> 3725   2021 <NA>       LS                 <NA>            46        Inactive
#> 3726   2021 <NA>       LS                 <NA>            46        Inactive
#> 3727   2021 <NA>       LS                 <NA>             0          Active
#> 3728   2021 <NA>       LS                 <NA>             0          Active
#> 3729   2021 <NA>       LS                 <NA>            48          Active
#> 3730   2021 <NA>       NT                 <NA>            96        Inactive
#> 3731   2021 <NA>       NT                 <NA>            96          Active
#> 3732   2021 <NA>       NT                 <NA>            79        Inactive
#> 3733   2021 <NA>       NT                 <NA>            69          Active
#> 3734   2021 <NA>       NT                 <NA>            99        Inactive
#> 3735   2021 <NA>       NT                 <NA>            53          Active
#> 3736   2021 <NA>       NT                 <NA>            97        Inactive
#> 3737   2021 <NA>       NT                 <NA>            61          Active
#> 3738   2021 <NA>       NT                 <NA>            62          Active
#> 3739   2021 <NA>       NT                 <NA>            93          Active
#> 3740   2021 <NA>       NT                 <NA>            95          Active
#> 3741   2021 <NA>       NT                 <NA>            79          Active
#> 3742   2021 <NA>       NT                 <NA>            70          Active
#> 3743   2021 <NA>       NT                 <NA>            63          Active
#> 3744   2021 <NA>       NT                 <NA>            96          Active
#> 3745   2021 <NA>       NT                 <NA>            78          Active
#> 3746   2021 <NA>       NT                 <NA>             0        Inactive
#> 3747   2021 <NA>       NT                 <NA>            91          Active
#> 3748   2021 <NA>       NT                 <NA>            61          Active
#> 3749   2021 <NA>       NT                  LDT            92          Active
#> 3750   2021 <NA>       NT                 <NA>            92          Active
#> 3751   2021 <NA>       NT                   NT            94          Active
#> 3752   2021 <NA>       NT                 <NA>            67        Inactive
#> 3753   2021 <NA>       NT                 <NA>            94          Active
#> 3754   2021 <NA>       NT                 <NA>            62          Active
#> 3755   2021 <NA>       NT                 <NA>            92          Active
#> 3756   2021 <NA>       NT                 <NA>             0          Active
#> 3757   2021 <NA>       NT                   NT             0 Injured Reserve
#> 3758   2021 <NA>       NT                  RDE             0          Active
#> 3759   2021 <NA>       NT                 <NA>            66          Active
#> 3760   2021 <NA>       NT                 <NA>            64          Active
#> 3761   2021 <NA>       NT                 <NA>             0          Active
#> 3762   2021 <NA>       NT                 <NA>            96        Inactive
#> 3763   2021 <NA>       NT                 <NA>            75        Inactive
#> 3764   2021 <NA>       OG                   RG             0          Active
#> 3765   2021 <NA>       OG                   RT            61          Active
#> 3766   2021 <NA>       OG                   LG             0          Active
#> 3767   2021 <NA>       OG                   LG            70        Inactive
#> 3768   2021 <NA>       OG                    C             0          Active
#> 3769   2021 <NA>       OG                 <NA>             0          Active
#> 3770   2021 <NA>       OG                   RG             0 Injured Reserve
#> 3771   2021 <NA>       OG                   RT            75        Inactive
#> 3772   2021 <NA>       OG                 <NA>             0 Injured Reserve
#> 3773   2021 <NA>       OG                   RG             0          Active
#> 3774   2021 <NA>       OG                 <NA>             0          Active
#> 3775   2021 <NA>       OL                 <NA>             0          Active
#> 3776   2021 <NA>       OL                 <NA>             0          Active
#> 3777   2021 <NA>       OL                   RT            78        Inactive
#> 3778   2021 <NA>       OL                 <NA>             0        Inactive
#> 3779   2021 <NA>       OL                 <NA>             0          Active
#> 3780   2021 <NA>       OL                   RG             0          Active
#> 3781   2021 <NA>       OL                 <NA>             0          Active
#> 3782   2021 <NA>       OL                    C            63        Inactive
#> 3783   2021 <NA>       OL                   LT             0          Active
#> 3784   2021 <NA>       OL                   RG            66          Active
#> 3785   2021 <NA>       OL                   RG             0 Injured Reserve
#> 3786   2021 <NA>       OL                   LG             0          Active
#> 3787   2021 <NA>       OL                 <NA>            62        Inactive
#> 3788   2021 <NA>       OL                 <NA>             0          Active
#> 3789   2021 <NA>      OLB                 <NA>            49        Inactive
#> 3790   2021 <NA>      OLB                 <NA>            53          Active
#> 3791   2021 <NA>      OLB                 <NA>            48          Active
#> 3792   2021 <NA>      OLB                 <NA>            49          Active
#> 3793   2021 <NA>      OLB                 <NA>            54          Active
#> 3794   2021 <NA>      OLB                 <NA>             0        Inactive
#> 3795   2021 <NA>      OLB                 <NA>            49        Inactive
#> 3796   2021 <NA>      OLB                 LOLB             0          Active
#> 3797   2021 <NA>      OLB                 <NA>            54        Inactive
#> 3798   2021 <NA>      OLB                 <NA>            59          Active
#> 3799   2021 <NA>      OLB                 <NA>            58          Active
#> 3800   2021 <NA>      OLB                 <NA>            58          Active
#> 3801   2021 <NA>      OLB                 <NA>             0          Active
#> 3802   2021 <NA>      OLB                 <NA>            96          Active
#> 3803   2021 <NA>      OLB                 <NA>            54        Inactive
#> 3804   2021 <NA>      OLB                 <NA>            59          Active
#> 3805   2021 <NA>      OLB                  WLB            53        Inactive
#> 3806   2021 <NA>      OLB                 <NA>            56        Inactive
#> 3807   2021 <NA>      OLB                 <NA>            59          Active
#> 3808   2021 <NA>      OLB                 <NA>            54        Inactive
#> 3809   2021 <NA>      OLB                 <NA>            58          Active
#> 3810   2021 <NA>      OLB                 <NA>             0        Inactive
#> 3811   2021 <NA>      OLB                 <NA>            49        Inactive
#> 3812   2021 <NA>      OLB                 <NA>            42        Inactive
#> 3813   2021 <NA>      OLB                 <NA>            52        Inactive
#> 3814   2021 <NA>      OLB                 <NA>            59          Active
#> 3815   2021 <NA>      OLB                 <NA>             0          Active
#> 3816   2021 <NA>      OLB                 <NA>            50          Active
#> 3817   2021 <NA>      OLB                 <NA>            62          Active
#> 3818   2021 <NA>      OLB                 <NA>            45        Inactive
#> 3819   2021 <NA>      OLB                 <NA>            49          Active
#> 3820   2021 <NA>      OLB                 <NA>            69        Inactive
#> 3821   2021 <NA>      OLB                 <NA>            46        Inactive
#> 3822   2021 <NA>      OLB                 <NA>             0          Active
#> 3823   2021 <NA>      OLB                 <NA>            51        Inactive
#> 3824   2021 <NA>      OLB                 <NA>            50          Active
#> 3825   2021 <NA>      OLB                 <NA>            57          Active
#> 3826   2021 <NA>      OLB                 <NA>            58        Inactive
#> 3827   2021 <NA>      OLB                 <NA>            47          Active
#> 3828   2021 <NA>      OLB                 <NA>             0          Active
#> 3829   2021 <NA>      OLB                 <NA>            51          Active
#> 3830   2021 <NA>      OLB                 <NA>            69          Active
#> 3831   2021 <NA>      OLB                 <NA>            49          Active
#> 3832   2021 <NA>      OLB                 <NA>            50          Active
#> 3833   2021 <NA>      OLB                 <NA>            58          Active
#> 3834   2021 <NA>      OLB                 <NA>            48          Active
#> 3835   2021 <NA>      OLB                 <NA>            48          Active
#> 3836   2021 <NA>      OLB                 <NA>            46          Active
#> 3837   2021 <NA>      OLB                 <NA>             0          Active
#> 3838   2021 <NA>      OLB                 <NA>            96          Active
#> 3839   2021 <NA>      OLB                 <NA>            63        Inactive
#> 3840   2021 <NA>      OLB                 <NA>            59          Active
#> 3841   2021 <NA>      OLB                 <NA>            96          Active
#> 3842   2021 <NA>      OLB                 <NA>            50        Inactive
#> 3843   2021 <NA>      OLB                 <NA>            50        Inactive
#> 3844   2021 <NA>      OLB                 <NA>            48          Active
#> 3845   2021 <NA>      OLB                 <NA>             0        Inactive
#> 3846   2021 <NA>      OLB                 <NA>            90          Active
#> 3847   2021 <NA>      OLB                 <NA>            56        Inactive
#> 3848   2021 <NA>      OLB                 <NA>            94          Active
#> 3849   2021 <NA>      OLB                 <NA>            45          Active
#> 3850   2021 <NA>      OLB                 <NA>            48          Active
#> 3851   2021 <NA>      OLB                 <NA>            46          Active
#> 3852   2021 <NA>      OLB                 <NA>            43          Active
#> 3853   2021 <NA>      OLB                 <NA>            46          Active
#> 3854   2021 <NA>      OLB                 <NA>            49        Inactive
#> 3855   2021 <NA>      OLB                 <NA>            50        Inactive
#> 3856   2021 <NA>      OLB                 <NA>            50          Active
#> 3857   2021 <NA>      OLB                 <NA>            49        Inactive
#> 3858   2021 <NA>      OLB                 <NA>             0          Active
#> 3859   2021 <NA>      OLB                 <NA>            57          Active
#> 3860   2021 <NA>      OLB                 <NA>            95          Active
#> 3861   2021 <NA>      OLB                 <NA>            58          Active
#> 3862   2021 <NA>      OLB                 <NA>            43          Active
#> 3863   2021 <NA>      OLB                 <NA>            59        Inactive
#> 3864   2021 <NA>      OLB                 <NA>            53          Active
#> 3865   2021 <NA>      OLB                  WLB            50        Inactive
#> 3866   2021 <NA>      OLB                 <NA>             0          Active
#> 3867   2021 <NA>      OLB                 <NA>            58        Inactive
#> 3868   2021 <NA>      OLB                 <NA>            45          Active
#> 3869   2021 <NA>      OLB                 <NA>            46        Inactive
#> 3870   2021 <NA>      OLB                 <NA>            54          Active
#> 3871   2021 <NA>      OLB                 <NA>            42        Inactive
#> 3872   2021 <NA>      OLB                 <NA>            45        Inactive
#> 3873   2021 <NA>      OLB                 <NA>            54          Active
#> 3874   2021 <NA>      OLB                 <NA>            57          Active
#> 3875   2021 <NA>      OLB                 <NA>            53        Inactive
#> 3876   2021 <NA>      OLB                 <NA>            46          Active
#> 3877   2021 <NA>      OLB                 <NA>            52          Active
#> 3878   2021 <NA>      OLB                 <NA>            43          Active
#> 3879   2021 <NA>       OT                 <NA>             0        Inactive
#> 3880   2021 <NA>       OT                 <NA>             0          Active
#> 3881   2021 <NA>       OT                 <NA>            69        Inactive
#> 3882   2021 <NA>       OT                 <NA>            63          Active
#> 3883   2021 <NA>       OT                 <NA>            73          Active
#> 3884   2021 <NA>       OT                 <NA>            79          Active
#> 3885   2021 <NA>       OT                   LG             0          Active
#> 3886   2021 <NA>       OT                 <NA>             0          Active
#> 3887   2021 <NA>       OT                 <NA>            77          Active
#> 3888   2021 <NA>       OT                 <NA>            77          Active
#> 3889   2021 <NA>       OT                 <NA>            73          Active
#> 3890   2021 <NA>       OT                 <NA>            62          Active
#> 3891   2021 <NA>       OT                 <NA>            63          Active
#> 3892   2021 <NA>       OT                 <NA>            75        Inactive
#> 3893   2021 <NA>       OT                 <NA>            63          Active
#> 3894   2021 <NA>       OT                 <NA>             0          Active
#> 3895   2021 <NA>       OT                 <NA>            67        Inactive
#> 3896   2021 <NA>       OT                 <NA>            67          Active
#> 3897   2021 <NA>       OT                 <NA>            69        Inactive
#> 3898   2021 <NA>       OT                 <NA>            74          Active
#> 3899   2021 <NA>       OT                 <NA>            75        Inactive
#> 3900   2021 <NA>       OT                 <NA>            60          Active
#> 3901   2021 <NA>       OT                 <NA>            79          Active
#> 3902   2021 <NA>       OT                 <NA>             0          Active
#> 3903   2021 <NA>       OT                 <NA>            60          Active
#> 3904   2021 <NA>       OT                 <NA>            64          Active
#> 3905   2021 <NA>       OT                 <NA>            74        Inactive
#> 3906   2021 <NA>       OT                 <NA>            78          Active
#> 3907   2021 <NA>       OT                 <NA>            74          Active
#> 3908   2021 <NA>       OT                 <NA>            78        Inactive
#> 3909   2021 <NA>       OT                 <NA>            73          Active
#> 3910   2021 <NA>       OT                 <NA>            79          Active
#> 3911   2021 <NA>       OT                 <NA>            73          Active
#> 3912   2021 <NA>       OT                 <NA>            65          Active
#> 3913   2021 <NA>       OT                 <NA>             0          Active
#> 3914   2021 <NA>       OT                 <NA>            72          Active
#> 3915   2021 <NA>       OT                 <NA>            60          Active
#> 3916   2021 <NA>       OT                 <NA>            67          Active
#> 3917   2021 <NA>       OT                   LT             0          Active
#> 3918   2021 <NA>       OT                 <NA>            76        Inactive
#> 3919   2021 <NA>       OT                 <NA>            64          Active
#> 3920   2021 <NA>       OT                 <NA>             0          Active
#> 3921   2021 <NA>       OT                 <NA>             0        Inactive
#> 3922   2021 <NA>       OT                 <NA>            64          Active
#> 3923   2021 <NA>       OT                 <NA>             0          Active
#> 3924   2021 <NA>       OT                 <NA>            73          Active
#> 3925   2021 <NA>       OT                 <NA>             0 Injured Reserve
#> 3926   2021 <NA>       OT                 <NA>             0          Active
#> 3927   2021 <NA>       OT                   LT            74        Inactive
#> 3928   2021 <NA>       OT                 <NA>            68          Active
#> 3929   2021 <NA>       OT                 <NA>             0          Active
#> 3930   2021 <NA>       OT                 <NA>            67        Inactive
#> 3931   2021 <NA>       OT                 <NA>            78          Active
#> 3932   2021 <NA>       OT                 <NA>             0          Active
#> 3933   2021 <NA>       OT                 <NA>            60        Inactive
#> 3934   2021 <NA>       OT                   LT             0          Active
#> 3935   2021 <NA>       OT                 <NA>             0          Active
#> 3936   2021 <NA>       OT                 <NA>             0          Active
#> 3937   2021 <NA>       OT                   RT            78        Inactive
#> 3938   2021 <NA>       OT                 <NA>            70          Active
#> 3939   2021 <NA>       OT                 <NA>             0          Active
#> 3940   2021 <NA>       OT                 <NA>            65          Active
#> 3941   2021 <NA>       OT                 <NA>             0 Injured Reserve
#> 3942   2021 <NA>       OT                 <NA>            60          Active
#> 3943   2021 <NA>       OT                 <NA>            71          Active
#> 3944   2021 <NA>       OT                 <NA>            76          Active
#> 3945   2021 <NA>       OT                 <NA>             0          Active
#> 3946   2021 <NA>       OT                 <NA>            67        Inactive
#> 3947   2021 <NA>       OT                   RT            70        Inactive
#> 3948   2021 <NA>       OT                   RG             0          Active
#> 3949   2021 <NA>       OT                   RT             0 Injured Reserve
#> 3950   2021 <NA>       OT                 <NA>             0          Active
#> 3951   2021 <NA>       OT                 <NA>             0        Inactive
#> 3952   2021 <NA>       OT                 <NA>            67        Inactive
#> 3953   2021 <NA>       OT                 <NA>            72          Active
#> 3954   2021 <NA>       OT                 <NA>            63        Inactive
#> 3955   2021 <NA>       OT                 <NA>            63        Inactive
#> 3956   2021 <NA>       OT                 <NA>            62          Active
#> 3957   2021 <NA>       OT                 <NA>            73          Active
#> 3958   2021 <NA>       OT                 <NA>            68        Inactive
#> 3959   2021 <NA>       OT                   LT             0 Injured Reserve
#> 3960   2021 <NA>       OT                   RT            75        Inactive
#> 3961   2021 <NA>        P                 <NA>             0          Active
#> 3962   2021 <NA>        P                 <NA>             9          Active
#> 3963   2021 <NA>        P                 <NA>             2          Active
#> 3964   2021 <NA>        P                 <NA>             3          Active
#> 3965   2021 <NA>        P                 <NA>             9        Inactive
#> 3966   2021 <NA>        P                 <NA>             2          Active
#> 3967   2021 <NA>        P                 <NA>             0          Active
#> 3968   2021 <NA>        P                 <NA>             2          Active
#> 3969   2021 <NA>        P                 <NA>             6        Inactive
#> 3970   2021 <NA>        P                 <NA>             0          Active
#> 3971   2021 <NA>        P                 <NA>             8        Inactive
#> 3972   2021 <NA>        P                 <NA>             5        Inactive
#> 3973   2021 <NA>        P                 <NA>             0          Active
#> 3974   2021 <NA>        P                 <NA>             9        Inactive
#> 3975   2021 <NA>        P                 <NA>             9          Active
#> 3976   2021 <NA>        P                 <NA>             7          Active
#> 3977   2021 <NA>        P                 <NA>             1        Inactive
#> 3978   2021 <NA>        P                 <NA>             4        Inactive
#> 3979   2021 <NA>        P                 <NA>             3        Inactive
#> 3980   2021 <NA>        P                 <NA>             5          Active
#> 3981   2021 <NA>        P                 <NA>             0          Active
#> 3982   2021 <NA>        P                 <NA>             0          Active
#> 3983   2021 <NA>        P                 <NA>             0          Active
#> 3984   2021 <NA>        P                 <NA>             4          Active
#> 3985   2021 <NA>        P                 <NA>             8          Active
#> 3986   2021 <NA>        P                 <NA>             2        Inactive
#> 3987   2021 <NA>        P                 <NA>             6          Active
#> 3988   2021 <NA>       QB                 <NA>            18          Active
#> 3989   2021 <NA>       QB                 <NA>             7        Inactive
#> 3990   2021 <NA>       QB                 <NA>             0          Active
#> 3991   2021 <NA>       QB                 <NA>             2          Active
#> 3992   2021 <NA>       QB                 <NA>            12        Inactive
#> 3993   2021 <NA>       QB                 <NA>            80 Injured Reserve
#> 3994   2021 <NA>       QB                 <NA>            14 Injured Reserve
#> 3995   2021 <NA>       QB                 <NA>             0        Inactive
#> 3996   2021 <NA>       QB                 <NA>             0 Injured Reserve
#> 3997   2021 <NA>       QB                   QB             0          Active
#> 3998   2021 <NA>       QB                 <NA>            36        Inactive
#> 3999   2021 <NA>       QB                 <NA>             0          Active
#>                          full_name     first_name         last_name birth_date
#> 1                     Byron Murphy          Byron            Murphy 1998-01-18
#> 2                    Breon Borders          Breon           Borders 1995-07-22
#> 3                 Antonio Hamilton        Antonio          Hamilton 1993-01-24
#> 4                   Jace Whittaker           Jace         Whittaker 1995-07-16
#> 5                 Bashaud Breeland        Bashaud          Breeland 1992-01-30
#> 6                   Kevin Peterson          Kevin          Peterson 1994-03-22
#> 7                     Marco Wilson          Marco            Wilson 1999-03-03
#> 8                    Robert Alford         Robert            Alford 1988-11-01
#> 9                    James Wiggins          James           Wiggins 1997-04-26
#> 10                     Nate Brooks           Nate            Brooks 1996-09-05
#> 11                  Jalen Thompson          Jalen          Thompson 1998-07-18
#> 12              Charles Washington        Charles        Washington 1993-03-10
#> 13                     Javon Hagan          Javon             Hagan 1997-02-22
#> 14                Deionte Thompson        Deionte          Thompson 1997-02-11
#> 15                     Chris Banjo          Chris             Banjo 1990-02-26
#> 16                     Budda Baker          Budda             Baker 1996-01-10
#> 17                      Zach Allen           Zach             Allen 1997-08-20
#> 18                 Jordan Phillips         Jordan          Phillips 1992-09-21
#> 19                       J.J. Watt           J.J.              Watt 1989-03-22
#> 20                        Ryan Bee           Ryan               Bee 1995-11-12
#> 21              Jonathan Ledbetter       Jonathan         Ledbetter 1997-09-12
#> 22                   Michael Dogbe        Michael             Dogbe 1996-05-05
#> 23                      Josh Mauro           Josh             Mauro 1991-02-17
#> 24                  Matt Dickerson           Matt         Dickerson 1995-11-09
#> 25                    Corey Peters          Corey            Peters 1988-06-08
#> 26                       Leki Fotu           Leki              Fotu 1998-08-23
#> 27                Rashard Lawrence        Rashard          Lawrence 1998-08-27
#> 28                   Jack Crawford           Jack          Crawford 1988-09-07
#> 29                     Matt Prater           Matt            Prater 1984-08-10
#> 30                  Dennis Gardeck         Dennis           Gardeck 1994-08-09
#> 31                   Devon Kennard          Devon           Kennard 1991-06-24
#> 32                  Ezekiel Turner        Ezekiel            Turner 1996-06-09
#> 33                 Victor Dimukeje         Victor          Dimukeje 1999-11-18
#> 34                     Kylie Fitts          Kylie             Fitts 1994-10-11
#> 35                    Jordan Hicks         Jordan             Hicks 1992-06-27
#> 36                 Donald Rutledge         Donald          Rutledge 1997-05-22
#> 37                  Tanner Vallejo         Tanner           Vallejo 1994-12-16
#> 38                   Markus Golden         Markus            Golden 1991-03-13
#> 39                  Chandler Jones       Chandler             Jones 1990-02-27
#> 40                   Zaven Collins          Zaven           Collins 1999-05-19
#> 41                      Joe Walker            Joe            Walker 1992-12-11
#> 42                  Isaiah Simmons         Isaiah           Simmons 1998-07-26
#> 43                    Aaron Brewer          Aaron            Brewer 1990-07-05
#> 44                      Josh Jones           Josh             Jones 1997-06-22
#> 45                    Marcus Henry         Marcus             Henry 1993-02-11
#> 46                   Rodney Hudson         Rodney            Hudson 1989-07-12
#> 47                  Kelvin Beachum         Kelvin           Beachum 1989-06-08
#> 48                    Joshua Miles         Joshua             Miles 1996-01-04
#> 49                   Justin Murray         Justin            Murray 1993-04-19
#> 50                     Sean Harlow           Sean            Harlow 1995-03-28
#> 51                     Justin Pugh         Justin              Pugh 1990-08-15
#> 52                     Koda Martin           Koda            Martin 1995-08-21
#> 53                      Max Garcia            Max            Garcia 1991-11-09
#> 54                   Danny Isidora          Danny           Isidora 1994-06-05
#> 55                  D.J. Humphries           D.J.         Humphries 1993-12-28
#> 56                    Nolan Cooney          Nolan            Cooney 1996-09-18
#> 57                        Andy Lee           Andy               Lee 1982-08-11
#> 58                      Colt McCoy           Colt             McCoy 1986-09-05
#> 59                    Kyler Murray          Kyler            Murray 1997-08-07
#> 60                  Trace McSorley          Trace          McSorley 1995-08-23
#> 61                  Jaylen Samuels         Jaylen           Samuels 1996-07-20
#> 62                   Chase Edmonds          Chase           Edmonds 1996-04-13
#> 63                    Eno Benjamin            Eno          Benjamin 1999-04-13
#> 64                    James Conner          James            Conner 1995-05-05
#> 65                  Tavien Feaster         Tavien           Feaster 1997-12-31
#> 66                   Jonathan Ward       Jonathan              Ward 1997-09-30
#> 67                      Eric Smith           Eric             Smith 1995-09-02
#> 68                       Zach Ertz           Zach              Ertz 1990-11-10
#> 69                     Deon Yelder           Deon            Yelder 1995-03-06
#> 70                 Darrell Daniels        Darrell           Daniels 1994-11-22
#> 71                     David Wells          David             Wells 1995-05-02
#> 72              Bernhard Seikovits       Bernhard         Seikovits 1997-07-24
#> 73                   Maxx Williams           Maxx          Williams 1994-04-12
#> 74                      Alex Ellis           Alex             Ellis 1993-02-10
#> 75                Demetrius Harris      Demetrius            Harris 1991-07-29
#> 76                      A.J. Green           A.J.             Green 1988-07-31
#> 77                     Greg Dortch           Greg            Dortch 1998-05-29
#> 78                  Antoine Wesley        Antoine            Wesley 1997-10-22
#> 79                   Isaac Whitney          Isaac           Whitney 1994-06-22
#> 80                 Andre Baccellia          Andre         Baccellia 1997-01-07
#> 81                   Rondale Moore        Rondale             Moore 2000-06-09
#> 82                   Andy Isabella           Andy          Isabella 1996-11-18
#> 83                 DeAndre Hopkins        DeAndre           Hopkins 1992-06-06
#> 84                  Christian Kirk      Christian              Kirk 1996-11-18
#> 85                   Ryan Langford           Ryan          Langford 1993-06-10
#> 86                    Josh Andrews           Josh           Andrews 1991-06-21
#> 87                     Darren Hall         Darren              Hall 2000-05-02
#> 88                   Fabian Moreau         Fabian            Moreau 1994-04-09
#> 89                  Avery Williams          Avery          Williams 1998-07-15
#> 90                   Heath Harding          Heath           Harding       <NA>
#> 91                    A.J. Terrell           A.J.           Terrell 1998-09-23
#> 92                   Isaiah Oliver         Isaiah            Oliver 1996-09-30
#> 93                Corey Ballentine          Corey        Ballentine 1996-04-13
#> 94                 Lafayette Pitts      Lafayette             Pitts 1992-09-24
#> 95                    Duron Harmon          Duron            Harmon 1991-01-24
#> 96                  Shawn Williams          Shawn          Williams 1991-05-13
#> 97               Kendall Sheffield        Kendall         Sheffield 1996-05-30
#> 98                     Erik Harris           Erik            Harris 1990-04-02
#> 99               Cornell Armstrong        Cornell         Armstrong 1995-09-22
#> 100                   Richie Grant         Richie             Grant 1997-11-09
#> 101                     Dee Alford            Dee            Alford 1997-11-05
#> 102                    Luther Kirk         Luther              Kirk 1996-11-07
#> 103                   Nick Thurman           Nick           Thurman 1995-06-12
#> 104               Jonathan Bullard       Jonathan           Bullard 1993-10-22
#> 105                  John Cominsky           John          Cominsky 1995-11-22
#> 106                Marlon Davidson         Marlon          Davidson 1998-05-11
#> 107               Jordan Brailford         Jordan         Brailford 1995-10-09
#> 108                   Anthony Rush        Anthony              Rush 1996-09-01
#> 109                  Grady Jarrett          Grady           Jarrett 1993-04-28
#> 110                    Mike Pennel           Mike            Pennel 1991-05-09
#> 111                 Tyeler Davison         Tyeler           Davison 1992-09-23
#> 112                 Ta'Quon Graham        Ta'Quon            Graham 1998-12-01
#> 113                     John Raine           John             Raine 1998-03-27
#> 114                    Keith Smith          Keith             Smith 1992-04-08
#> 115                Chris Lindstrom          Chris         Lindstrom 1997-02-28
#> 116                   Younghoe Koo       Younghoe               Koo 1994-08-03
#> 117                   Mykal Walker          Mykal            Walker 1997-08-28
#> 118                   Steven Means         Steven             Means 1990-09-16
#> 119               Dorian Etheridge         Dorian         Etheridge 1998-11-21
#> 120                   Dante Fowler          Dante            Fowler 1994-08-03
#> 121                    Deion Jones          Deion             Jones 1994-11-04
#> 122                James Vaughters          James         Vaughters 1993-06-27
#> 123                   Rashad Smith         Rashad             Smith 1997-04-20
#> 124                    Daren Bates          Daren             Bates 1990-11-27
#> 125                   Duke Ejiofor           Duke           Ejiofor 1995-04-24
#> 126            Adetokunbo Ogundeji     Adetokunbo          Ogundeji 1998-10-09
#> 127                   Quinton Bell        Quinton              Bell 1996-05-09
#> 128              Emmanuel Ellerbee       Emmanuel          Ellerbee 1996-11-20
#> 129               Foyesade Oluokun       Foyesade           Oluokun 1995-08-02
#> 130               Brandon Copeland        Brandon          Copeland 1991-07-02
#> 131                    Josh Harris           Josh            Harris 1989-04-27
#> 132                    Drew Dalman           Drew            Dalman 1998-10-15
#> 133                 Rashaad Coward        Rashaad            Coward 1994-11-06
#> 134                  Jason Spriggs          Jason           Spriggs 1994-05-17
#> 135                 Jalen Mayfield          Jalen          Mayfield 2000-05-23
#> 136                 Willie Beavers         Willie           Beavers 1993-10-02
#> 137                    Ryan Neuzil           Ryan            Neuzil 1997-07-31
#> 138                  Colby Gossett          Colby           Gossett 1995-06-23
#> 139                  Matt Hennessy           Matt          Hennessy 1997-11-17
#> 140                   Rick Leonard           Rick           Leonard 1996-11-22
#> 141                      Matt Gono           Matt              Gono 1996-05-10
#> 142                     Dom Maggio            Dom            Maggio 1998-04-23
#> 143                Thomas Morstead         Thomas          Morstead 1986-03-08
#> 144                      Matt Ryan           Matt              Ryan 1985-05-17
#> 145                   Matt Barkley           Matt           Barkley 1990-09-08
#> 146                 Feleipe Franks        Feleipe            Franks 1997-12-22
#> 147                    AJ McCarron             AJ          McCarron 1990-09-13
#> 148                     Josh Rosen           Josh             Rosen 1997-02-10
#> 149                  Caleb Huntley          Caleb           Huntley 1998-09-15
#> 150                     Mike Davis           Mike             Davis 1993-02-19
#> 151          Cordarrelle Patterson    Cordarrelle         Patterson 1991-03-17
#> 152                 Qadree Ollison         Qadree           Ollison 1996-09-08
#> 153                Jaylinn Hawkins        Jaylinn           Hawkins 1997-08-25
#> 154                  Jake Matthews           Jake          Matthews 1992-02-11
#> 155                   Kaleb McGary          Kaleb            McGary 1995-02-22
#> 156                     Kyle Pitts           Kyle             Pitts 2000-10-06
#> 157                    Daniel Helm         Daniel              Helm 1995-04-20
#> 158                   Parker Hesse         Parker             Hesse 1995-05-26
#> 159                 Brayden Lenius        Brayden            Lenius 1996-12-19
#> 160                    Ryan Becker           Ryan            Becker 1997-12-23
#> 161                   Hayden Hurst         Hayden             Hurst 1993-08-24
#> 162                  Jaeden Graham         Jaeden            Graham 1995-10-10
#> 163                      Lee Smith            Lee             Smith 1987-11-21
#> 164                  Calvin Ridley         Calvin            Ridley 1994-12-20
#> 165              Olamide Zaccheaus        Olamide         Zaccheaus 1997-07-23
#> 166                   Tajae Sharpe          Tajae            Sharpe 1994-12-23
#> 167                    Chad Hansen           Chad            Hansen 1995-01-18
#> 168              Garrett Scantling        Garrett         Scantling       <NA>
#> 169                    Frank Darby          Frank             Darby 1997-09-08
#> 170                Christian Blake      Christian             Blake 1996-06-08
#> 171                   Russell Gage        Russell              Gage 1996-01-22
#> 172                Austin Trammell         Austin          Trammell 1998-07-04
#> 173                   Adam Redmond           Adam           Redmond 1993-05-19
#> 174                  Trystan Colon        Trystan             Colon 1998-03-23
#> 175                  Marcus Peters         Marcus            Peters 1993-01-09
#> 176                 Robert Jackson         Robert           Jackson 1993-12-08
#> 177                    Tavon Young          Tavon             Young 1994-03-14
#> 178                    Jimmy Smith          Jimmy             Smith 1988-07-26
#> 179                   Daryl Worley          Daryl            Worley 1995-02-22
#> 180                  Khalil Dorsey         Khalil            Dorsey 1998-03-31
#> 181                  Kevin Toliver          Kevin           Toliver 1995-08-24
#> 182                  Iman Marshall           Iman          Marshall 1997-02-27
#> 183                Marlon Humphrey         Marlon          Humphrey 1996-07-08
#> 184                  Kevon Seymour          Kevon           Seymour 1993-11-30
#> 185                Anthony Averett        Anthony           Averett 1994-11-30
#> 186                   Chris Westry          Chris            Westry 1997-07-10
#> 187                 Tony Jefferson           Tony         Jefferson 1992-01-27
#> 188           Ar'Darius Washington      Ar'Darius        Washington 1999-11-02
#> 189               Brandon Stephens        Brandon          Stephens 1997-12-29
#> 190                  Mazzi Wilkins          Mazzi           Wilkins 1995-10-12
#> 191                Jordan Richards         Jordan          Richards 1993-01-23
#> 192                 Anthony Levine        Anthony            Levine 1987-03-27
#> 193                 DeShon Elliott         DeShon           Elliott 1997-04-21
#> 194                    Chuck Clark          Chuck             Clark 1995-04-19
#> 195                     Geno Stone           Geno             Stone 1999-04-19
#> 196                Calais Campbell         Calais          Campbell 1986-09-01
#> 197                    Derek Wolfe          Derek             Wolfe 1990-02-24
#> 198               Justin Madubuike         Justin         Madubuike 1997-11-17
#> 199           Broderick Washington      Broderick        Washington 1996-12-04
#> 200                    Isaiah Mack         Isaiah              Mack 1996-03-19
#> 201              Reginald McKenzie       Reginald          McKenzie 1997-01-03
#> 202                   Xavier Kelly         Xavier             Kelly 1997-10-02
#> 203               Brandon Williams        Brandon          Williams 1989-02-21
#> 204                   Justin Ellis         Justin             Ellis 1990-12-27
#> 205                 Patrick Ricard        Patrick            Ricard 1994-05-27
#> 206                      Ben Mason            Ben             Mason 1999-05-25
#> 207                   Daniel Henry         Daniel             Henry 1994-08-30
#> 208                     Ben Powers            Ben            Powers 1996-10-29
#> 209                  Tyre Phillips           Tyre          Phillips 1997-01-29
#> 210                  Ben Cleveland            Ben         Cleveland 1998-08-25
#> 211                  Justin Tucker         Justin            Tucker 1989-11-21
#> 212                     Odafe Oweh          Odafe              Oweh 1998-12-15
#> 213                   Daelin Hayes         Daelin             Hayes 1998-05-16
#> 214                     Joe Thomas            Joe            Thomas 1991-05-06
#> 215                 Kristian Welch       Kristian             Welch 1998-05-24
#> 216                 Pernell McPhee        Pernell            McPhee 1988-12-17
#> 217                  Patrick Queen        Patrick             Queen 1999-08-13
#> 218                 Justin Houston         Justin           Houston 1989-01-21
#> 219                     Josh Bynes           Josh             Bynes 1989-08-24
#> 220                Jaylon Ferguson         Jaylon          Ferguson 1995-12-14
#> 221                    Tyus Bowser           Tyus            Bowser 1995-05-23
#> 222                 Malik Harrison          Malik          Harrison 1998-03-05
#> 223                      L.J. Fort           L.J.              Fort 1990-01-03
#> 224                    Chris Board          Chris             Board 1995-07-23
#> 225                     Nick Moore           Nick             Moore 1992-12-09
#> 226                  Kevin Zeitler          Kevin           Zeitler 1990-03-08
#> 227                 Patrick Mekari        Patrick            Mekari 1997-08-13
#> 228                   James Murray          James            Murray 1995-05-05
#> 229                Bradley Bozeman        Bradley           Bozeman 1994-11-24
#> 230           Alejandro Villanueva      Alejandro        Villanueva 1988-09-22
#> 231                  Ja'Wuan James        Ja'Wuan             James 1992-06-03
#> 232                       Sam Koch            Sam              Koch 1982-08-13
#> 233                   Zach Terrell           Zach           Terrell 1993-05-01
#> 234                   Josh Johnson           Josh           Johnson 1986-05-15
#> 235                  Tyler Huntley          Tyler           Huntley 1998-02-03
#> 236                  Lamar Jackson          Lamar           Jackson 1997-01-07
#> 237                   Aaron Bailey          Aaron            Bailey       <NA>
#> 238                Devonta Freeman        Devonta           Freeman 1992-03-15
#> 239                Jacques Patrick        Jacques           Patrick 1997-01-07
#> 240                Ty'Son Williams         Ty'Son          Williams 1996-09-04
#> 241                    Gus Edwards            Gus           Edwards 1995-04-13
#> 242                   J.K. Dobbins           J.K.           Dobbins 1998-12-17
#> 243                   Justice Hill        Justice              Hill 1997-11-14
#> 244                   Nate McCrary           Nate           McCrary 1999-04-09
#> 245                Latavius Murray       Latavius            Murray 1990-01-18
#> 246                 Ronnie Stanley         Ronnie           Stanley 1994-03-18
#> 247              Jaryd Jones-Smith          Jaryd       Jones-Smith 1995-09-03
#> 248                   David Sharpe          David            Sharpe 1995-10-21
#> 249                   Mark Andrews           Mark           Andrews 1995-09-06
#> 250                    Tony Poljan           Tony            Poljan 1997-04-25
#> 251                    Josh Oliver           Josh            Oliver 1997-03-21
#> 252                 Eric Tomlinson           Eric         Tomlinson 1992-04-22
#> 253                     Nick Boyle           Nick             Boyle 1993-02-17
#> 254                  Barrett Burns        Barrett             Burns 1994-03-16
#> 255                   Miles Boykin          Miles            Boykin 1996-10-12
#> 256                  Sammy Watkins          Sammy           Watkins 1993-06-14
#> 257                   James Proche          James            Proche 1996-09-21
#> 258                 Marquise Brown       Marquise             Brown 1997-06-04
#> 259                   Jaylon Moore         Jaylon             Moore 1997-07-01
#> 260                  Tylan Wallace          Tylan           Wallace 1999-05-13
#> 261                Binjimen Victor       Binjimen            Victor 1997-01-15
#> 262                 Rashod Bateman         Rashod           Bateman 1999-11-29
#> 263                 Devin Duvernay          Devin          Duvernay 1997-09-12
#> 264                    Mitch Morse          Mitch             Morse 1992-04-21
#> 265              Tre'Davious White    Tre'Davious             White 1995-01-16
#> 266                     Tim Harris            Tim            Harris 1995-07-31
#> 267                   Dane Jackson           Dane           Jackson 1996-11-29
#> 268                   Nick McCloud           Nick           McCloud 1998-07-09
#> 269                  Cameron Lewis        Cameron             Lewis 1997-04-13
#> 270                   Levi Wallace           Levi           Wallace 1995-06-12
#> 271                     Siran Neal          Siran              Neal 1994-08-04
#> 272                Olaijah Griffin        Olaijah           Griffin 1999-03-10
#> 273                  Taron Johnson          Taron           Johnson 1996-07-27
#> 274                   Damar Hamlin          Damar            Hamlin 1998-03-24
#> 275                 Jaquan Johnson         Jaquan           Johnson 1995-11-13
#> 276                     Micah Hyde          Micah              Hyde 1990-12-31
#> 277                   Jordan Poyer         Jordan             Poyer 1991-04-25
#> 278                    Josh Thomas           Josh            Thomas 1996-11-19
#> 279                  Boogie Basham         Boogie            Basham 1997-12-16
#> 280                   Jerry Hughes          Jerry            Hughes 1988-08-13
#> 281                  Greg Rousseau           Greg          Rousseau 2000-04-05
#> 282                   A.J. Epenesa           A.J.           Epenesa 1998-09-15
#> 283                      Mike Love           Mike              Love 1994-01-22
#> 284                  Mario Addison          Mario           Addison 1987-09-06
#> 285                      Bryan Cox          Bryan               Cox 1994-06-25
#> 286                      Efe Obada            Efe             Obada 1992-04-13
#> 287                 Star Lotulelei           Star         Lotulelei 1989-12-20
#> 288                      Eli Ankou            Eli             Ankou 1994-06-08
#> 289              Harrison Phillips       Harrison          Phillips 1996-01-25
#> 290                 Brandin Bryant        Brandin            Bryant 1993-09-16
#> 291                  Vernon Butler         Vernon            Butler 1994-06-14
#> 292                  Justin Zimmer         Justin            Zimmer 1992-10-23
#> 293                      Ed Oliver             Ed            Oliver 1997-12-12
#> 294                 Reggie Gilliam         Reggie           Gilliam 1997-08-20
#> 295                     Tyler Bass          Tyler              Bass 1997-02-14
#> 296               Tremaine Edmunds       Tremaine           Edmunds 1998-05-02
#> 297                    Andre Smith          Andre             Smith 1997-04-20
#> 298               Joe Giles-Harris            Joe      Giles-Harris 1997-04-01
#> 299                   Tyrel Dodson          Tyrel            Dodson 1998-06-25
#> 300                     A.J. Klein           A.J.             Klein 1991-07-30
#> 301               Tyler Matakevich          Tyler        Matakevich 1992-12-22
#> 302                    Matt Milano           Matt            Milano 1994-07-28
#> 303                  Reid Ferguson           Reid          Ferguson 1994-03-24
#> 304                  Jon Feliciano            Jon         Feliciano 1992-02-10
#> 305                   Ike Boettger            Ike          Boettger 1994-10-05
#> 306                      Cody Ford           Cody              Ford 1996-12-28
#> 307                    Jacob Capra          Jacob             Capra 1998-11-02
#> 308                 Daryl Williams          Daryl          Williams 1992-08-31
#> 309                     Ryan Bates           Ryan             Bates 1997-02-14
#> 310               Evin Ksiezarczyk           Evin       Ksiezarczyk 1997-06-08
#> 311                   Dion Dawkins           Dion           Dawkins 1994-04-26
#> 312                  Spencer Brown        Spencer             Brown 1998-02-28
#> 313                    Tommy Doyle          Tommy             Doyle 1998-05-06
#> 314                     Matt Haack           Matt             Haack 1994-07-25
#> 315              Mitchell Trubisky       Mitchell          Trubisky 1994-08-20
#> 316                     Josh Allen           Josh             Allen 1996-05-21
#> 317                      Zack Moss           Zack              Moss 1997-12-15
#> 318                    Matt Breida           Matt            Breida 1995-02-28
#> 319                   Taiwan Jones         Taiwan             Jones 1988-07-26
#> 320               Devin Singletary          Devin        Singletary 1997-09-03
#> 321                     Bobby Hart          Bobby              Hart 1994-08-21
#> 322                    Dawson Knox         Dawson              Knox 1996-11-14
#> 323                 Quintin Morris        Quintin            Morris 1999-01-21
#> 324                  Tommy Sweeney          Tommy           Sweeney 1995-07-01
#> 325                Isaiah McKenzie         Isaiah          McKenzie 1995-04-09
#> 326                   Jake Kumerow           Jake           Kumerow 1992-02-17
#> 327                   Stefon Diggs         Stefon             Diggs 1993-11-29
#> 328              Marquez Stevenson        Marquez         Stevenson 1998-03-26
#> 329                  Tanner Gentry         Tanner            Gentry 1994-12-18
#> 330                   Cole Beasley           Cole           Beasley 1989-04-26
#> 331               Emmanuel Sanders       Emmanuel           Sanders 1987-03-17
#> 332                  Gabriel Davis        Gabriel             Davis 1999-04-01
#> 333                 Isaiah Hodgins         Isaiah           Hodgins 1998-10-21
#> 334                   Matt Paradis           Matt           Paradis 1989-10-12
#> 335                Sam Tecklenburg            Sam       Tecklenburg 1997-01-31
#> 336                    Jaycee Horn         Jaycee              Horn 1999-11-26
#> 337                  Donte Jackson          Donte           Jackson 1995-11-08
#> 338                 Rashaan Melvin        Rashaan            Melvin 1989-10-02
#> 339                Stephon Gilmore        Stephon           Gilmore 1990-09-19
#> 340                   Keith Taylor          Keith            Taylor 1998-11-20
#> 341                   Madre Harper          Madre            Harper 1997-10-13
#> 342                 C.J. Henderson           C.J.         Henderson 1998-09-30
#> 343                     Troy Pride           Troy             Pride 1998-01-19
#> 344         Stantley Thomas-Oliver       Stantley     Thomas-Oliver 1998-06-04
#> 345                     A.J. Bouye           A.J.             Bouye 1991-08-16
#> 346                   Sam Franklin            Sam          Franklin 1996-02-02
#> 347                 Kenny Robinson          Kenny          Robinson 1999-01-08
#> 348                  Juston Burris         Juston            Burris 1993-08-04
#> 349               Myles Hartsfield          Myles        Hartsfield 1997-08-05
#> 350                  Sean Chandler           Sean          Chandler 1996-04-27
#> 351                       J.T. Ibe           J.T.               Ibe 1996-06-13
#> 352                   Jeremy Chinn         Jeremy             Chinn 1998-02-26
#> 353                     Morgan Fox         Morgan               Fox 1994-09-12
#> 354                 Darryl Johnson         Darryl           Johnson 1997-04-04
#> 355                    Joe Jackson            Joe           Jackson 1996-12-20
#> 356                 Marquis Haynes        Marquis            Haynes 1993-12-16
#> 357                    Azur Kamara           Azur            Kamara 1998-09-26
#> 358                  Austin Larkin         Austin            Larkin 1995-04-06
#> 359              Yetur Gross-Matos          Yetur       Gross-Matos 1998-02-26
#> 360                   Frank Herron          Frank            Herron 1994-07-09
#> 361                    Brian Burns          Brian             Burns 1998-04-23
#> 362              Kendall Donnerson        Kendall         Donnerson 1996-04-22
#> 363                 Damontre Moore       Damontre             Moore 1992-09-11
#> 364                   DaQuan Jones         DaQuan             Jones 1991-12-17
#> 365                   Phil Hoskins           Phil           Hoskins 1997-01-02
#> 366                  Derrick Brown        Derrick             Brown 1998-04-15
#> 367                  Daviyon Nixon        Daviyon             Nixon 1998-12-13
#> 368                   Bravvion Roy       Bravvion               Roy 1996-10-18
#> 369                   Mason Stokke          Mason            Stokke       <NA>
#> 370                 Giovanni Ricci       Giovanni             Ricci 1996-10-16
#> 371                   Deonte Brown         Deonte             Brown 1998-01-15
#> 372                    John Miller           John            Miller 1993-08-12
#> 373                    Pat Elflein            Pat           Elflein 1994-07-06
#> 374                 Michael Jordan        Michael            Jordan 1998-01-25
#> 375                    Mike Horton           Mike            Horton 1996-10-07
#> 376                   Dennis Daley         Dennis             Daley 1996-08-07
#> 377               Lirim Hajrullahu          Lirim        Hajrullahu 1990-04-24
#> 378                  Zane Gonzalez           Zane          Gonzalez 1995-05-07
#> 379                   Alex Kessman           Alex           Kessman 1998-01-02
#> 380                 Haason Reddick         Haason           Reddick 1994-09-22
#> 381           Jacob Tuioti-Mariner          Jacob    Tuioti-Mariner 1996-07-25
#> 382                   Frankie Luvu        Frankie              Luvu 1996-09-19
#> 383                   Kamal Martin          Kamal            Martin 1998-06-17
#> 384                Julian Stanford         Julian          Stanford 1990-09-02
#> 385                  Shaq Thompson           Shaq          Thompson 1994-04-21
#> 386                Jermaine Carter       Jermaine            Carter 1995-01-14
#> 387                    J.J. Jansen           J.J.            Jansen 1986-01-20
#> 388                Thomas Fletcher         Thomas          Fletcher 1998-10-01
#> 389               Austen Pleasants         Austen         Pleasants 1997-08-22
#> 390                 Aaron Monteiro          Aaron          Monteiro 1997-03-25
#> 391                Lachlan Edwards        Lachlan           Edwards 1992-04-27
#> 392                     Cam Newton            Cam            Newton 1989-05-11
#> 393                 Phillip Walker        Phillip            Walker 1995-02-26
#> 394                    Sam Darnold            Sam           Darnold 1997-06-05
#> 395                  Chuba Hubbard          Chuba           Hubbard 1999-06-11
#> 396                 Ameer Abdullah          Ameer          Abdullah 1993-06-13
#> 397                Darius Bradwell         Darius          Bradwell 1997-05-15
#> 398                  Spencer Brown        Spencer             Brown 1998-11-13
#> 399            Christian McCaffrey      Christian         McCaffrey 1996-06-07
#> 400                  Trenton Scott        Trenton             Scott 1994-01-25
#> 401                   Taylor Moton         Taylor             Moton 1994-08-18
#> 402                 Cameron Erving        Cameron            Erving 1992-08-23
#> 403              Brady Christensen          Brady       Christensen 1996-09-27
#> 404                     Ian Thomas            Ian            Thomas 1996-06-06
#> 405                 Colin Thompson          Colin          Thompson 1993-12-15
#> 406               Stephen Sullivan        Stephen          Sullivan 1996-11-28
#> 407                  Wyatt Houston          Wyatt           Houston 1994-06-21
#> 408                  Tommy Tremble          Tommy           Tremble 2000-06-02
#> 409                  C.J. Saunders           C.J.          Saunders 1996-09-15
#> 410               Terrace Marshall        Terrace          Marshall 2000-06-09
#> 411                Brandon Zylstra        Brandon           Zylstra 1993-03-25
#> 412                      Shi Smith            Shi             Smith 1998-10-26
#> 413                 Robby Anderson          Robby          Anderson 1993-05-09
#> 414                  Alex Erickson           Alex          Erickson 1992-11-06
#> 415                       DJ Moore             DJ             Moore 1997-04-14
#> 416                   Aaron Parker          Aaron            Parker 1998-05-21
#> 417                 Keith Kirkwood          Keith          Kirkwood 1994-12-26
#> 418                   Willie Snead         Willie             Snead 1992-10-17
#> 419                    Micah Simon          Micah             Simon       <NA>
#> 420                Thakarius Keyes      Thakarius             Keyes 1997-11-09
#> 421                  Lamar Jackson          Lamar           Jackson 1998-04-13
#> 422                 Michael Joseph        Michael            Joseph 1995-03-19
#> 423                   Duke Shelley           Duke           Shelley 1996-10-08
#> 424                  Eddie Jackson          Eddie           Jackson 1993-12-10
#> 425                Xavier Crawford         Xavier          Crawford 1995-12-10
#> 426                 Tashaun Gipson        Tashaun            Gipson 1990-08-07
#> 427                 Jaylon Johnson         Jaylon           Johnson 1999-04-19
#> 428                    Artie Burns          Artie             Burns 1995-05-01
#> 429                      Deon Bush           Deon              Bush 1993-08-14
#> 430               Marqui Christian         Marqui         Christian 1994-10-27
#> 431         DeAndre Houston-Carson        DeAndre    Houston-Carson 1993-04-13
#> 432                  Kindle Vildor         Kindle            Vildor 1997-12-11
#> 433                     Teez Tabor           Teez             Tabor 1995-12-31
#> 434                  Thomas Graham         Thomas            Graham 1999-06-26
#> 435                Angelo Blackson         Angelo          Blackson 1992-11-14
#> 436                  Mario Edwards          Mario           Edwards 1994-01-25
#> 437                    Margus Hunt         Margus              Hunt 1987-07-14
#> 438                  Bilal Nichols          Bilal           Nichols 1996-09-14
#> 439                  Eddie Goldman          Eddie           Goldman 1994-01-06
#> 440                  Khyiris Tonga        Khyiris             Tonga 1996-07-07
#> 441                    Akiem Hicks          Akiem             Hicks 1989-11-16
#> 442               Auzoyah Alufohai        Auzoyah          Alufohai 1996-10-16
#> 443                  LaCale London         LaCale            London 1997-08-05
#> 444                   Cairo Santos          Cairo            Santos 1991-11-12
#> 445                  Ledarius Mack       Ledarius              Mack 1996-10-03
#> 446                  Alec Ogletree           Alec          Ogletree 1991-09-25
#> 447                  Cassius Marsh        Cassius             Marsh 1992-07-07
#> 448                   Roquan Smith         Roquan             Smith 1997-04-08
#> 449                  Trevis Gipson         Trevis            Gipson 1997-06-13
#> 450               Joel Iyiegbuniwe           Joel       Iyiegbuniwe 1995-10-12
#> 451                  Caleb Johnson          Caleb           Johnson 1998-07-28
#> 452                   Noah Dawkins           Noah           Dawkins 1997-08-13
#> 453                Danny Trevathan          Danny         Trevathan 1990-03-24
#> 454                Charles Snowden        Charles           Snowden 1998-03-27
#> 455                     Sam Kamara            Sam            Kamara 1997-12-21
#> 456                    Khalil Mack         Khalil              Mack 1991-02-22
#> 457              Jeremiah Attaochu       Jeremiah          Attaochu 1993-01-17
#> 458                   Robert Quinn         Robert             Quinn 1990-05-18
#> 459                Christian Jones      Christian             Jones 1991-02-18
#> 460                    Bruce Irvin          Bruce             Irvin 1987-11-01
#> 461                  Beau Brinkley           Beau          Brinkley 1990-01-25
#> 462                 Patrick Scales        Patrick            Scales 1988-02-11
#> 463                  James Daniels          James           Daniels 1997-09-13
#> 464                 Dieter Eiselen         Dieter           Eiselen 1996-06-10
#> 465                    Larry Borom          Larry             Borom 1999-03-30
#> 466                  Germain Ifedi        Germain             Ifedi 1994-06-02
#> 467                 Cody Whitehair           Cody         Whitehair 1992-07-11
#> 468             Lachavious Simmons     Lachavious           Simmons 1996-09-26
#> 469               Elijah Wilkinson         Elijah         Wilkinson 1995-02-10
#> 470                   Jason Peters          Jason            Peters 1982-01-22
#> 471                Tyrone Wheatley         Tyrone          Wheatley 1997-02-04
#> 472                      Alex Bars           Alex              Bars 1995-09-08
#> 473                  Sam Mustipher            Sam         Mustipher 1996-08-13
#> 474                  Teven Jenkins          Teven           Jenkins 1998-03-03
#> 475                   Ryan Winslow           Ryan           Winslow 1994-04-30
#> 476                  Pat O'Donnell            Pat         O'Donnell 1991-02-22
#> 477                    Andy Dalton           Andy            Dalton 1987-10-29
#> 478                     Nick Foles           Nick             Foles 1989-01-20
#> 479                    Ryan Willis           Ryan            Willis 1996-09-28
#> 480                  Justin Fields         Justin            Fields 1999-03-05
#> 481                      Ryan Nall           Ryan              Nall 1995-12-27
#> 482                 Khalil Herbert         Khalil           Herbert 1998-04-21
#> 483                Damien Williams         Damien          Williams 1992-04-03
#> 484                    Tarik Cohen          Tarik             Cohen 1995-07-26
#> 485               David Montgomery          David        Montgomery 1997-06-07
#> 486                   Franko House         Franko             House 1994-09-19
#> 487                     J.P. Holtz           J.P.             Holtz 1993-08-28
#> 488                    Jesse James          Jesse             James 1994-06-04
#> 489                      Cole Kmet           Cole              Kmet 1999-03-10
#> 490                 Jesper Horsted         Jesper           Horsted 1997-02-27
#> 491                   Jimmy Graham          Jimmy            Graham 1986-11-24
#> 492                    Shaq Roland           Shaq            Roland       <NA>
#> 493               Marquise Goodwin       Marquise           Goodwin 1990-11-19
#> 494                   Damiere Byrd        Damiere              Byrd 1993-01-27
#> 495                 Isaiah Coulter         Isaiah           Coulter 1998-09-18
#> 496                   Jakeem Grant         Jakeem             Grant 1992-10-30
#> 497                 Darnell Mooney        Darnell            Mooney 1997-10-29
#> 498                    Thomas Ives         Thomas              Ives 1996-06-25
#> 499                 Nsimba Webster         Nsimba           Webster 1996-01-27
#> 500                   Dazz Newsome           Dazz           Newsome 1999-05-15
#> 501                 Allen Robinson          Allen          Robinson 1993-08-24
#> 502                   Trey Hopkins           Trey           Hopkins 1992-07-06
#> 503                Lamont Gaillard         Lamont          Gaillard 1996-02-08
#> 504                      Trey Hill           Trey              Hill 2000-01-23
#> 505                    Trae Waynes           Trae            Waynes 1992-07-25
#> 506                 Chidobe Awuzie        Chidobe            Awuzie 1995-05-24
#> 507                Darius Phillips         Darius          Phillips 1995-06-26
#> 508                    Mike Hilton           Mike            Hilton 1994-03-09
#> 509                   John Brannon           John           Brannon 1998-03-10
#> 510                    Tre Flowers            Tre           Flowers 1995-06-02
#> 511                    Jalen Davis          Jalen             Davis 1996-02-02
#> 512                      Eli Apple            Eli             Apple 1995-08-09
#> 513                 Michael Thomas        Michael            Thomas 1990-03-17
#> 514              Vernon Hargreaves         Vernon        Hargreaves 1995-06-03
#> 515                 Brandon Wilson        Brandon            Wilson 1994-07-27
#> 516                      Vonn Bell           Vonn              Bell 1994-12-12
#> 517                  Ricardo Allen        Ricardo             Allen 1991-12-18
#> 518              Trayvon Henderson        Trayvon         Henderson 1995-08-15
#> 519                   Jessie Bates         Jessie             Bates 1997-02-26
#> 520                   Joseph Ossai         Joseph             Ossai 2000-04-13
#> 521               Trey Hendrickson           Trey       Hendrickson 1994-12-05
#> 522                    Sam Hubbard            Sam           Hubbard 1995-06-23
#> 523                    Noah Spence           Noah            Spence 1994-01-08
#> 524                      Zach Kerr           Zach              Kerr 1990-08-29
#> 525                      Wyatt Ray          Wyatt               Ray 1996-10-24
#> 526                   Wyatt Hubert          Wyatt            Hubert 1998-06-13
#> 527                  Khalid Kareem         Khalid            Kareem 1998-04-28
#> 528                     Cam Sample            Cam            Sample 1999-09-20
#> 529                     Josh Tupou           Josh             Tupou 1994-05-02
#> 530                      B.J. Hill           B.J.              Hill 1995-04-20
#> 531                    D.J. Reader           D.J.            Reader 1994-07-01
#> 532                   Mike Daniels           Mike           Daniels 1989-05-05
#> 533                  Tyler Shelvin          Tyler           Shelvin 1998-07-22
#> 534                    Doug Costin           Doug            Costin 1997-10-05
#> 535                  Damion Square         Damion            Square 1989-02-06
#> 536                 Larry Ogunjobi          Larry          Ogunjobi 1994-06-03
#> 537                  Quinton Spain        Quinton             Spain 1991-08-07
#> 538                 Hakeem Adeniji         Hakeem           Adeniji 1997-12-08
#> 539                 Jackson Carman        Jackson            Carman 2000-01-22
#> 540                   D'Ante Smith         D'Ante             Smith 1998-06-08
#> 541              Keaton Sutherland         Keaton        Sutherland 1997-02-12
#> 542               Xavier Su'a-Filo         Xavier         Su'a-Filo 1991-01-01
#> 543                 Evan McPherson           Evan         McPherson 1999-07-21
#> 544                    Elliott Fry        Elliott               Fry 1994-12-12
#> 545            Akeem Davis-Gaither          Akeem     Davis-Gaither 1997-09-21
#> 546                 Germaine Pratt       Germaine             Pratt 1996-05-21
#> 547                  Markus Bailey         Markus            Bailey 1997-03-07
#> 548                  Clay Johnston           Clay          Johnston 1996-08-08
#> 549                 Austin Calitro         Austin           Calitro 1994-01-10
#> 550                  Keandre Jones        Keandre             Jones 1997-09-24
#> 551                   Jordan Evans         Jordan             Evans 1995-01-27
#> 552                     Joe Bachie            Joe            Bachie 1998-02-26
#> 553                   Logan Wilson          Logan            Wilson 1996-07-08
#> 554                   Clark Harris          Clark            Harris 1984-07-10
#> 555                    Colin Holba          Colin             Holba 1994-07-08
#> 556                  Drue Chrisman           Drue          Chrisman 1997-06-30
#> 557                    Kevin Huber          Kevin             Huber 1985-07-16
#> 558                  Jake Browning           Jake          Browning 1996-04-11
#> 559                     Joe Burrow            Joe            Burrow 1996-12-10
#> 560                  Brandon Allen        Brandon             Allen 1992-09-05
#> 561                 Pooka Williams          Pooka          Williams 1999-06-19
#> 562              Trayveon Williams       Trayveon          Williams 1997-10-18
#> 563                  Samaje Perine         Samaje            Perine 1995-09-16
#> 564               Elijah Holyfield         Elijah         Holyfield 1997-11-30
#> 565                      Joe Mixon            Joe             Mixon 1996-07-24
#> 566                    Chris Evans          Chris             Evans 1997-10-05
#> 567                  Isaiah Prince         Isaiah            Prince 1997-07-29
#> 568                 Jonah Williams          Jonah          Williams 1997-11-17
#> 569                    Riley Reiff          Riley             Reiff 1988-12-01
#> 570                   Fred Johnson           Fred           Johnson 1997-06-05
#> 571                  Mason Schreck          Mason           Schreck 1993-11-04
#> 572                  Thaddeus Moss       Thaddeus              Moss 1998-05-14
#> 573                    C.J. Uzomah           C.J.            Uzomah 1993-01-14
#> 574                    Drew Sample           Drew            Sample 1996-04-16
#> 575                Mitchell Wilcox       Mitchell            Wilcox 1996-11-07
#> 576                   Trent Taylor          Trent            Taylor 1994-04-30
#> 577                 Stanley Morgan        Stanley            Morgan 1996-09-07
#> 578                     Auden Tate          Auden              Tate 1997-02-03
#> 579              Scotty Washington         Scotty        Washington 1997-07-26
#> 580                    Tee Higgins            Tee           Higgins 1999-01-18
#> 581                  Ja'Marr Chase        Ja'Marr             Chase 2000-03-01
#> 582                     Tyler Boyd          Tyler              Boyd 1994-11-15
#> 583                    Mike Thomas           Mike            Thomas 1994-08-16
#> 584                  Trenton Irwin        Trenton             Irwin 1995-12-10
#> 585                   J.C. Tretter           J.C.           Tretter 1991-02-12
#> 586                    Nick Harris           Nick            Harris 1998-11-13
#> 587                   Greg Newsome           Greg           Newsome 2000-05-18
#> 588                Greedy Williams         Greedy          Williams 1997-12-03
#> 589                      Troy Hill           Troy              Hill 1991-08-29
#> 590                    Brian Allen          Brian             Allen 1993-10-21
#> 591                    Herb Miller           Herb            Miller 1997-11-11
#> 592                    Denzel Ward         Denzel              Ward 1997-04-28
#> 593                     A.J. Green           A.J.             Green 1998-06-09
#> 594                   Grant Delpit          Grant            Delpit 1998-09-20
#> 595                   John Johnson           John           Johnson 1995-12-19
#> 596                   Nate Meadors           Nate           Meadors 1997-02-13
#> 597                 Adrian Colbert         Adrian           Colbert 1993-10-06
#> 598                Ronnie Harrison         Ronnie          Harrison 1997-04-18
#> 599                Tedric Thompson         Tedric          Thompson 1995-01-20
#> 600               Richard LeCounte        Richard          LeCounte 1998-09-11
#> 601                   M.J. Stewart           M.J.           Stewart 1995-09-16
#> 602                Ifeadi Odenigbo         Ifeadi          Odenigbo 1994-04-08
#> 603                  Porter Gustin         Porter            Gustin 1997-02-08
#> 604               Jadeveon Clowney       Jadeveon           Clowney 1993-02-14
#> 605                  Curtis Weaver         Curtis            Weaver 1998-08-03
#> 606                  Myles Garrett          Myles           Garrett 1995-12-29
#> 607             Takkarist McKinley      Takkarist          McKinley 1995-11-02
#> 608                 Malik McDowell          Malik          McDowell 1996-06-20
#> 609                 Jordan Elliott         Jordan           Elliott 1997-11-23
#> 610                    Sheldon Day        Sheldon               Day 1994-07-01
#> 611                  Malik Jackson          Malik           Jackson 1990-01-11
#> 612                   Tommy Togiai          Tommy            Togiai 1999-09-19
#> 613                 Johnny Stanton         Johnny           Stanton 1994-09-07
#> 614                  Andy Janovich           Andy          Janovich 1993-05-23
#> 615                Hjalte Froholdt         Hjalte          Froholdt 1996-08-20
#> 616                   Wyatt Teller          Wyatt            Teller 1994-11-21
#> 617                    David Moore          David             Moore 1998-05-12
#> 618               Chase McLaughlin          Chase        McLaughlin 1996-04-09
#> 619                  Chris Blewitt          Chris           Blewitt 1995-05-02
#> 620                    Tony Fields           Tony            Fields 1999-06-18
#> 621                    Mack Wilson           Mack            Wilson 1998-02-14
#> 622                  Malcolm Smith        Malcolm             Smith 1989-07-05
#> 623                     Elijah Lee         Elijah               Lee 1996-02-08
#> 624                Montrel Meander        Montrel           Meander 1994-09-20
#> 625                 Jacob Phillips          Jacob          Phillips 1999-04-01
#> 626                 Anthony Walker        Anthony            Walker 1995-08-08
#> 627                  Willie Harvey         Willie            Harvey 1996-01-09
#> 628        Jeremiah Owusu-Koramoah       Jeremiah    Owusu-Koramoah 1999-11-04
#> 629                 Sione Takitaki          Sione          Takitaki 1995-06-08
#> 630               Charley Hughlett        Charley          Hughlett 1990-05-16
#> 631                   Joel Bitonio           Joel           Bitonio 1991-10-11
#> 632                    Blake Hance          Blake             Hance 1996-01-11
#> 633                   Michael Dunn        Michael              Dunn 1994-08-28
#> 634                    Drew Forbes           Drew            Forbes 1997-01-18
#> 635                 Elijah Nkansah         Elijah           Nkansah 1994-12-28
#> 636                   James Hudson          James            Hudson 1999-05-13
#> 637                  Jedrick Wills        Jedrick             Wills 1999-05-17
#> 638                   Jack Conklin           Jack           Conklin 1994-08-17
#> 639                Joseph Charlton         Joseph          Charlton 1997-04-07
#> 640                Dustin Colquitt         Dustin          Colquitt 1982-05-06
#> 641                    Case Keenum           Case            Keenum 1988-02-17
#> 642                 Baker Mayfield          Baker          Mayfield 1995-04-14
#> 643                   Nick Mullens           Nick           Mullens 1995-03-21
#> 644                Demetric Felton       Demetric            Felton 1998-07-16
#> 645                     John Kelly           John             Kelly 1996-10-04
#> 646                Dexter Williams         Dexter          Williams 1997-01-06
#> 647                 Artavis Pierce        Artavis            Pierce 1996-05-17
#> 648                   Tre Harbison            Tre          Harbison 1998-07-01
#> 649                     Nick Chubb           Nick             Chubb 1995-12-27
#> 650               D'Ernest Johnson       D'Ernest           Johnson 1996-02-27
#> 651                    Benny LeMay          Benny             LeMay 1997-10-18
#> 652                    Kareem Hunt         Kareem              Hunt 1995-08-06
#> 653            Christopher Hubbard    Christopher           Hubbard 1991-04-23
#> 654                    Alex Taylor           Alex            Taylor 1997-04-29
#> 655                  Nick Guggemos           Nick          Guggemos 1995-12-17
#> 656                Harrison Bryant       Harrison            Bryant 1998-04-23
#> 657                  Austin Hooper         Austin            Hooper 1994-10-29
#> 658                Stephen Carlson        Stephen           Carlson 1996-12-12
#> 659              Miller Forristall         Miller        Forristall 1998-03-11
#> 660                    David Njoku          David             Njoku 1996-07-10
#> 661                   Ryan Switzer           Ryan           Switzer 1994-11-04
#> 662                  Jarvis Landry         Jarvis            Landry 1992-11-28
#> 663          Donovan Peoples-Jones        Donovan     Peoples-Jones 1999-02-19
#> 664                Rashard Higgins        Rashard           Higgins 1994-10-07
#> 665               Anthony Schwartz        Anthony          Schwartz 2000-09-05
#> 666              Ja'Marcus Bradley      Ja'Marcus           Bradley 1996-12-11
#> 667                  Tyler Biadasz          Tyler           Biadasz 1997-11-20
#> 668                  Braylon Jones        Braylon             Jones 1998-02-10
#> 669                 Maurice Canady        Maurice            Canady 1994-05-26
#> 670                    Kyron Brown          Kyron             Brown 1996-05-26
#> 671                   Trevon Diggs         Trevon             Diggs 1998-09-20
#> 672                  Anthony Brown        Anthony             Brown 1993-12-15
#> 673                  Kelvin Joseph         Kelvin            Joseph 1999-11-11
#> 674                 Nahshon Wright        Nahshon            Wright 1998-09-23
#> 675                   C.J. Goodwin           C.J.           Goodwin 1990-02-04
#> 676                  Jourdan Lewis        Jourdan             Lewis 1995-08-31
#> 677                    Michael Coe        Michael               Coe 1983-12-17
#> 678                Reggie Robinson         Reggie          Robinson 1997-04-14
#> 679                 Israel Mukuamu         Israel           Mukuamu 1999-11-28
#> 680                 Damontae Kazee       Damontae             Kazee 1993-06-05
#> 681                  Jayron Kearse         Jayron            Kearse 1994-02-11
#> 682                    Tyler Coyle          Tyler             Coyle 1998-11-15
#> 683                Darian Thompson         Darian          Thompson 1993-09-22
#> 684                 Donovan Wilson        Donovan            Wilson 1995-02-21
#> 685                   Malik Hooker          Malik            Hooker 1996-04-02
#> 686               Chauncey Golston       Chauncey           Golston 1998-02-10
#> 687                  Tarell Basham         Tarell            Basham 1994-03-18
#> 688              Demarcus Lawrence       Demarcus          Lawrence 1992-04-28
#> 689                 Carlos Watkins         Carlos           Watkins 1993-12-05
#> 690                  Randy Gregory          Randy           Gregory 1992-11-23
#> 691                    Brent Urban          Brent             Urban 1991-05-05
#> 692              Dorance Armstrong        Dorance         Armstrong 1997-06-10
#> 693                Quinton Bohanna        Quinton           Bohanna 1999-03-16
#> 694                   Trysten Hill        Trysten              Hill 1998-03-25
#> 695                  Austin Faoliu         Austin            Faoliu 1999-01-09
#> 696                 Osa Odighizuwa            Osa        Odighizuwa 1998-08-13
#> 697                 Josiah Bronson         Josiah           Bronson 1997-07-03
#> 698              Neville Gallimore        Neville         Gallimore 1997-01-17
#> 699                  Sewo Olonilua           Sewo          Olonilua 1997-11-27
#> 700                    Zack Martin           Zack            Martin 1990-11-20
#> 701                   Matt Farniok           Matt           Farniok 1997-09-26
#> 702                Connor McGovern         Connor          McGovern 1997-11-03
#> 703                Connor Williams         Connor          Williams 1997-05-12
#> 704                   Chris Naggar          Chris            Naggar 1997-12-09
#> 705                  Greg Zuerlein           Greg          Zuerlein 1987-12-27
#> 706           Leighton Vander Esch       Leighton       Vander Esch 1997-02-09
#> 707                   Luke Gifford           Luke           Gifford 1995-08-28
#> 708                Francis Bernard        Francis           Bernard 1995-04-08
#> 709                  Micah Parsons          Micah           Parsons 1999-05-26
#> 710                   Devante Bond        Devante              Bond 1993-07-03
#> 711                     Keanu Neal          Keanu              Neal 1995-07-26
#> 712                     Jabril Cox         Jabril               Cox 1998-04-16
#> 713                  Jake McQuaide           Jake          McQuaide 1987-12-07
#> 714                    Mitch Hyatt          Mitch             Hyatt 1997-02-06
#> 715                      Josh Ball           Josh              Ball 1998-05-15
#> 716                  Isaac Alarcon          Isaac           Alarcon 1998-07-27
#> 717               Hunter Niswander         Hunter         Niswander 1994-11-26
#> 718                    Bryan Anger          Bryan             Anger 1988-10-06
#> 719                    Cooper Rush         Cooper              Rush 1993-11-21
#> 720                    Ben DiNucci            Ben           DiNucci 1996-11-24
#> 721                   Dak Prescott            Dak          Prescott 1993-07-29
#> 722                     Will Grier           Will             Grier 1995-04-03
#> 723                   Tony Pollard           Tony           Pollard 1997-04-30
#> 724                   Nick Ralston           Nick           Ralston 1996-11-10
#> 725                   JaQuan Hardy         JaQuan             Hardy 1997-12-31
#> 726                    Rico Dowdle           Rico            Dowdle 1998-06-14
#> 727                Ezekiel Elliott        Ezekiel           Elliott 1995-07-22
#> 728                      Ito Smith            Ito             Smith 1995-09-11
#> 729                  Corey Clement          Corey           Clement 1994-11-02
#> 730                Aviante Collins        Aviante           Collins 1994-05-13
#> 731                    Tyron Smith          Tyron             Smith 1990-12-12
#> 732                  La'el Collins          La'el           Collins 1993-07-26
#> 733                 Terence Steele        Terence            Steele 1997-06-04
#> 734                      Ty Nsekhe             Ty            Nsekhe 1985-10-27
#> 735                    Ian Bunting            Ian           Bunting 1996-02-10
#> 736                Jeremy Sprinkle         Jeremy          Sprinkle 1994-08-10
#> 737                   Blake Jarwin          Blake            Jarwin 1994-07-16
#> 738                 Dalton Schultz         Dalton           Schultz 1996-07-11
#> 739                    Sean McKeon           Sean            McKeon 1997-12-28
#> 740                   Malik Turner          Malik            Turner 1996-01-30
#> 741                 Cedrick Wilson        Cedrick            Wilson 1995-11-20
#> 742                     Noah Brown           Noah             Brown 1996-01-06
#> 743                   Amari Cooper          Amari            Cooper 1994-06-17
#> 744                    Simi Fehoko           Simi            Fehoko 1997-11-05
#> 745                 Michael Gallup        Michael            Gallup 1996-03-04
#> 746                  Brandon Smith        Brandon             Smith 1998-12-10
#> 747                    CeeDee Lamb         CeeDee              Lamb 1999-04-08
#> 748                Osirus Mitchell         Osirus          Mitchell 1998-09-15
#> 749                    T.J. Vasher           T.J.            Vasher 1998-08-29
#> 750                  Robert Foster         Robert            Foster 1994-05-07
#> 751              Lloyd Cushenberry          Lloyd       Cushenberry 1997-11-22
#> 752                    Brett Jones          Brett             Jones 1991-07-29
#> 753                   Ronald Darby         Ronald             Darby 1994-01-02
#> 754                 Bryce Callahan          Bryce          Callahan 1991-10-23
#> 755                    Kyle Fuller           Kyle            Fuller 1992-02-16
#> 756                  Essang Bassey         Essang            Bassey 1998-08-12
#> 757               Michael Ojemudia        Michael          Ojemudia 1997-09-12
#> 758                  Nate Hairston           Nate          Hairston 1994-06-30
#> 759                Patrick Surtain        Patrick           Surtain 2000-04-14
#> 760                    Duke Dawson           Duke            Dawson 1996-10-03
#> 761              Ha Ha Clinton-Dix          Ha Ha       Clinton-Dix 1992-12-21
#> 762                     P.J. Locke           P.J.             Locke 1997-02-12
#> 763             Rojesterman Farris    Rojesterman            Farris 1997-09-11
#> 764                 Kareem Jackson         Kareem           Jackson 1988-04-10
#> 765                 Justin Simmons         Justin           Simmons 1993-11-19
#> 766                      Mike Ford           Mike              Ford 1995-08-04
#> 767                   Caden Sterns          Caden            Sterns 1999-11-02
#> 768                  Jamar Johnson          Jamar           Johnson 1999-11-22
#> 769                  Aaron Patrick          Aaron           Patrick 1996-12-21
#> 770                 Dre'Mont Jones       Dre'Mont             Jones 1997-01-05
#> 771                  Shelby Harris         Shelby            Harris 1991-08-11
#> 772               Marquiss Spencer       Marquiss           Spencer 1997-07-16
#> 773                Jonathan Kongbo       Jonathan            Kongbo 1996-03-19
#> 774               DeShawn Williams        DeShawn          Williams 1992-12-29
#> 775                Jonathan Harris       Jonathan            Harris 1996-08-04
#> 776                 Shamar Stephen         Shamar           Stephen 1991-02-25
#> 777                Justin Hamilton         Justin          Hamilton 1993-07-27
#> 778                   Akeem Spence          Akeem            Spence 1991-11-29
#> 779                  McTelvin Agim       McTelvin              Agim 1997-09-25
#> 780                    Andrew Beck         Andrew              Beck 1996-05-15
#> 781                    Netane Muti         Netane              Muti 1999-03-27
#> 782             Austin Schlottmann         Austin       Schlottmann 1995-09-18
#> 783                  Dalton Risner         Dalton            Risner 1995-07-13
#> 784                 Graham Glasgow         Graham           Glasgow 1992-07-19
#> 785                   Tristen Hoge        Tristen              Hoge 1997-04-23
#> 786                Brandon McManus        Brandon           McManus 1991-07-25
#> 787                    Kenny Young          Kenny             Young 1994-11-15
#> 788                 Baron Browning          Baron          Browning 1999-02-19
#> 789                    Micah Kiser          Micah             Kiser 1995-01-25
#> 790                     Malik Reed          Malik              Reed 1996-08-05
#> 791                  Justin Strnad         Justin            Strnad 1996-08-21
#> 792              Stephen Weatherly        Stephen         Weatherly 1994-03-19
#> 793                 Natrez Patrick         Natrez           Patrick 1997-07-09
#> 794                   Andre Mintze          Andre            Mintze 1998-09-10
#> 795                   Josey Jewell          Josey            Jewell 1994-12-25
#> 796                 Jonas Griffith          Jonas          Griffith 1997-01-27
#> 797                  Bradley Chubb        Bradley             Chubb 1996-06-24
#> 798                Barrington Wade     Barrington              Wade 1998-03-16
#> 799                   A.J. Johnson           A.J.           Johnson 1991-12-24
#> 800                Jonathon Cooper       Jonathon            Cooper 1998-01-08
#> 801               Jacob Bobenmoyer          Jacob        Bobenmoyer 1997-05-28
#> 802                   Mike Purcell           Mike           Purcell 1991-04-20
#> 803                    Cody Conway           Cody            Conway 1996-07-09
#> 804                   Zack Johnson           Zack           Johnson 1993-11-14
#> 805                  Quinn Meinerz          Quinn           Meinerz 1998-11-15
#> 806                  Josh Banderas           Josh          Banderas 1995-02-22
#> 807                 Drew Himmelman           Drew         Himmelman 1996-09-19
#> 808                   Quinn Bailey          Quinn            Bailey 1995-10-18
#> 809                  Garett Bolles         Garett            Bolles 1992-05-27
#> 810                     Sam Martin            Sam            Martin 1990-02-27
#> 811                Corliss Waitman        Corliss           Waitman 1995-07-21
#> 812                 Anthony Gordon        Anthony            Gordon 1996-08-28
#> 813              Teddy Bridgewater          Teddy       Bridgewater 1992-11-10
#> 814                      Drew Lock           Drew              Lock 1996-11-10
#> 815                   Brett Rypien          Brett            Rypien 1996-07-09
#> 816               Damarea Crockett        Damarea          Crockett 1997-12-22
#> 817                 Adrian Killins         Adrian           Killins 1998-01-02
#> 818                  Melvin Gordon         Melvin            Gordon 1993-04-13
#> 819               Javonte Williams        Javonte          Williams 2000-04-25
#> 820                     Mike Boone           Mike             Boone 1995-06-30
#> 821                   Casey Tucker          Casey            Tucker 1995-09-26
#> 822                Cameron Fleming        Cameron           Fleming 1992-09-03
#> 823                   Bobby Massie          Bobby            Massie 1989-08-01
#> 824                Calvin Anderson         Calvin          Anderson 1996-03-25
#> 825                   Eric Saubert           Eric           Saubert 1994-05-01
#> 826                    Shaun Beyer          Shaun             Beyer 1996-11-11
#> 827                      Noah Fant           Noah              Fant 1997-11-20
#> 828             Albert Okwuegbunam         Albert       Okwuegbunam 1998-04-25
#> 829                   Caleb Wilson          Caleb            Wilson 1996-07-15
#> 830               Courtland Sutton      Courtland            Sutton 1995-10-10
#> 831                    Jerry Jeudy          Jerry             Jeudy 1999-04-24
#> 832                 Travis Fulgham         Travis           Fulgham 1995-09-13
#> 833               DaeSean Hamilton        DaeSean          Hamilton 1995-03-10
#> 834                    Tim Patrick            Tim           Patrick 1993-11-23
#> 835                 Kendall Hinton        Kendall            Hinton 1997-02-19
#> 836                Tyrie Cleveland          Tyrie         Cleveland 1997-09-20
#> 837                      KJ Hamler             KJ            Hamler 1999-07-08
#> 838                  Seth Williams           Seth          Williams 2000-04-10
#> 839                Diontae Spencer        Diontae           Spencer 1992-03-19
#> 840                     Evan Brown           Evan             Brown 1996-09-16
#> 841                   Frank Ragnow          Frank            Ragnow 1996-05-17
#> 842                  Ryan McCollum           Ryan          McCollum 1998-03-04
#> 843                Amani Oruwariye          Amani         Oruwariye 1996-02-09
#> 844                    Jeff Okudah           Jeff            Okudah 1999-02-02
#> 845                 Parnell Motley        Parnell            Motley 1997-10-28
#> 846                  Saivion Smith        Saivion             Smith 1997-11-05
#> 847                      AJ Parker             AJ            Parker 1998-02-15
#> 848               Ifeatu Melifonwu         Ifeatu         Melifonwu 1999-05-02
#> 849                   Mark Gilbert           Mark           Gilbert 1997-06-01
#> 850                   Jerry Jacobs          Jerry            Jacobs 1997-09-26
#> 851                    Bobby Price          Bobby             Price 1998-04-25
#> 852                    JuJu Hughes           JuJu            Hughes 1998-07-19
#> 853                  Jalen Elliott          Jalen           Elliott 1998-07-07
#> 854                  D'Angelo Amos       D'Angelo              Amos       <NA>
#> 855                   Tracy Walker          Tracy            Walker 1995-02-01
#> 856                    Will Harris           Will            Harris 1995-12-19
#> 857                     C.J. Moore           C.J.             Moore 1995-12-15
#> 858                   Dean Marlowe           Dean           Marlowe 1992-07-25
#> 859                   Brady Breeze          Brady            Breeze 1997-10-09
#> 860                     Joel Heath           Joel             Heath 1993-06-18
#> 861               Michael Brockers        Michael          Brockers 1990-12-21
#> 862                     Eric Banks           Eric             Banks 1998-01-30
#> 863                Levi Onwuzurike           Levi        Onwuzurike 1998-03-02
#> 864                   Bruce Hector          Bruce            Hector 1994-10-07
#> 865              Nicholas Williams       Nicholas          Williams 1990-02-21
#> 866                 Jashon Cornell         Jashon           Cornell 1996-12-29
#> 867                  Jason Cabinda          Jason           Cabinda 1996-03-17
#> 868                  Jonah Jackson          Jonah           Jackson 1997-02-05
#> 869          Halapoulivaati Vaitai Halapoulivaati            Vaitai 1993-06-16
#> 870                  Tommy Kraemer          Tommy           Kraemer 1998-04-16
#> 871                 Logan Stenberg          Logan          Stenberg 1997-03-18
#> 872                Riley Patterson          Riley         Patterson 1999-09-07
#> 873                 Austin Seibert         Austin           Seibert 1996-11-15
#> 874                  Aldrick Rosas        Aldrick             Rosas 1994-12-30
#> 875                  Julian Okwara         Julian            Okwara 1997-12-27
#> 876                Jessie Lemonier         Jessie          Lemonier 1997-01-31
#> 877                Anthony Pittman        Anthony           Pittman 1996-11-24
#> 878                  Curtis Bolton         Curtis            Bolton 1995-12-18
#> 879                 Derrick Barnes        Derrick            Barnes 1999-05-29
#> 880            Jalen Reeves-Maybin          Jalen     Reeves-Maybin 1995-01-31
#> 881                Tavante Beckett        Tavante           Beckett 1997-10-21
#> 882            Shaun Dion Hamilton     Shaun Dion          Hamilton 1995-09-11
#> 883                 Charles Harris        Charles            Harris 1995-03-06
#> 884                     Josh Woods           Josh             Woods 1996-07-01
#> 885                  Austin Bryant         Austin            Bryant 1996-11-12
#> 886                   Romeo Okwara          Romeo            Okwara 1995-06-17
#> 887                  Alex Anzalone           Alex          Anzalone 1994-09-22
#> 888                   Trey Flowers           Trey           Flowers 1993-08-16
#> 889                   Rashod Berry         Rashod             Berry 1996-10-14
#> 890                     Scott Daly          Scott              Daly 1994-02-07
#> 891                   Alim McNeill           Alim           McNeill 2000-05-11
#> 892                  John Penisini           John          Penisini 1997-05-31
#> 893                       Jack Fox           Jack               Fox 1996-09-01
#> 894                      Tim Boyle            Tim             Boyle 1994-10-03
#> 895                  Steven Montez         Steven            Montez 1997-01-14
#> 896                   David Blough          David            Blough 1995-07-31
#> 897                     Jared Goff          Jared              Goff 1994-10-14
#> 898                 Michael Warren        Michael            Warren 1998-11-12
#> 899                  D'Andre Swift        D'Andre             Swift 1999-01-14
#> 900                Jamaal Williams         Jamaal          Williams 1995-04-03
#> 901                 Craig Reynolds          Craig          Reynolds 1996-06-15
#> 902               Jermar Jefferson         Jermar         Jefferson 2000-04-15
#> 903               Godwin Igwebuike         Godwin         Igwebuike 1994-09-10
#> 904                    Dan Skipper            Dan           Skipper 1994-09-20
#> 905                   Penei Sewell          Penei            Sewell 2000-10-09
#> 906                    Will Holden           Will            Holden 1993-09-14
#> 907                    Matt Nelson           Matt            Nelson 1995-12-19
#> 908                  Taylor Decker         Taylor            Decker 1994-08-23
#> 909                  Jordan Thomas         Jordan            Thomas 1996-08-02
#> 910                   Brock Wright          Brock            Wright 1998-11-27
#> 911                  Jared Pinkney          Jared           Pinkney 1997-08-21
#> 912                  Hunter Bryant         Hunter            Bryant 1998-08-20
#> 913                  Shane Zylstra          Shane           Zylstra 1996-11-16
#> 914                     Matt Sokol           Matt             Sokol 1995-11-09
#> 915                 T.J. Hockenson           T.J.         Hockenson 1997-07-03
#> 916                 Javon McKinley          Javon          McKinley 1998-04-10
#> 917                    Tom Kennedy            Tom           Kennedy 1996-07-29
#> 918              Amon-Ra St. Brown        Amon-Ra         St. Brown 1999-10-24
#> 919                 Khadarel Hodge       Khadarel             Hodge 1995-01-03
#> 920                 Quintez Cephus        Quintez            Cephus 1998-04-01
#> 921                 Trinity Benson        Trinity            Benson 1997-01-16
#> 922                  Josh Reynolds           Josh          Reynolds 1995-02-16
#> 923                  Kalif Raymond          Kalif           Raymond 1994-08-08
#> 924                    Jake Hanson           Jake            Hanson 1997-04-29
#> 925               Chandon Sullivan        Chandon          Sullivan 1996-08-07
#> 926                    Eric Stokes           Eric            Stokes 1999-03-01
#> 927                   Isaac Yiadom          Isaac            Yiadom 1996-02-20
#> 928                     Kevin King          Kevin              King 1995-05-05
#> 929                  Rasul Douglas          Rasul           Douglas 1995-08-29
#> 930            Shemar Jean-Charles         Shemar      Jean-Charles 1998-06-20
#> 931                 Kiondre Thomas        Kiondre            Thomas 1998-02-07
#> 932                Jaire Alexander          Jaire         Alexander 1997-02-09
#> 933                    Kabion Ento         Kabion              Ento 1996-01-03
#> 934                   Innis Gaines          Innis            Gaines 1998-08-29
#> 935                 Darnell Savage        Darnell            Savage 1997-07-30
#> 936                    Adrian Amos         Adrian              Amos 1993-04-29
#> 937                    Henry Black          Henry             Black 1997-01-03
#> 938                   Vernon Scott         Vernon             Scott 1997-09-11
#> 939                    Shawn Davis          Shawn             Davis 1997-12-24
#> 940                     Dean Lowry           Dean             Lowry 1994-06-09
#> 941                    Kenny Clark          Kenny             Clark 1995-10-04
#> 942              Abdullah Anderson       Abdullah          Anderson 1996-01-24
#> 943                  Aiulua Fanene         Aiulua            Fanene       <NA>
#> 944                    T.J. Slaton           T.J.            Slaton 1997-10-03
#> 945                    Jack Heflin           Jack            Heflin 1998-03-08
#> 946                Tyler Lancaster          Tyler         Lancaster 1994-11-04
#> 947                     Ben Braden            Ben            Braden 1994-03-09
#> 948                 Elgton Jenkins         Elgton           Jenkins 1995-12-26
#> 949                  Lucas Patrick          Lucas           Patrick 1993-07-30
#> 950                     Jon Runyan            Jon            Runyan 1997-08-08
#> 951                 Dominik Eberle        Dominik            Eberle 1996-07-04
#> 952                   Mason Crosby          Mason            Crosby 1984-09-03
#> 953                      JJ Molson             JJ            Molson 1997-04-03
#> 954                  Preston Smith        Preston             Smith 1992-11-17
#> 955                    Rashan Gary         Rashan              Gary 1997-12-03
#> 956                    Ray Wilborn            Ray           Wilborn 1997-04-01
#> 957                Chauncey Rivers       Chauncey            Rivers 1997-06-12
#> 958                Peter Kalambayi          Peter         Kalambayi 1995-06-26
#> 959                Jonathan Garvin       Jonathan            Garvin 1999-07-28
#> 960                     Oren Burks           Oren             Burks 1995-03-21
#> 961                     Ty Summers             Ty           Summers 1995-12-31
#> 962               Whitney Mercilus        Whitney          Mercilus 1990-07-21
#> 963                Za'Darius Smith      Za'Darius             Smith 1992-09-08
#> 964             De'Vondre Campbell      De'Vondre          Campbell 1993-07-01
#> 965                    Tipa Galeai           Tipa            Galeai 1997-02-26
#> 966                    Krys Barnes           Krys            Barnes 1998-04-02
#> 967                Isaiah McDuffie         Isaiah          McDuffie 1999-07-21
#> 968                   Randy Ramsey          Randy            Ramsey 1995-09-07
#> 969             La'Darius Hamilton      La'Darius          Hamilton 1998-01-18
#> 970                  Steven Wirtel         Steven            Wirtel 1997-10-03
#> 971                   Michal Menet         Michal             Menet 1997-08-08
#> 972                 Cole Van Lanen           Cole         Van Lanen 1998-04-23
#> 973                   Royce Newman          Royce            Newman 1997-08-17
#> 974                   Billy Turner          Billy            Turner 1991-10-17
#> 975                     Josh Myers           Josh             Myers 1998-07-16
#> 976                David Bakhtiari          David         Bakhtiari 1991-09-30
#> 977                Corey Bojorquez          Corey         Bojorquez 1996-09-13
#> 978                  Aaron Rodgers          Aaron           Rodgers 1983-12-02
#> 979                    Jordan Love         Jordan              Love 1998-11-02
#> 980                   Kurt Benkert           Kurt           Benkert 1995-07-17
#> 981                   Danny Etling          Danny            Etling 1994-07-22
#> 982                 Patrick Taylor        Patrick            Taylor 1998-04-29
#> 983                    Aaron Jones          Aaron             Jones 1994-12-02
#> 984                      AJ Dillon             AJ            Dillon 1998-05-02
#> 985                  Kerrith Whyte        Kerrith             Whyte 1996-10-31
#> 986                     Kylin Hill          Kylin              Hill 1998-08-18
#> 987                   Dennis Kelly         Dennis             Kelly 1990-01-16
#> 988                  Yosuah Nijman         Yosuah            Nijman 1996-01-02
#> 989                 Marcedes Lewis       Marcedes             Lewis 1984-05-19
#> 990               Dominique Dafney      Dominique            Dafney 1997-06-03
#> 991                     Alize Mack          Alize              Mack 1997-03-29
#> 992                 Josiah Deguara         Josiah           Deguara 1997-02-14
#> 993                    Isaac Nauta          Isaac             Nauta 1997-05-21
#> 994                    Tyler Davis          Tyler             Davis 1997-04-02
#> 995                Bronson Kaufusi        Bronson           Kaufusi 1991-07-06
#> 996                  Robert Tonyan         Robert            Tonyan 1994-04-30
#> 997                   Randall Cobb        Randall              Cobb 1990-08-22
#> 998                  Davante Adams        Davante             Adams 1992-12-24
#> 999              DeAndre Thompkins        DeAndre         Thompkins 1995-10-01
#> 1000                  Malik Taylor          Malik            Taylor 1995-12-21
#> 1001                   Chris Blair          Chris             Blair 1997-10-06
#> 1002         Equanimeous St. Brown    Equanimeous         St. Brown 1996-09-30
#> 1003                 Amari Rodgers          Amari           Rodgers 1999-09-23
#> 1004                   David Moore          David             Moore 1995-01-15
#> 1005                  Allen Lazard          Allen            Lazard 1995-12-11
#> 1006      Marquez Valdes-Scantling        Marquez  Valdes-Scantling 1994-10-10
#> 1007                  Rico Gafford           Rico           Gafford 1996-05-23
#> 1008                Juwann Winfree         Juwann           Winfree 1996-09-04
#> 1009                Jimmy Moreland          Jimmy          Moreland 1995-08-26
#> 1010                   Eric Murray           Eric            Murray 1994-01-07
#> 1011                  Desmond King        Desmond              King 1994-12-14
#> 1012                Jonathan Owens       Jonathan             Owens 1995-07-22
#> 1013                  Tremon Smith         Tremon             Smith 1996-07-20
#> 1014                    T.J. Green           T.J.             Green 1995-03-15
#> 1015             Terrance Mitchell       Terrance          Mitchell 1992-05-17
#> 1016                   Justin Reid         Justin              Reid 1997-02-15
#> 1017               Grayland Arnold       Grayland            Arnold 1997-09-04
#> 1018                Lonnie Johnson         Lonnie           Johnson 1995-11-04
#> 1019               Terrence Brooks       Terrence            Brooks 1992-03-02
#> 1020                    A.J. Moore           A.J.             Moore 1995-12-15
#> 1021               Tavierre Thomas       Tavierre            Thomas 1996-03-11
#> 1022                  Derek Rivers          Derek            Rivers 1994-05-09
#> 1023                  Jacob Martin          Jacob            Martin 1995-12-11
#> 1024                Jordan Jenkins         Jordan           Jenkins 1994-07-01
#> 1025                 Demone Harris         Demone            Harris 1995-12-30
#> 1026               DeMarcus Walker       DeMarcus            Walker 1994-09-30
#> 1027             Jonathan Greenard       Jonathan          Greenard 1997-05-25
#> 1028                   Chris Smith          Chris             Smith 1992-02-11
#> 1029                 Kingsley Keke       Kingsley              Keke 1996-09-26
#> 1030                     Roy Lopez            Roy             Lopez 1997-08-07
#> 1031                Ross Blacklock           Ross         Blacklock 1998-07-09
#> 1032              Michael Dwumfour        Michael          Dwumfour 1998-01-01
#> 1033                Vincent Taylor        Vincent            Taylor 1994-01-05
#> 1034                Jaleel Johnson         Jaleel           Johnson 1994-07-12
#> 1035                Maliek Collins         Maliek           Collins 1995-04-08
#> 1036                    Sam Cooper            Sam            Cooper 1997-06-01
#> 1037              Ka'imi Fairbairn         Ka'imi         Fairbairn 1994-01-29
#> 1038                 Garret Wallow         Garret            Wallow 1999-01-25
#> 1039               Hardy Nickerson          Hardy         Nickerson 1994-01-05
#> 1040                Neville Hewitt        Neville            Hewitt 1993-04-06
#> 1041             Kamu Grugier-Hill           Kamu      Grugier-Hill 1994-05-16
#> 1042               Ron'Dell Carter       Ron'Dell            Carter 1997-07-03
#> 1043                   Eric Wilson           Eric            Wilson 1994-09-26
#> 1044                   Josh Watson           Josh            Watson 1996-05-20
#> 1045               Connor Strachan         Connor          Strachan 1995-06-30
#> 1046            Kevin Pierre-Louis          Kevin      Pierre-Louis 1991-10-07
#> 1047                     Tae Davis            Tae             Davis 1996-08-14
#> 1048             Christian Kirksey      Christian           Kirksey 1992-08-31
#> 1049              Mitchell Fraboni       Mitchell           Fraboni       <NA>
#> 1050                Jonathan Weeks       Jonathan             Weeks 1986-02-17
#> 1051                  Tytus Howard          Tytus            Howard 1996-05-23
#> 1052                   Lane Taylor           Lane            Taylor 1989-11-22
#> 1053               Geron Christian          Geron         Christian 1996-09-10
#> 1054                  Justin Britt         Justin             Britt 1991-05-29
#> 1055               Jimmy Morrissey          Jimmy         Morrissey 1998-06-09
#> 1056                 Max Scharping            Max         Scharping 1996-08-10
#> 1057                 Laremy Tunsil         Laremy            Tunsil 1994-08-02
#> 1058                  Carson Green         Carson             Green 1999-04-05
#> 1059                    Cole Toner           Cole             Toner 1994-03-13
#> 1060                 Marcus Cannon         Marcus            Cannon 1988-05-06
#> 1061                 Justin McCray         Justin            McCray 1992-05-31
#> 1062               Jake Eldrenkamp           Jake        Eldrenkamp 1994-03-04
#> 1063               Jordan Steckler         Jordan          Steckler 1996-07-16
#> 1064              Cameron Johnston        Cameron          Johnston 1992-02-24
#> 1065                   Davis Mills          Davis             Mills 1998-10-21
#> 1066                Deshaun Watson        Deshaun            Watson 1995-09-14
#> 1067                  Tyrod Taylor          Tyrod            Taylor 1989-08-03
#> 1068                  Jeff Driskel           Jeff           Driskel 1993-04-23
#> 1069               Darius Anderson         Darius          Anderson 1997-09-10
#> 1070                  Rex Burkhead            Rex          Burkhead 1990-07-02
#> 1071                 David Johnson          David           Johnson 1991-12-16
#> 1072                 Royce Freeman          Royce           Freeman 1996-02-24
#> 1073              Scottie Phillips        Scottie          Phillips 1997-10-06
#> 1074                  Charlie Heck        Charlie              Heck 1996-11-20
#> 1075                Antony Auclair         Antony           Auclair 1993-05-28
#> 1076                  Jordan Akins         Jordan             Akins 1992-04-19
#> 1077                 Brevin Jordan         Brevin            Jordan 2000-07-16
#> 1078                 Pharaoh Brown        Pharaoh             Brown 1994-05-04
#> 1079             Paul Quessenberry           Paul      Quessenberry 1992-01-08
#> 1080                   Chris Moore          Chris             Moore 1993-06-16
#> 1081                Danny Amendola          Danny          Amendola 1985-11-02
#> 1082                  Jordan Veasy         Jordan             Veasy 1995-06-23
#> 1083                  Nico Collins           Nico           Collins 1999-03-19
#> 1084               Phillip Dorsett        Phillip           Dorsett 1993-01-05
#> 1085                  Chris Conley          Chris            Conley 1992-10-25
#> 1086                 Brandin Cooks        Brandin             Cooks 1993-09-25
#> 1087                  Davion Davis         Davion             Davis 1996-10-23
#> 1088                    Jalen Camp          Jalen              Camp 1998-07-10
#> 1089                Damon Hazelton          Damon          Hazelton 1997-02-28
#> 1090                    Ryan Kelly           Ryan             Kelly 1993-05-30
#> 1091                   T.J. Carrie           T.J.            Carrie 1990-07-28
#> 1092               Alexander Myres      Alexander             Myres 1996-04-20
#> 1093                   Rock Ya-Sin           Rock            Ya-Sin 1996-05-23
#> 1094                   Nick Nelson           Nick            Nelson 1996-10-16
#> 1095                  Chris Wilcox          Chris            Wilcox 1997-10-30
#> 1096                 Xavier Rhodes         Xavier            Rhodes 1990-06-19
#> 1097               Anthony Chesley        Anthony           Chesley 1995-05-31
#> 1098                   Brian Poole          Brian             Poole 1992-10-20
#> 1099                Isaiah Rodgers         Isaiah           Rodgers 1998-01-07
#> 1100                   Kenny Moore          Kenny             Moore 1995-08-23
#> 1101                  Marvell Tell        Marvell              Tell 1996-08-02
#> 1102                  Khari Willis          Khari            Willis 1996-05-07
#> 1103             Ibraheim Campbell       Ibraheim          Campbell 1992-05-13
#> 1104                 Jahleel Addae        Jahleel             Addae 1990-01-24
#> 1105               Julian Blackmon         Julian          Blackmon 1998-08-24
#> 1106                   George Odum         George              Odum 1993-11-03
#> 1107                Rolan Milligan          Rolan          Milligan 1994-08-16
#> 1108                  Will Redmond           Will           Redmond 1993-12-28
#> 1109                Andrew Sendejo         Andrew           Sendejo 1987-09-09
#> 1110               D.J. Swearinger           D.J.        Swearinger 1991-09-01
#> 1111                    Kwity Paye          Kwity              Paye 1998-11-19
#> 1112                  Tyquan Lewis         Tyquan             Lewis 1995-01-30
#> 1113                  Kemoko Turay         Kemoko             Turay 1995-07-11
#> 1114                 Kameron Cline        Kameron             Cline 1998-02-19
#> 1115                 Isaac Rochell          Isaac           Rochell 1995-04-22
#> 1116            Al-Quadin Muhammad      Al-Quadin          Muhammad 1995-03-28
#> 1117                Dayo Odeyingbo           Dayo         Odeyingbo 1999-09-24
#> 1118                    Ben Banogu            Ben            Banogu 1996-01-19
#> 1119                Chris Williams          Chris          Williams 1998-06-16
#> 1120                 R.J. McIntosh           R.J.          McIntosh 1996-06-02
#> 1121                 Antwaun Woods        Antwaun             Woods 1993-01-03
#> 1122             Taylor Stallworth         Taylor        Stallworth 1995-08-18
#> 1123                Grover Stewart         Grover           Stewart 1993-10-20
#> 1124                Robert Windsor         Robert           Windsor 1997-01-15
#> 1125              DeForest Buckner       DeForest           Buckner 1994-03-17
#> 1126                Mark Glowinski           Mark         Glowinski 1992-05-03
#> 1127                    Will Fries           Will             Fries 1998-04-04
#> 1128                  Danny Pinter          Danny            Pinter 1996-06-19
#> 1129                    Chris Reed          Chris              Reed 1992-07-22
#> 1130           Rodrigo Blankenship        Rodrigo       Blankenship 1997-01-29
#> 1131               Michael Badgley        Michael           Badgley 1995-07-28
#> 1132                   Jake Verity           Jake            Verity 1997-12-23
#> 1133               Malik Jefferson          Malik         Jefferson 1996-11-15
#> 1134                Darius Leonard         Darius           Leonard 1995-07-27
#> 1135                 Matthew Adams        Matthew             Adams 1995-12-12
#> 1136                    Skai Moore           Skai             Moore 1995-01-08
#> 1137                 Bobby Okereke          Bobby           Okereke 1996-07-29
#> 1138                Jordan Glasgow         Jordan           Glasgow 1996-06-28
#> 1139                    E.J. Speed           E.J.             Speed 1995-06-01
#> 1140                Zaire Franklin          Zaire          Franklin 1996-07-02
#> 1141                   Luke Rhodes           Luke            Rhodes 1992-12-02
#> 1142                Quenton Nelson        Quenton            Nelson 1996-03-19
#> 1143                  Braden Smith         Braden             Smith 1996-03-25
#> 1144                      Sam Tevi            Sam              Tevi 1994-11-15
#> 1145                   Eric Fisher           Eric            Fisher 1991-01-05
#> 1146                  Shon Coleman           Shon           Coleman 1991-11-25
#> 1147             Rigoberto Sanchez      Rigoberto           Sanchez 1994-09-08
#> 1148                  Sam Ehlinger            Sam          Ehlinger 1998-09-30
#> 1149                  James Morgan          James            Morgan 1997-02-28
#> 1150                 Brett Hundley          Brett           Hundley 1993-06-15
#> 1151                  Jalen Morton          Jalen            Morton 1997-07-06
#> 1152                  Carson Wentz         Carson             Wentz 1992-12-30
#> 1153                  Deon Jackson           Deon           Jackson 1999-02-18
#> 1154                  Nyheim Hines         Nyheim             Hines 1996-11-12
#> 1155               Jonathan Taylor       Jonathan            Taylor 1999-01-19
#> 1156                   Marlon Mack         Marlon              Mack 1996-03-07
#> 1157              Julien Davenport         Julien         Davenport 1995-01-09
#> 1158              Carter O'Donnell         Carter         O'Donnell 1998-12-23
#> 1159                    Matt Pryor           Matt             Pryor 1994-12-16
#> 1160                 Jordan Murray         Jordan            Murray 1997-05-17
#> 1161                 Kylen Granson          Kylen           Granson 1998-03-27
#> 1162                Nikola Kalinic         Nikola           Kalinic 1997-01-21
#> 1163                    Jack Doyle           Jack             Doyle 1990-05-05
#> 1164                   Mo Alie-Cox             Mo          Alie-Cox 1993-09-19
#> 1165                      Eli Wolf            Eli              Wolf 1997-11-03
#> 1166              Michael Jacobson        Michael          Jacobson 1997-04-04
#> 1167                  Farrod Green         Farrod             Green 1997-06-10
#> 1168                 Dezmon Patmon         Dezmon            Patmon 1998-08-06
#> 1169               Parris Campbell         Parris          Campbell 1997-07-16
#> 1170              DeMichael Harris      DeMichael            Harris 1998-07-12
#> 1171                Quartney Davis       Quartney             Davis 1998-04-07
#> 1172                   Keke Coutee           Keke            Coutee 1997-01-14
#> 1173                 Mike Strachan           Mike          Strachan 1997-08-13
#> 1174                   J.J. Nelson           J.J.            Nelson 1992-04-24
#> 1175                      Al Riles             Al             Riles 1993-09-17
#> 1176                  Ashton Dulin         Ashton             Dulin 1997-05-15
#> 1177                   Zach Pascal           Zach            Pascal 1994-12-18
#> 1178                   T.Y. Hilton           T.Y.            Hilton 1989-11-14
#> 1179               Michael Pittman        Michael           Pittman 1997-10-05
#> 1180              Shaquill Griffin       Shaquill           Griffin 1995-07-20
#> 1181               Michael Jacquet        Michael           Jacquet 1997-01-29
#> 1182                 Lorenzo Burns        Lorenzo             Burns 1997-10-10
#> 1183                Brandon Rusnak        Brandon            Rusnak 1995-07-11
#> 1184                  Nevin Lawson          Nevin            Lawson 1991-04-23
#> 1185                Tyson Campbell          Tyson          Campbell 2000-03-17
#> 1186                   Tre Herndon            Tre           Herndon 1996-03-05
#> 1187                 Daniel Thomas         Daniel            Thomas 1998-07-01
#> 1188                     Rudy Ford           Rudy              Ford 1994-11-01
#> 1189                Andrew Wingard         Andrew           Wingard 1996-12-05
#> 1190                   Andre Cisco          Andre             Cisco 2000-03-23
#> 1191             Bradley McDougald        Bradley         McDougald 1990-11-15
#> 1192              Chris Claybrooks          Chris        Claybrooks 1997-07-17
#> 1193              Rayshawn Jenkins       Rayshawn           Jenkins 1994-01-25
#> 1194            Jeremiah Ledbetter       Jeremiah         Ledbetter 1994-06-02
#> 1195                    Jihad Ward          Jihad              Ward 1994-05-11
#> 1196                   Taven Bryan          Taven             Bryan 1996-03-11
#> 1197                   Adam Gotsis           Adam            Gotsis 1992-09-23
#> 1198                  Jordan Smith         Jordan             Smith 1998-04-10
#> 1199                    Josh Allen           Josh             Allen 1997-07-13
#> 1200          Roy Robertson-Harris            Roy  Robertson-Harris 1993-07-23
#> 1201                 Dawuane Smoot        Dawuane             Smoot 1995-03-02
#> 1202               Lerentee McCray       Lerentee            McCray 1990-08-26
#> 1203              Raequan Williams        Raequan          Williams 1997-02-14
#> 1204                  Malcom Brown         Malcom             Brown 1994-02-02
#> 1205                DaVon Hamilton          DaVon          Hamilton 1997-02-01
#> 1206                    Jay Tufele            Jay            Tufele 1999-07-25
#> 1207                  Jared Hocker          Jared            Hocker 1999-07-11
#> 1208                Matthew Wright        Matthew            Wright 1996-03-22
#> 1209              Chapelle Russell       Chapelle           Russell 1997-01-20
#> 1210          Shaquille Quarterman      Shaquille        Quarterman 1997-10-28
#> 1211                  Dakota Allen         Dakota             Allen 1995-11-02
#> 1212                 Damien Wilson         Damien            Wilson 1993-05-28
#> 1213                  Tyrell Adams         Tyrell             Adams 1992-04-11
#> 1214                   Dylan Moses          Dylan             Moses 1998-05-25
#> 1215              K'Lavon Chaisson        K'Lavon          Chaisson 1999-07-25
#> 1216               Elijah Sullivan         Elijah          Sullivan 1997-05-13
#> 1217                   Jamir Jones          Jamir             Jones 1998-06-14
#> 1218                    Myles Jack          Myles              Jack 1995-09-03
#> 1219                 Ross Matiscik           Ross          Matiscik 1996-09-13
#> 1220                 Tyler Shatley          Tyler           Shatley 1991-05-05
#> 1221                    Ben Bartch            Ben            Bartch 1998-07-22
#> 1222                     A.J. Cann           A.J.              Cann 1991-10-03
#> 1223                Andrew Norwell         Andrew           Norwell 1991-10-25
#> 1224                Brandon Linder        Brandon            Linder 1992-01-25
#> 1225                  KC McDermott             KC         McDermott 1996-04-18
#> 1226               Will Richardson           Will        Richardson 1996-01-04
#> 1227        Tre'Vour Wallace-Simms       Tre'Vour     Wallace-Simms 1997-09-25
#> 1228                  Cam Robinson            Cam          Robinson 1995-10-09
#> 1229                 Jawaan Taylor         Jawaan            Taylor 1997-11-25
#> 1230                   Logan Cooke          Logan             Cooke 1995-07-28
#> 1231                    J.K. Scott           J.K.             Scott 1995-10-30
#> 1232                    Jake Luton           Jake             Luton 1996-04-11
#> 1233               Trevor Lawrence         Trevor          Lawrence 1999-10-06
#> 1234                 C.J. Beathard           C.J.          Beathard 1993-11-16
#> 1235              Ryquell Armstead        Ryquell          Armstead 1996-10-30
#> 1236               Nathan Cottrell         Nathan          Cottrell 1996-08-02
#> 1237                   Carlos Hyde         Carlos              Hyde 1990-09-20
#> 1238                Travis Etienne         Travis           Etienne 1999-01-26
#> 1239                James Robinson          James          Robinson 1998-08-09
#> 1240                 Mekhi Sargent          Mekhi           Sargent 1997-10-08
#> 1241               Dare Ogunbowale           Dare        Ogunbowale 1994-05-04
#> 1242                 Walker Little         Walker            Little 1999-04-01
#> 1243                     Coy Cronk            Coy             Cronk 1998-01-18
#> 1244                 Badara Traore         Badara            Traore 1997-03-12
#> 1245           James O'Shaughnessy          James     O'Shaughnessy 1992-01-14
#> 1246                  Luke Farrell           Luke           Farrell 1997-10-14
#> 1247                Chris Manhertz          Chris          Manhertz 1992-04-10
#> 1248                    Dan Arnold            Dan            Arnold 1995-03-15
#> 1249                Kahale Warring         Kahale           Warring 1997-03-23
#> 1250               Jacob Hollister          Jacob         Hollister 1993-11-18
#> 1251                Jaydon Mickens         Jaydon           Mickens 1994-04-21
#> 1252                   Jamal Agnew          Jamal             Agnew 1995-04-03
#> 1253                  Terry Godwin          Terry            Godwin 1996-10-23
#> 1254                  Marvin Jones         Marvin             Jones 1990-03-12
#> 1255                   Jeff Cotton           Jeff            Cotton 1997-04-17
#> 1256                  Josh Hammond           Josh           Hammond 1998-07-24
#> 1257              Laquon Treadwell         Laquon         Treadwell 1995-06-14
#> 1258                  Tavon Austin          Tavon            Austin 1990-03-15
#> 1259              Laviska Shenault        Laviska          Shenault 1998-10-05
#> 1260                    D.J. Chark           D.J.             Chark 1996-09-23
#> 1261                     Tim Jones            Tim             Jones 1998-05-16
#> 1262                   Mike Hughes           Mike            Hughes 1997-02-11
#> 1263                L'Jarius Sneed       L'Jarius             Sneed 1997-01-21
#> 1264                 Rashad Fenton         Rashad            Fenton 1997-02-17
#> 1265                 Chris Lammons          Chris           Lammons 1996-01-31
#> 1266               Charvarius Ward     Charvarius              Ward 1996-05-16
#> 1267                 Deandre Baker        Deandre             Baker 1997-09-04
#> 1268                     Devon Key          Devon               Key 1997-10-28
#> 1269                Juan Thornhill           Juan         Thornhill 1995-10-19
#> 1270                  Armani Watts         Armani             Watts 1996-03-19
#> 1271             Brandin Dandridge        Brandin         Dandridge 1996-08-19
#> 1272               Daniel Sorensen         Daniel          Sorensen 1990-03-05
#> 1273                Zayne Anderson          Zayne          Anderson 1997-01-03
#> 1274               DiCaprio Bootle       DiCaprio            Bootle 1997-09-17
#> 1275                Tyrann Mathieu         Tyrann           Mathieu 1992-05-13
#> 1276                  Josh Jackson           Josh           Jackson 1996-04-03
#> 1277                   Alex Okafor           Alex            Okafor 1991-02-08
#> 1278                Joshua Kaindoh         Joshua           Kaindoh 1998-12-27
#> 1279                   Frank Clark          Frank             Clark 1993-06-14
#> 1280              Jonathan Woodard       Jonathan           Woodard 1993-09-19
#> 1281                 Michael Danna        Michael             Danna 1997-12-01
#> 1282                 Malik Herring          Malik           Herring 1997-11-09
#> 1283                Austin Edwards         Austin           Edwards 1997-08-27
#> 1284               Khalen Saunders         Khalen          Saunders 1996-08-09
#> 1285               Andrew Billings         Andrew          Billings 1995-03-06
#> 1286              Tershawn Wharton       Tershawn           Wharton 1998-06-25
#> 1287                   Jarran Reed         Jarran              Reed 1992-12-16
#> 1288              Cortez Broughton         Cortez         Broughton 1996-09-02
#> 1289                 Derrick Nnadi        Derrick             Nnadi 1996-05-09
#> 1290                   Chris Jones          Chris             Jones 1994-07-03
#> 1291                Michael Burton        Michael            Burton 1992-02-01
#> 1292                  Andrew Wylie         Andrew             Wylie 1994-08-19
#> 1293               Nick Allegretti           Nick        Allegretti 1996-04-21
#> 1294               Harrison Butker       Harrison            Butker 1995-07-14
#> 1295               Dorian O'Daniel         Dorian          O'Daniel 1994-09-04
#> 1296              Shilique Calhoun       Shilique           Calhoun 1992-03-20
#> 1297                    Willie Gay         Willie               Gay 1998-02-15
#> 1298                 Melvin Ingram         Melvin            Ingram 1989-04-26
#> 1299              Anthony Hitchens        Anthony          Hitchens 1992-06-10
#> 1300                   Ben Niemann            Ben           Niemann 1995-07-27
#> 1301                 Darius Harris         Darius            Harris 1996-01-17
#> 1302                   Nick Bolton           Nick            Bolton 2000-03-10
#> 1303              James Winchester          James        Winchester 1989-08-06
#> 1304                    Drew Scott           Drew             Scott 1995-03-12
#> 1305                     Kyle Long           Kyle              Long 1988-12-05
#> 1306                Creed Humphrey          Creed          Humphrey 1999-06-28
#> 1307                   Lucas Niang          Lucas             Niang 1998-08-19
#> 1308                    Trey Smith           Trey             Smith 1999-06-16
#> 1309                 Austin Blythe         Austin            Blythe 1992-06-16
#> 1310                    Joe Thuney            Joe            Thuney 1992-11-18
#> 1311               Darryl Williams         Darryl          Williams 1997-06-10
#> 1312                Tommy Townsend          Tommy          Townsend 1996-11-12
#> 1313               Patrick Mahomes        Patrick           Mahomes 1995-09-17
#> 1314                    Chad Henne           Chad             Henne 1985-07-02
#> 1315                Shane Buechele          Shane          Buechele 1998-01-08
#> 1316               Jerick McKinnon         Jerick          McKinnon 1992-05-03
#> 1317                Elijah McGuire         Elijah           McGuire 1994-06-01
#> 1318                  Derrick Gore        Derrick              Gore 1994-12-13
#> 1319               Darrel Williams         Darrel          Williams 1995-04-15
#> 1320         Clyde Edwards-Helaire          Clyde   Edwards-Helaire 1999-04-11
#> 1321                  Mike Remmers           Mike           Remmers 1989-04-11
#> 1322              Roderick Johnson       Roderick           Johnson 1995-11-28
#> 1323                 Orlando Brown        Orlando             Brown 1996-05-02
#> 1324           Prince Tega Wanogho    Prince Tega           Wanogho 1997-11-22
#> 1325                 Josh Pederson           Josh          Pederson 1997-09-09
#> 1326                  Matt Bushman           Matt           Bushman 1995-11-03
#> 1327                     Noah Gray           Noah              Gray 1999-04-30
#> 1328                  Travis Kelce         Travis             Kelce 1989-10-05
#> 1329                  Jody Fortson           Jody           Fortson 1995-12-07
#> 1330         Nakia Griffin-Stewart          Nakia   Griffin-Stewart 1996-11-12
#> 1331                    Blake Bell          Blake              Bell 1991-08-07
#> 1332                    Mark Vital           Mark             Vital 1996-11-07
#> 1333             Demarcus Robinson       Demarcus          Robinson 1994-09-21
#> 1334                Cornell Powell        Cornell            Powell 1997-10-30
#> 1335                Mecole Hardman         Mecole           Hardman 1998-03-12
#> 1336              Daurice Fountain        Daurice          Fountain 1995-12-22
#> 1337                    Joe Forson            Joe            Forson 1995-12-07
#> 1338                 Gehrig Dieter         Gehrig            Dieter 1993-02-24
#> 1339                   Josh Gordon           Josh            Gordon 1991-04-13
#> 1340                 Byron Pringle          Byron           Pringle 1993-11-17
#> 1341                   Tyreek Hill         Tyreek              Hill 1994-03-01
#> 1342                   Marcus Kemp         Marcus              Kemp 1995-08-14
#> 1343                 Justin Watson         Justin            Watson 1995-04-04
#> 1344                    David Long          David              Long 1998-02-06
#> 1345                  Donte Deayon          Donte            Deayon 1994-01-28
#> 1346                  Jalen Ramsey          Jalen            Ramsey 1994-10-24
#> 1347              Darious Williams        Darious          Williams 1993-03-15
#> 1348                    Dayan Lake          Dayan              Lake 1997-08-01
#> 1349                Robert Rochell         Robert           Rochell 1998-04-26
#> 1350                   Jovan Grant          Jovan             Grant 1997-12-09
#> 1351                    Nick Scott           Nick             Scott 1995-05-17
#> 1352                 Jordan Fuller         Jordan            Fuller 1998-03-04
#> 1353               Sharrod Neasman        Sharrod           Neasman 1991-10-14
#> 1354                   Taylor Rapp         Taylor              Rapp 1997-12-22
#> 1355                   Grant Haley          Grant             Haley 1996-01-06
#> 1356                Antoine Brooks        Antoine            Brooks 1997-10-18
#> 1357                  Jake Gervase           Jake           Gervase 1995-09-18
#> 1358                    Tyler Hall          Tyler              Hall 1998-10-31
#> 1359                Blake Countess          Blake          Countess 1993-08-08
#> 1360               Terrell Burgess        Terrell           Burgess 1998-11-12
#> 1361                    Kareem Orr         Kareem               Orr 1997-01-02
#> 1362                Jonah Williams          Jonah          Williams 1995-08-17
#> 1363                 Earnest Brown        Earnest             Brown 1999-01-08
#> 1364                   Greg Gaines           Greg            Gaines 1996-05-06
#> 1365          Sebastian Joseph-Day      Sebastian        Joseph-Day 1995-03-21
#> 1366                  Aaron Donald          Aaron            Donald 1991-05-23
#> 1367              A'Shawn Robinson        A'Shawn          Robinson 1995-03-21
#> 1368                   Bobby Brown          Bobby             Brown 2000-08-07
#> 1369                Michael Hoecht        Michael            Hoecht 1997-10-05
#> 1370             Marquise Copeland       Marquise          Copeland 1997-05-09
#> 1371                   Eric Weddle           Eric            Weddle 1985-01-04
#> 1372               Anthony McMeans        Anthony           McMeans       <NA>
#> 1373                  Ryan Santoso           Ryan           Santoso 1995-08-26
#> 1374                      Matt Gay           Matt               Gay 1994-03-15
#> 1375                 Chris Garrett          Chris           Garrett 1998-07-15
#> 1376                   Troy Reeder           Troy            Reeder 1994-09-13
#> 1377                  Ernest Jones         Ernest             Jones 1999-11-22
#> 1378            Ogbonnia Okoronkwo       Ogbonnia         Okoronkwo 1995-04-24
#> 1379                 Leonard Floyd        Leonard             Floyd 1992-09-08
#> 1380                    Von Miller            Von            Miller 1989-03-26
#> 1381                Justin Hollins         Justin           Hollins 1996-01-15
#> 1382            Christian Rozeboom      Christian          Rozeboom 1997-01-30
#> 1383                 Anthony Hines        Anthony             Hines 1999-01-15
#> 1384                 Terrell Lewis        Terrell             Lewis 1998-08-25
#> 1385                 Travin Howard         Travin            Howard 1996-05-10
#> 1386                   Matt Orzech           Matt            Orzech 1995-04-12
#> 1387                 Carson Tinker         Carson            Tinker 1989-11-15
#> 1388                   Jamil Demby          Jamil             Demby 1996-06-20
#> 1389               Jeremiah Kolone       Jeremiah            Kolone 1994-10-23
#> 1390               Joseph Noteboom         Joseph          Noteboom 1995-06-19
#> 1391                Rob Havenstein            Rob        Havenstein 1992-05-13
#> 1392               Chandler Brewer       Chandler            Brewer 1997-06-12
#> 1393                 David Edwards          David           Edwards 1997-03-20
#> 1394                   Max Pircher            Max           Pircher 1999-09-07
#> 1395                Austin Corbett         Austin           Corbett 1995-09-05
#> 1396              Tremayne Anchrum       Tremayne           Anchrum 1998-06-24
#> 1397              Andrew Whitworth         Andrew         Whitworth 1981-12-12
#> 1398               Coleman Shelton        Coleman           Shelton 1995-07-28
#> 1399                   Bobby Evans          Bobby             Evans 1997-03-24
#> 1400                    AJ Jackson             AJ           Jackson 1998-07-14
#> 1401                   Brian Allen          Brian             Allen 1995-10-11
#> 1402                Brandon Wright        Brandon            Wright 1997-02-18
#> 1403                 Johnny Hekker         Johnny            Hekker 1990-02-08
#> 1404                  John Wolford           John           Wolford 1995-10-16
#> 1405              Matthew Stafford        Matthew          Stafford 1988-02-07
#> 1406                 Bryce Perkins          Bryce           Perkins 1996-12-20
#> 1407                   Sony Michel           Sony            Michel 1995-02-17
#> 1408                     Cam Akers            Cam             Akers 1999-06-22
#> 1409                  Buddy Howell          Buddy            Howell 1996-03-27
#> 1410                Raymond Calais        Raymond            Calais 1998-04-02
#> 1411             Darrell Henderson        Darrell         Henderson 1997-08-19
#> 1412                Javian Hawkins         Javian           Hawkins 1999-11-03
#> 1413                     Jake Funk           Jake              Funk 1998-01-11
#> 1414                Brycen Hopkins         Brycen           Hopkins 1997-03-27
#> 1415                  Jacob Harris          Jacob            Harris 1997-04-16
#> 1416                  Tyler Higbee          Tyler            Higbee 1993-01-01
#> 1417                  Kyle Markway           Kyle           Markway 1997-03-04
#> 1418               Kendall Blanton        Kendall           Blanton 1995-11-10
#> 1419                  Johnny Mundt         Johnny             Mundt 1994-11-23
#> 1420                  Robert Woods         Robert             Woods 1992-04-10
#> 1421                  Landen Akers         Landen             Akers 1997-07-07
#> 1422                 Ben Skowronek            Ben         Skowronek 1997-06-27
#> 1423                 Odell Beckham          Odell           Beckham 1992-11-05
#> 1424                Warren Jackson         Warren           Jackson 1999-06-16
#> 1425                 Van Jefferson            Van         Jefferson 1996-07-26
#> 1426                    J.J. Koski           J.J.             Koski 1996-12-27
#> 1427                   Cooper Kupp         Cooper              Kupp 1993-06-15
#> 1428                Brandon Powell        Brandon            Powell 1995-09-12
#> 1429                   Tutu Atwell           Tutu            Atwell 1999-10-07
#> 1430                 Corey Linsley          Corey           Linsley 1991-07-27
#> 1431                    Kemon Hall          Kemon              Hall 1997-06-02
#> 1432             Tevaughn Campbell       Tevaughn          Campbell 1993-06-14
#> 1433                 Asante Samuel         Asante            Samuel 1999-10-03
#> 1434                    Ryan Smith           Ryan             Smith 1993-09-07
#> 1435                 Michael Davis        Michael             Davis 1995-01-06
#> 1436               Davontae Harris       Davontae            Harris 1995-01-21
#> 1437                  Chris Harris          Chris            Harris 1989-06-18
#> 1438                Nasir Adderley          Nasir          Adderley 1997-05-31
#> 1439                    Ben DeLuca            Ben            DeLuca 1998-04-09
#> 1440                  Alohi Gilman          Alohi            Gilman 1997-09-17
#> 1441                     Mark Webb           Mark              Webb 1998-09-10
#> 1442                 Trey Marshall           Trey          Marshall 1996-02-13
#> 1443                  Derwin James         Derwin             James 1996-08-03
#> 1444                   Jamal Davis          Jamal             Davis 1995-07-09
#> 1445                   Joe Gaziano            Joe           Gaziano 1996-09-27
#> 1446                 Jerry Tillery          Jerry           Tillery 1996-10-08
#> 1447                 Linval Joseph         Linval            Joseph 1988-10-10
#> 1448           Christian Covington      Christian         Covington 1993-10-16
#> 1449               Forrest Merrill        Forrest           Merrill 1996-08-15
#> 1450                  Justin Jones         Justin             Jones 1996-08-28
#> 1451                   Caraun Reid         Caraun              Reid 1991-11-23
#> 1452                  Andrew Brown         Andrew             Brown 1995-12-30
#> 1453                   Gabe Nabers           Gabe            Nabers 1997-11-05
#> 1454                  Oday Aboushi           Oday           Aboushi 1991-06-05
#> 1455                   Matt Feiler           Matt            Feiler 1992-07-07
#> 1456                   Ryan Hunter           Ryan            Hunter 1995-04-01
#> 1457                Dustin Hopkins         Dustin           Hopkins 1990-10-01
#> 1458              Tristan Vizcaino        Tristan          Vizcaino 1996-07-31
#> 1459                Drue Tranquill           Drue         Tranquill 1995-08-15
#> 1460                   Chris Rumph          Chris             Rumph 1998-10-19
#> 1461                     Joey Bosa           Joey              Bosa 1995-07-11
#> 1462             Amen Ogbongbemiga           Amen      Ogbongbemiga 1998-09-04
#> 1463                   Kyzir White          Kyzir             White 1996-03-24
#> 1464                Kenneth Murray        Kenneth            Murray 1998-11-16
#> 1465                   Damon Lloyd          Damon             Lloyd 1998-05-08
#> 1466                 Uchenna Nwosu        Uchenna             Nwosu 1996-12-28
#> 1467             Cole Christiansen           Cole      Christiansen 1997-07-30
#> 1468                  Emeke Egbule          Emeke            Egbule 1996-10-13
#> 1469                  Nick Niemann           Nick           Niemann 1997-12-02
#> 1470                Kyler Fackrell          Kyler          Fackrell 1991-11-25
#> 1471                  Matt Overton           Matt           Overton 1985-07-06
#> 1472                Breiden Fehoko        Breiden            Fehoko 1996-10-15
#> 1473            Scott Quessenberry          Scott      Quessenberry 1995-03-23
#> 1474                Senio Kelemete          Senio          Kelemete 1990-05-10
#> 1475                Brenden Jaimes        Brenden            Jaimes 1999-05-28
#> 1476                       Ty Long             Ty              Long 1993-04-06
#> 1477                  Chase Daniel          Chase            Daniel 1986-10-07
#> 1478                  Easton Stick         Easton             Stick 1995-09-15
#> 1479                Justin Herbert         Justin           Herbert 1998-03-10
#> 1480                 Joshua Kelley         Joshua            Kelley 1997-11-20
#> 1481                 Austin Ekeler         Austin            Ekeler 1995-05-17
#> 1482                Larry Rountree          Larry          Rountree 1999-02-13
#> 1483                Justin Jackson         Justin           Jackson 1996-04-22
#> 1484                Rashawn Slater        Rashawn            Slater 1999-03-26
#> 1485                 Foster Sarell         Foster            Sarell 1998-08-28
#> 1486                  Trey Pipkins           Trey           Pipkins 1996-09-05
#> 1487                  Storm Norton          Storm            Norton 1994-05-16
#> 1488                  Bryan Bulaga          Bryan            Bulaga 1989-03-21
#> 1489             Michael Schofield        Michael         Schofield 1990-11-15
#> 1490              Hunter Kampmoyer         Hunter         Kampmoyer 1998-02-06
#> 1491                  Tre' McKitty           Tre'           McKitty 1999-01-12
#> 1492                 Donald Parham         Donald            Parham 1997-08-16
#> 1493                    Jared Cook          Jared              Cook 1987-04-07
#> 1494              Stephen Anderson        Stephen          Anderson 1993-01-30
#> 1495               Maurice Ffrench        Maurice           Ffrench 1998-01-01
#> 1496                   Jason Moore          Jason             Moore 1995-06-23
#> 1497                  Keenan Allen         Keenan             Allen 1992-04-27
#> 1498                       KJ Hill             KJ              Hill 1997-09-15
#> 1499                 Joshua Palmer         Joshua            Palmer 1999-09-22
#> 1500                 Michael Bandy        Michael             Bandy 1997-12-05
#> 1501                      Joe Reed            Joe              Reed 1998-01-04
#> 1502                  Jalen Guyton          Jalen            Guyton 1997-06-07
#> 1503                 Mike Williams           Mike          Williams 1994-10-04
#> 1504                 Andre Roberts          Andre           Roberts 1988-01-09
#> 1505                   Andre James          Andre             James 1997-05-02
#> 1506                   Nick Martin           Nick            Martin 1993-04-29
#> 1507                  Brett Heggie          Brett            Heggie       <NA>
#> 1508                 Keisean Nixon        Keisean             Nixon 1997-06-22
#> 1509                    Nate Hobbs           Nate             Hobbs 1999-06-24
#> 1510               Brandon Facyson        Brandon           Facyson 1994-09-08
#> 1511                Amik Robertson           Amik         Robertson 1998-07-06
#> 1512                Trayvon Mullen        Trayvon            Mullen 1997-09-20
#> 1513                 Casey Hayward          Casey           Hayward 1989-09-09
#> 1514               Desmond Trufant        Desmond           Trufant 1990-09-10
#> 1515                Shaun Crawford          Shaun          Crawford       <NA>
#> 1516                Roderic Teamer        Roderic            Teamer 1997-05-12
#> 1517                 Kavon Frazier          Kavon           Frazier 1994-08-11
#> 1518               Tre'von Moehrig        Tre'von           Moehrig 1999-06-16
#> 1519               Tyree Gillespie          Tyree         Gillespie 1998-09-05
#> 1520                    Tony Brown           Tony             Brown 1995-07-13
#> 1521                Dallin Leavitt         Dallin           Leavitt 1994-08-08
#> 1522                  Jordan Brown         Jordan             Brown 1996-03-26
#> 1523               Johnathan Abram      Johnathan             Abram 1996-10-25
#> 1524               Cre'von LeBlanc        Cre'von           LeBlanc 1994-07-25
#> 1525              Natrell Jamerson        Natrell          Jamerson 1995-12-15
#> 1526                   Carl Nassib           Carl            Nassib 1993-04-12
#> 1527                  Isaiah Buggs         Isaiah             Buggs 1996-08-24
#> 1528                Clelin Ferrell         Clelin           Ferrell 1997-05-17
#> 1529                Malcolm Koonce        Malcolm            Koonce 1998-06-06
#> 1530               Yannick Ngakoue        Yannick           Ngakoue 1995-03-31
#> 1531                Kendal Vickers         Kendal           Vickers 1995-05-23
#> 1532                   Maxx Crosby           Maxx            Crosby 1997-08-22
#> 1533                   Gerri Green          Gerri             Green 1995-09-14
#> 1534             Quinton Jefferson        Quinton         Jefferson 1993-03-31
#> 1535                 Darius Philon         Darius            Philon 1994-01-22
#> 1536             Johnathan Hankins      Johnathan           Hankins 1992-03-30
#> 1537                Solomon Thomas        Solomon            Thomas 1995-12-20
#> 1538                  P.J. Johnson           P.J.           Johnson 1996-06-14
#> 1539                  Gerald McCoy         Gerald             McCoy 1988-02-25
#> 1540                  Sutton Smith         Sutton             Smith 1996-03-22
#> 1541                   Alec Ingold           Alec            Ingold 1996-07-09
#> 1542                 Denzelle Good       Denzelle              Good 1991-03-08
#> 1543                   Jordan Wade         Jordan              Wade       <NA>
#> 1544              Richie Incognito         Richie         Incognito 1983-07-05
#> 1545                 Lester Cotton         Lester            Cotton 1996-02-20
#> 1546                Jordan Simmons         Jordan           Simmons 1994-07-15
#> 1547                  John Simpson           John           Simpson 1997-08-19
#> 1548                Daniel Carlson         Daniel           Carlson 1995-01-23
#> 1549          Justin March-Lillard         Justin     March-Lillard 1993-07-05
#> 1550               Nicholas Morrow       Nicholas            Morrow 1995-07-10
#> 1551              Patrick Onwuasor        Patrick          Onwuasor 1992-08-22
#> 1552               Nick Kwiatkoski           Nick        Kwiatkoski 1993-05-26
#> 1553                Cory Littleton           Cory         Littleton 1993-11-18
#> 1554                   Kyle Wilber           Kyle            Wilber 1989-04-26
#> 1555               Denzel Perryman         Denzel          Perryman 1992-12-05
#> 1556                 Divine Deablo         Divine            Deablo 1998-08-17
#> 1557                   Marquel Lee        Marquel               Lee 1995-10-21
#> 1558                   K.J. Wright           K.J.            Wright 1989-07-23
#> 1559                    Trent Sieg          Trent              Sieg 1995-05-19
#> 1560                 William Sweet        William             Sweet 1997-04-29
#> 1561              Jeremiah Poutasi       Jeremiah           Poutasi 1994-08-07
#> 1562               Jordan Meredith         Jordan          Meredith 1998-01-04
#> 1563            Jermaine Eluemunor       Jermaine         Eluemunor 1994-12-13
#> 1564                 Hroniss Grasu        Hroniss             Grasu 1991-08-12
#> 1565                Kamaal Seymour         Kamaal           Seymour 1996-04-27
#> 1566                       AJ Cole             AJ              Cole 1995-11-27
#> 1567                    Derek Carr          Derek              Carr 1991-03-28
#> 1568               Nathan Peterman         Nathan          Peterman 1994-05-04
#> 1569                Marcus Mariota         Marcus           Mariota 1993-10-30
#> 1570                   Josh Jacobs           Josh            Jacobs 1998-02-11
#> 1571                  Kenyan Drake         Kenyan             Drake 1994-01-26
#> 1572                 Jalen Richard          Jalen           Richard 1993-10-15
#> 1573                    Trey Ragas           Trey             Ragas 1996-11-07
#> 1574                 Peyton Barber         Peyton            Barber 1994-06-27
#> 1575                Brandon Parker        Brandon            Parker 1995-10-21
#> 1576                Jackson Barton        Jackson            Barton 1995-08-08
#> 1577              Alex Leatherwood           Alex       Leatherwood 1999-01-05
#> 1578                 Kolton Miller         Kolton            Miller 1995-09-02
#> 1579                   Nick Bowers           Nick            Bowers 1996-05-26
#> 1580                 Darren Waller         Darren            Waller 1992-09-13
#> 1581                 Derek Carrier          Derek           Carrier 1990-07-25
#> 1582                 Foster Moreau         Foster            Moreau 1997-05-06
#> 1583                 Tyron Johnson          Tyron           Johnson 1996-01-08
#> 1584                    Javon Wims          Javon              Wims 1994-09-11
#> 1585                     DJ Turner             DJ            Turner 1997-01-18
#> 1586                     Zay Jones            Zay             Jones 1995-03-30
#> 1587                Hunter Renfrow         Hunter           Renfrow 1995-12-21
#> 1588                DeSean Jackson         DeSean           Jackson 1986-12-01
#> 1589                 Bryan Edwards          Bryan           Edwards 1998-11-13
#> 1590                 Dillon Stoner         Dillon            Stoner 1998-02-06
#> 1591                Spencer Pulley        Spencer            Pulley 1993-04-04
#> 1592                   Cameron Tom        Cameron               Tom 1995-06-21
#> 1593                   Jamal Perry          Jamal             Perry 1994-10-23
#> 1594                Trill Williams          Trill          Williams 1999-12-29
#> 1595                   Byron Jones          Byron             Jones 1992-09-26
#> 1596                 Javaris Davis        Javaris             Davis 1996-12-26
#> 1597              Noah Igbinoghene           Noah       Igbinoghene 1999-11-27
#> 1598                 Damon Arnette          Damon           Arnette 1996-09-02
#> 1599                   Nik Needham            Nik           Needham 1996-11-04
#> 1600                 Quincy Wilson         Quincy            Wilson 1996-08-16
#> 1601                 Xavien Howard         Xavien            Howard 1993-07-04
#> 1602                Justin Coleman         Justin           Coleman 1993-03-27
#> 1603                 Jevon Holland          Jevon           Holland 2000-03-03
#> 1604                 Brandon Jones        Brandon             Jones 1998-04-02
#> 1605                 D'Angelo Ross       D'Angelo              Ross 1996-10-29
#> 1606             Clayton Fejedelem        Clayton         Fejedelem 1993-06-02
#> 1607                     Eric Rowe           Eric              Rowe 1992-10-03
#> 1608                Jason McCourty          Jason          McCourty 1987-08-13
#> 1609                  Chris Milton          Chris            Milton 1992-09-15
#> 1610               Elijah Campbell         Elijah          Campbell 1995-08-24
#> 1611             Sheldrick Redwine      Sheldrick           Redwine 1996-11-06
#> 1612                  Darius Hodge         Darius             Hodge 1998-07-03
#> 1613                Emmanuel Ogbah       Emmanuel             Ogbah 1993-11-06
#> 1614                  Daeshon Hall        Daeshon              Hall 1995-06-14
#> 1615                   Zach Sieler           Zach            Sieler 1995-09-07
#> 1616                  Benito Jones         Benito             Jones 1997-11-27
#> 1617                  John Jenkins           John           Jenkins 1989-07-11
#> 1618             Christian Wilkins      Christian           Wilkins 1995-12-20
#> 1619                   Adam Butler           Adam            Butler 1994-04-12
#> 1620                 Raekwon Davis        Raekwon             Davis 1997-08-21
#> 1621           Durval Queiroz Neto         Durval      Queiroz Neto 1992-08-27
#> 1622                  Robert Jones         Robert             Jones 1999-01-28
#> 1623               Solomon Kindley        Solomon           Kindley 1997-07-03
#> 1624                 Jason Sanders          Jason           Sanders 1995-11-16
#> 1625             Andrew Van Ginkel         Andrew        Van Ginkel 1995-07-01
#> 1626                  Vince Biegel          Vince            Biegel 1993-07-02
#> 1627                    Duke Riley           Duke             Riley 1994-08-09
#> 1628                Wynton McManis         Wynton           McManis 1994-09-20
#> 1629                 Calvin Munson         Calvin            Munson 1994-12-27
#> 1630                  Sam Eguavoen            Sam          Eguavoen 1993-02-22
#> 1631                  Jerome Baker         Jerome             Baker 1996-12-25
#> 1632               Elandon Roberts        Elandon           Roberts 1994-04-22
#> 1633               Jaelan Phillips         Jaelan          Phillips 1999-05-28
#> 1634              Brennan Scarlett        Brennan          Scarlett 1993-07-31
#> 1635                Blake Ferguson          Blake          Ferguson 1997-04-21
#> 1636                   Robert Hunt         Robert              Hunt 1996-08-25
#> 1637                    Greg Mancz           Greg             Mancz 1992-04-23
#> 1638                   Jesse Davis          Jesse             Davis 1991-09-15
#> 1639                Michael Deiter        Michael            Deiter 1996-09-03
#> 1640               Michael Palardy        Michael           Palardy 1992-07-06
#> 1641               Jacoby Brissett         Jacoby          Brissett 1992-12-11
#> 1642                   John Lovett           John            Lovett 1996-04-25
#> 1643                Tua Tagovailoa            Tua        Tagovailoa 1998-03-02
#> 1644               Chris Streveler          Chris         Streveler 1995-01-06
#> 1645                 Patrick Laird        Patrick             Laird 1995-08-17
#> 1646                  Salvon Ahmed         Salvon             Ahmed 1998-12-30
#> 1647                  Myles Gaskin          Myles            Gaskin 1997-02-15
#> 1648               Phillip Lindsay        Phillip           Lindsay 1994-07-24
#> 1649                  Gerrid Doaks         Gerrid             Doaks 1998-06-09
#> 1650               Jordan Scarlett         Jordan          Scarlett 1996-02-09
#> 1651                 Malcolm Brown        Malcolm             Brown 1993-05-15
#> 1652                  Duke Johnson           Duke           Johnson 1993-09-23
#> 1653                   Greg Little           Greg            Little 1997-11-04
#> 1654                    Kion Smith           Kion             Smith 1998-10-07
#> 1655                   Adam Pankey           Adam            Pankey 1994-02-02
#> 1656                Larnel Coleman         Larnel           Coleman 1998-06-22
#> 1657                Austin Jackson         Austin           Jackson 1999-08-11
#> 1658               Liam Eichenberg           Liam        Eichenberg 1998-01-19
#> 1659                 Cethan Carter         Cethan            Carter 1995-09-05
#> 1660                 Kalif Jackson          Kalif           Jackson       <NA>
#> 1661                  Sal Cannella            Sal          Cannella       <NA>
#> 1662                 Durham Smythe         Durham            Smythe 1995-08-09
#> 1663                  Adam Shaheen           Adam           Shaheen 1994-10-24
#> 1664                  Mike Gesicki           Mike           Gesicki 1995-10-03
#> 1665                   Hunter Long         Hunter              Long 1998-08-19
#> 1666                 Albert Wilson         Albert            Wilson 1992-07-12
#> 1667                 Jaylen Waddle         Jaylen            Waddle 1998-11-25
#> 1668                  Mack Hollins           Mack           Hollins 1993-09-16
#> 1669                DeVante Parker        DeVante            Parker 1993-01-20
#> 1670                   Allen Hurns          Allen             Hurns 1991-11-12
#> 1671                Tommylee Lewis       Tommylee             Lewis 1992-10-24
#> 1672                DeVonte Dedmon        DeVonte            Dedmon 1995-11-23
#> 1673                   Lynn Bowden           Lynn            Bowden 1997-10-14
#> 1674                River Cracraft          River          Cracraft 1994-11-01
#> 1675                     Cody Core           Cody              Core 1994-04-17
#> 1676                William Fuller        William            Fuller 1994-04-16
#> 1677                   Isaiah Ford         Isaiah              Ford 1996-02-09
#> 1678              Preston Williams        Preston          Williams 1997-03-27
#> 1679              Garrett Bradbury        Garrett          Bradbury 1995-06-20
#> 1680              Cameron Dantzler        Cameron          Dantzler 1998-09-03
#> 1681               Parry Nickerson          Parry         Nickerson 1994-10-11
#> 1682               Amari Henderson          Amari         Henderson 1997-09-08
#> 1683                   Bryan Mills          Bryan             Mills 1999-08-03
#> 1684                 Harrison Hand       Harrison              Hand 1998-11-12
#> 1685           Mackensie Alexander      Mackensie         Alexander 1993-11-12
#> 1686                     Tye Smith            Tye             Smith 1993-05-03
#> 1687              Patrick Peterson        Patrick          Peterson 1990-07-11
#> 1688                     Kris Boyd           Kris              Boyd 1996-09-12
#> 1689                  Camryn Bynum         Camryn             Bynum 1998-07-19
#> 1690                  Xavier Woods         Xavier             Woods 1995-07-26
#> 1691                    Myles Dorn          Myles              Dorn 1998-06-25
#> 1692                 Josh Metellus           Josh          Metellus 1998-01-21
#> 1693                Harrison Smith       Harrison             Smith 1989-02-02
#> 1694               Danielle Hunter       Danielle            Hunter 1994-10-29
#> 1695             Janarius Robinson       Janarius          Robinson 1999-05-05
#> 1696                 Patrick Jones        Patrick             Jones 1998-09-29
#> 1697                 Patrick Jones        Patrick             Jones 1998-09-29
#> 1698               Eddie Yarbrough          Eddie         Yarbrough 1993-04-24
#> 1699                Kenny Willekes          Kenny          Willekes 1997-07-22
#> 1700                   D.J. Wonnum           D.J.            Wonnum 1997-10-31
#> 1701               Everson Griffen        Everson           Griffen 1987-12-22
#> 1702                 Tashawn Bower        Tashawn             Bower 1995-02-18
#> 1703                   James Lynch          James             Lynch 1999-01-20
#> 1704                 Jaylen Twyman         Jaylen            Twyman 1999-07-19
#> 1705              Dalvin Tomlinson         Dalvin         Tomlinson 1994-02-28
#> 1706            Sheldon Richardson        Sheldon        Richardson 1990-11-29
#> 1707                    T.J. Smith           T.J.             Smith 1997-04-19
#> 1708                Michael Pierce        Michael            Pierce 1992-11-06
#> 1709                  Jordon Scott         Jordon             Scott 1998-12-25
#> 1710                   T.Y. McGill           T.Y.            McGill 1992-11-23
#> 1711                   Armon Watts          Armon             Watts 1996-07-22
#> 1712                   Jake Bargas           Jake            Bargas 1996-11-28
#> 1713                      C.J. Ham           C.J.               Ham 1993-07-22
#> 1714                   Wyatt Davis          Wyatt             Davis 1999-02-17
#> 1715               Olisaemeka Udoh     Olisaemeka              Udoh 1997-02-14
#> 1716                  Cole Banwart           Cole           Banwart 1997-08-21
#> 1717                 Dakota Dozier         Dakota            Dozier 1991-04-30
#> 1718                Ezra Cleveland           Ezra         Cleveland 1998-05-08
#> 1719                   Kyle Hinton           Kyle            Hinton 1998-02-27
#> 1720                   Greg Joseph           Greg            Joseph 1994-08-04
#> 1721                 Chazz Surratt          Chazz           Surratt 1997-02-16
#> 1722                Eric Kendricks           Eric         Kendricks 1992-02-29
#> 1723                   Tuf Borland            Tuf           Borland 1998-03-23
#> 1724                   Blake Lynch          Blake             Lynch 1997-02-14
#> 1725                    Nick Vigil           Nick             Vigil 1993-08-20
#> 1726                 Ryan Connelly           Ryan          Connelly 1995-10-03
#> 1727                  Anthony Barr        Anthony              Barr 1992-03-18
#> 1728                      Troy Dye           Troy               Dye 1996-09-18
#> 1729                Andrew DePaola         Andrew           DePaola 1987-07-28
#> 1730                    Mason Cole          Mason              Cole 1996-03-28
#> 1731                  Jordan Berry         Jordan             Berry 1991-03-18
#> 1732                  Kirk Cousins           Kirk           Cousins 1988-08-19
#> 1733                  Sean Mannion           Sean           Mannion 1992-04-25
#> 1734                   Kellen Mond         Kellen              Mond 1999-06-22
#> 1735                     A.J. Rose           A.J.              Rose 1997-10-14
#> 1736                 Wayne Gallman          Wayne           Gallman 1994-10-01
#> 1737                   Dalvin Cook         Dalvin              Cook 1995-08-10
#> 1738            Alexander Mattison      Alexander          Mattison 1998-06-19
#> 1739                  Kene Nwangwu           Kene           Nwangwu 1998-02-09
#> 1740                   Rashod Hill         Rashod              Hill 1992-01-12
#> 1741                 Brian O'Neill          Brian           O'Neill 1995-09-15
#> 1742            Christian Darrisaw      Christian          Darrisaw 1999-06-02
#> 1743                  Timon Parris          Timon            Parris 1995-09-11
#> 1744                 Blake Brandel          Blake           Brandel 1997-01-23
#> 1745                  Luke Stocker           Luke           Stocker 1988-07-17
#> 1746                 Chris Herndon          Chris           Herndon 1996-02-23
#> 1747                     Irv Smith            Irv             Smith 1998-08-09
#> 1748                  Ben Ellefson            Ben          Ellefson 1996-09-01
#> 1749                 Tyler Conklin          Tyler           Conklin 1995-07-30
#> 1750                 Zach Davidson           Zach          Davidson 1998-07-15
#> 1751          Ihmir Smith-Marsette          Ihmir    Smith-Marsette 1999-08-29
#> 1752                   K.J. Osborn           K.J.            Osborn 1997-06-10
#> 1753                  Adam Thielen           Adam           Thielen 1990-08-22
#> 1754                Myron Mitchell          Myron          Mitchell 1998-06-17
#> 1755              Trishton Jackson       Trishton           Jackson 1998-03-09
#> 1756                  Bisi Johnson           Bisi           Johnson 1997-03-17
#> 1757                Dede Westbrook           Dede         Westbrook 1993-11-21
#> 1758                   Dan Chisena            Dan           Chisena 1997-02-25
#> 1759              Justin Jefferson         Justin         Jefferson 1999-06-16
#> 1760                 David Andrews          David           Andrews 1992-07-10
#> 1761               De'Vante Bausby       De'Vante            Bausby 1993-01-15
#> 1762              Joejuan Williams        Joejuan          Williams 1997-12-06
#> 1763                   Jalen Mills          Jalen             Mills 1994-04-06
#> 1764                    Shaun Wade          Shaun              Wade 1998-09-15
#> 1765                     DJ Daniel             DJ            Daniel 1998-11-27
#> 1766                 Justin Bethel         Justin            Bethel 1990-06-17
#> 1767                   Kyle Dugger           Kyle            Dugger 1996-03-22
#> 1768                  Myles Bryant          Myles            Bryant 1998-01-02
#> 1769                    Cody Davis           Cody             Davis 1989-06-06
#> 1770                Jonathan Jones       Jonathan             Jones 1993-09-20
#> 1771                Devin McCourty          Devin          McCourty 1987-08-13
#> 1772               Adrian Phillips         Adrian          Phillips 1992-03-28
#> 1773               Joshuah Bledsoe        Joshuah           Bledsoe 1998-12-30
#> 1774                  J.C. Jackson           J.C.           Jackson 1995-11-17
#> 1775                    Sean Davis           Sean             Davis 1993-10-23
#> 1776                 Deatrich Wise       Deatrich              Wise 1994-07-26
#> 1777                Chase Winovich          Chase          Winovich 1995-04-19
#> 1778                Henry Anderson          Henry          Anderson 1991-08-03
#> 1779                 Daniel Ekuale         Daniel            Ekuale 1994-01-13
#> 1780             Christian Barmore      Christian           Barmore 1999-07-28
#> 1781                    Carl Davis           Carl             Davis 1992-03-02
#> 1782                   Bill Murray           Bill            Murray 1997-07-03
#> 1783                  Lawrence Guy       Lawrence               Guy 1990-03-17
#> 1784                Davon Godchaux          Davon          Godchaux 1994-11-11
#> 1785                  Byron Cowart          Byron            Cowart 1996-05-20
#> 1786                 Jakob Johnson          Jakob           Johnson 1994-12-15
#> 1787                  Yasir Durant          Yasir            Durant 1998-05-21
#> 1788                     Nick Folk           Nick              Folk 1984-11-05
#> 1789                  Quinn Nordin          Quinn            Nordin 1998-08-16
#> 1790                    Terez Hall          Terez              Hall 1996-11-18
#> 1791                LaRoy Reynolds          LaRoy          Reynolds 1990-11-03
#> 1792             Anfernee Jennings       Anfernee          Jennings 1997-09-01
#> 1793                  Brandon King        Brandon              King 1993-06-08
#> 1794                     Josh Uche           Josh              Uche 1998-09-18
#> 1795                  Kyle Van Noy           Kyle           Van Noy 1991-03-26
#> 1796               Cameron McGrone        Cameron           McGrone 2000-06-22
#> 1797                 Jahlani Tavai        Jahlani             Tavai 1996-09-28
#> 1798              Raekwon McMillan        Raekwon          McMillan 1996-11-17
#> 1799                 Jamie Collins          Jamie           Collins 1989-10-20
#> 1800                  Harvey Langi         Harvey             Langi 1992-09-24
#> 1801              Ja'Whaun Bentley       Ja'Whaun           Bentley 1996-08-24
#> 1802              Dont'a Hightower         Dont'a         Hightower 1990-03-12
#> 1803                Ronnie Perkins         Ronnie           Perkins 1999-09-29
#> 1804                    Matt Judon           Matt             Judon 1992-08-15
#> 1805                   Joe Cardona            Joe           Cardona 1992-04-16
#> 1806                  Alex Redmond           Alex           Redmond 1995-01-18
#> 1807                 Justin Herron         Justin            Herron 1995-11-27
#> 1808                 James Ferentz          James           Ferentz 1989-06-05
#> 1809               Shaquille Mason      Shaquille             Mason 1993-08-28
#> 1810                 Yodny Cajuste          Yodny           Cajuste 1996-02-21
#> 1811                Michael Onwenu        Michael            Onwenu 1997-12-10
#> 1812                 Trenton Brown        Trenton             Brown 1993-04-13
#> 1813               Drew Desjarlais           Drew        Desjarlais 1997-04-24
#> 1814                    Ted Karras            Ted            Karras 1993-03-15
#> 1815           Arlington Hambright      Arlington         Hambright 1996-01-30
#> 1816                   Isaiah Wynn         Isaiah              Wynn 1995-12-09
#> 1817                   Jake Bailey           Jake            Bailey 1997-06-18
#> 1818                   Brian Hoyer          Brian             Hoyer 1985-10-13
#> 1819                     Mac Jones            Mac             Jones 1998-09-05
#> 1820               Jarrett Stidham        Jarrett           Stidham 1996-08-08
#> 1821                 Devine Ozigbo         Devine            Ozigbo 1996-10-02
#> 1822                   James White          James             White 1992-02-03
#> 1823                 Damien Harris         Damien            Harris 1997-02-11
#> 1824           Rhamondre Stevenson      Rhamondre         Stevenson 1998-02-23
#> 1825                Brandon Bolden        Brandon            Bolden 1990-01-26
#> 1826                   J.J. Taylor           J.J.            Taylor 1998-01-04
#> 1827                  Will Sherman           Will           Sherman 1999-05-27
#> 1828                  Hunter Henry         Hunter             Henry 1994-12-07
#> 1829                Troy Fumagalli           Troy         Fumagalli 1995-02-17
#> 1830                  Dalton Keene         Dalton             Keene 1999-04-14
#> 1831                   Jonnu Smith          Jonnu             Smith 1995-08-22
#> 1832                  Matt LaCosse           Matt           LaCosse 1992-09-21
#> 1833                  Devin Asiasi          Devin            Asiasi 1997-08-14
#> 1834               Kendrick Bourne       Kendrick            Bourne 1995-08-04
#> 1835                     Tre Nixon            Tre             Nixon 1998-01-26
#> 1836                 Malcolm Perry        Malcolm             Perry 1997-04-19
#> 1837                 Jakobi Meyers         Jakobi            Meyers 1996-11-09
#> 1838              Gunner Olszewski         Gunner         Olszewski 1996-11-26
#> 1839            Kristian Wilkerson       Kristian         Wilkerson 1997-01-10
#> 1840                Nelson Agholor         Nelson           Agholor 1993-05-24
#> 1841                   Matt Slater           Matt            Slater 1985-09-09
#> 1842                  Jaylen Smith         Jaylen             Smith 1997-08-01
#> 1843                  N'Keal Harry         N'Keal             Harry 1997-12-17
#> 1844                    Will Clapp           Will             Clapp 1995-12-10
#> 1845                   Cohl Cabral           Cohl            Cabral 1998-02-11
#> 1846                 P.J. Williams           P.J.          Williams 1993-06-01
#> 1847                 Paulson Adebo        Paulson             Adebo 1999-07-03
#> 1848                Lawrence Woods       Lawrence             Woods       <NA>
#> 1849                   Dylan Mabin          Dylan             Mabin 1997-09-14
#> 1850                Bryce Thompson          Bryce          Thompson 1999-09-20
#> 1851                  Bradley Roby        Bradley              Roby 1992-05-01
#> 1852             Marshon Lattimore        Marshon         Lattimore 1996-05-19
#> 1853                   Ken Crawley            Ken           Crawley 1993-02-08
#> 1854                     J.T. Gray           J.T.              Gray 1996-01-18
#> 1855                    Jeff Heath           Jeff             Heath 1991-05-14
#> 1856                 Jordan Miller         Jordan            Miller 1997-02-08
#> 1857               Marcus Williams         Marcus          Williams 1996-09-08
#> 1858              KeiVarae Russell       KeiVarae           Russell 1993-10-19
#> 1859          C.J. Gardner-Johnson           C.J.   Gardner-Johnson 1997-12-20
#> 1860              Adonis Alexander         Adonis         Alexander 1996-11-07
#> 1861                 Payton Turner         Payton            Turner 1999-01-07
#> 1862                Cameron Jordan        Cameron            Jordan 1989-07-10
#> 1863              Marcus Davenport         Marcus         Davenport 1996-09-04
#> 1864               Carl Granderson           Carl        Granderson 1996-12-18
#> 1865                  Jalyn Holmes          Jalyn            Holmes 1996-01-25
#> 1866              Tanoh Kpassagnon          Tanoh        Kpassagnon 1994-06-14
#> 1867                 Malcolm Roach        Malcolm             Roach 1998-06-09
#> 1868                    Shy Tuttle            Shy            Tuttle 1995-10-20
#> 1869                Braxton Hoyett        Braxton            Hoyett 1996-02-05
#> 1870                  Jalen Dalton          Jalen            Dalton 1997-08-04
#> 1871                Albert Huggins         Albert           Huggins 1997-06-27
#> 1872              Ethan Westbrooks          Ethan        Westbrooks 1990-11-15
#> 1873                David Onyemata          David          Onyemata 1992-11-13
#> 1874               Christian Ringo      Christian             Ringo 1992-03-10
#> 1875                 Adam Prentice           Adam          Prentice 1997-01-16
#> 1876                      Wil Lutz            Wil              Lutz 1994-07-07
#> 1877                   Brett Maher          Brett             Maher 1989-11-21
#> 1878                  Chase Hansen          Chase            Hansen 1993-05-20
#> 1879                 Demario Davis        Demario             Davis 1989-01-11
#> 1880                     Zack Baun           Zack              Baun 1996-12-30
#> 1881                   Pete Werner           Pete            Werner 1999-06-05
#> 1882                  Kaden Elliss          Kaden            Elliss 1995-07-10
#> 1883                Kwon Alexander           Kwon         Alexander 1994-08-03
#> 1884                 Andrew Dowell         Andrew            Dowell 1996-11-16
#> 1885                Quentin Poling        Quentin            Poling 1994-08-17
#> 1886                  Sharif Finch         Sharif             Finch 1995-10-01
#> 1887                     Zach Wood           Zach              Wood 1993-01-10
#> 1888               Ethan Greenidge          Ethan         Greenidge 1997-09-10
#> 1889           Calvin Throckmorton         Calvin      Throckmorton 1996-08-16
#> 1890                    Mike Brown           Mike             Brown       <NA>
#> 1891                   Andrus Peat         Andrus              Peat 1993-11-04
#> 1892                    Cesar Ruiz          Cesar              Ruiz 1999-06-14
#> 1893                   James Hurst          James             Hurst 1991-12-17
#> 1894                    Erik McCoy           Erik             McCoy 1997-08-27
#> 1895                  Forrest Lamp        Forrest              Lamp 1994-02-21
#> 1896                Caleb Benenoch          Caleb          Benenoch 1994-08-08
#> 1897                Jerald Hawkins         Jerald           Hawkins 1993-10-16
#> 1898                   Kyle Murphy           Kyle            Murphy 1993-12-11
#> 1899                Blake Gillikin          Blake          Gillikin 1998-01-21
#> 1900                Jameis Winston         Jameis           Winston 1994-01-06
#> 1901                 Blake Bortles          Blake           Bortles 1992-04-28
#> 1902                      Ian Book            Ian              Book 1998-03-30
#> 1903                   Taysom Hill         Taysom              Hill 1990-08-23
#> 1904                Trevor Siemian         Trevor           Siemian 1991-12-26
#> 1905                   Mark Ingram           Mark            Ingram 1989-12-21
#> 1906                    Tony Jones           Tony             Jones 1997-11-24
#> 1907                  Alvin Kamara          Alvin            Kamara 1995-07-25
#> 1908             Dwayne Washington         Dwayne        Washington 1994-04-24
#> 1909                    Josh Adams           Josh             Adams 1996-10-29
#> 1910               Malcolm Jenkins        Malcolm           Jenkins 1987-12-20
#> 1911                  Jordan Mills         Jordan             Mills 1990-12-24
#> 1912               James Carpenter          James         Carpenter 1989-03-22
#> 1913                  Landon Young         Landon             Young 1997-08-21
#> 1914                  Ryan Ramczyk           Ryan           Ramczyk 1994-04-22
#> 1915               Terron Armstead         Terron          Armstead 1991-07-23
#> 1916                 Adam Trautman           Adam          Trautman 1997-02-05
#> 1917                  Nick Vannett           Nick           Vannett 1993-03-06
#> 1918                 Dylan Soehner          Dylan           Soehner 1997-11-08
#> 1919                 Juwan Johnson          Juwan           Johnson 1996-09-13
#> 1920                    Ethan Wolf          Ethan              Wolf 1995-11-07
#> 1921               Garrett Griffin        Garrett           Griffin 1994-03-04
#> 1922                Michael Thomas        Michael            Thomas 1993-03-03
#> 1923                  Kirk Merritt           Kirk           Merritt 1997-01-05
#> 1924                 Easop Winston          Easop           Winston 1996-12-17
#> 1925                 Ty Montgomery             Ty        Montgomery 1993-01-22
#> 1926                Tre'Quan Smith       Tre'Quan             Smith 1996-01-07
#> 1927               Jalen McCleskey          Jalen         McCleskey 1997-08-06
#> 1928                 Deonte Harris         Deonte            Harris 1997-12-04
#> 1929           Eldridge Massington       Eldridge        Massington 1995-01-26
#> 1930                   Kevin White          Kevin             White 1992-06-25
#> 1931           Lil'Jordan Humphrey     Lil'Jordan          Humphrey 1998-04-19
#> 1932                  Kenny Stills          Kenny            Stills 1992-04-22
#> 1933              Marquez Callaway        Marquez          Callaway 1998-03-27
#> 1934                  Kawaan Baker         Kawaan             Baker 1998-08-24
#> 1935              Derrick Kelly II        Derrick          Kelly II 1995-08-23
#> 1936                    Nick Gates           Nick             Gates 1995-11-27
#> 1937                    Matt Skura           Matt             Skura 1993-02-17
#> 1938              Brandon Williams        Brandon          Williams 1992-09-09
#> 1939             Rodarius Williams       Rodarius          Williams 1996-09-12
#> 1940               Jarren Williams         Jarren          Williams 1997-07-18
#> 1941                Aaron Robinson          Aaron          Robinson 1998-11-10
#> 1942                 Darnay Holmes         Darnay            Holmes 1998-06-23
#> 1943               James Bradberry          James         Bradberry 1993-08-04
#> 1944                Dwayne Johnson         Dwayne           Johnson 1997-03-11
#> 1945                   Joshua Kalu         Joshua              Kalu 1995-08-28
#> 1946               Jabrill Peppers        Jabrill           Peppers 1995-10-04
#> 1947                   Julian Love         Julian              Love 1998-03-19
#> 1948                 Steven Parker         Steven            Parker 1995-12-14
#> 1949                    Nate Ebner           Nate             Ebner 1988-12-14
#> 1950                     J.R. Reed           J.R.              Reed 1996-03-11
#> 1951                    Logan Ryan          Logan              Ryan 1991-02-09
#> 1952                 Keion Crossen          Keion           Crossen 1996-04-17
#> 1953               Adoree' Jackson        Adoree'           Jackson 1995-09-18
#> 1954               Xavier McKinney         Xavier          McKinney 1998-08-08
#> 1955              Leonard Williams        Leonard          Williams 1994-06-20
#> 1956               Raymond Johnson        Raymond           Johnson 1998-10-21
#> 1957                    Niko Lalos           Niko             Lalos 1997-06-25
#> 1958              Woodrow Hamilton        Woodrow          Hamilton 1992-12-20
#> 1959                Austin Johnson         Austin           Johnson 1994-05-08
#> 1960                     David Moa          David               Moa 1996-06-14
#> 1961               Dexter Lawrence         Dexter          Lawrence 1997-11-12
#> 1962                 Danny Shelton          Danny           Shelton 1993-08-20
#> 1963              Cullen Gillaspia         Cullen         Gillaspia 1995-05-12
#> 1964                  Ben Bredeson            Ben          Bredeson 1998-02-20
#> 1965                    Wes Martin            Wes            Martin 1996-05-09
#> 1966                Will Hernandez           Will         Hernandez 1995-09-02
#> 1967                   Graham Gano         Graham              Gano 1987-04-09
#> 1968                 Elerson Smith        Elerson             Smith 1998-07-17
#> 1969           Benardrick McKinney     Benardrick          McKinney 1992-11-19
#> 1970                     Cam Brown            Cam             Brown 1998-04-01
#> 1971                  Jaylon Smith         Jaylon             Smith 1995-06-14
#> 1972                Lorenzo Carter        Lorenzo            Carter 1995-12-10
#> 1973                   Tae Crowder            Tae           Crowder 1997-03-12
#> 1974                  Quincy Roche         Quincy             Roche 1998-02-10
#> 1975                 Azeez Ojulari          Azeez           Ojulari 2000-06-16
#> 1976                Reggie Ragland         Reggie           Ragland 1993-09-24
#> 1977               Carter Coughlin         Carter          Coughlin 1997-07-20
#> 1978                Oshane Ximines         Oshane           Ximines 1996-12-07
#> 1979               Justin Hilliard         Justin          Hilliard 1997-03-25
#> 1980                    Omari Cobb          Omari              Cobb 1997-05-31
#> 1981                Blake Martinez          Blake          Martinez 1994-01-09
#> 1982                  T.J. Brunson           T.J.           Brunson 1997-12-03
#> 1983                 Casey Kreiter          Casey           Kreiter 1990-08-13
#> 1984                 Derrick Kelly        Derrick             Kelly 1995-08-23
#> 1985                 Shane Lemieux          Shane           Lemieux 1997-05-12
#> 1986                   Kyle Murphy           Kyle            Murphy 1998-05-18
#> 1987            Jonotthan Harrison      Jonotthan          Harrison 1991-08-25
#> 1988                   Billy Price          Billy             Price 1994-10-12
#> 1989                   Riley Dixon          Riley             Dixon 1993-08-24
#> 1990                  Jamie Gillan          Jamie            Gillan 1997-07-04
#> 1991                  Daniel Jones         Daniel             Jones 1997-05-27
#> 1992                 Brian Lewerke          Brian           Lewerke 1996-10-24
#> 1993                    Jake Fromm           Jake             Fromm 1998-07-30
#> 1994                    Davis Webb          Davis              Webb 1995-01-22
#> 1995                  Mike Glennon           Mike           Glennon 1989-12-12
#> 1996               Clayton Thorson        Clayton           Thorson 1995-12-25
#> 1997               Devontae Booker       Devontae            Booker 1992-05-27
#> 1998                 Elijhaa Penny        Elijhaa             Penny 1993-08-17
#> 1999            Sandro Platzgummer         Sandro       Platzgummer 1997-03-10
#> 2000                Taquan Mizzell         Taquan           Mizzell 1993-10-21
#> 2001               Gary Brightwell           Gary        Brightwell 1999-02-28
#> 2002                Saquon Barkley         Saquon           Barkley 1997-02-09
#> 2003              Antonio Williams        Antonio          Williams 1997-10-22
#> 2004                    Matt Peart           Matt             Peart 1997-06-11
#> 2005                 Andrew Thomas         Andrew            Thomas 1999-01-22
#> 2006              Korey Cunningham          Korey        Cunningham 1995-05-17
#> 2007               Devery Hamilton         Devery          Hamilton 1998-04-19
#> 2008                   Nate Solder           Nate            Solder 1988-04-12
#> 2009                  Kyle Rudolph           Kyle           Rudolph 1989-11-09
#> 2010                   Evan Engram           Evan            Engram 1994-09-02
#> 2011                 Jake Hausmann           Jake          Hausmann 1997-08-12
#> 2012                   Kaden Smith          Kaden             Smith 1997-04-24
#> 2013                 Chris Myarick          Chris           Myarick 1995-10-06
#> 2014                    Rysen John          Rysen              John 1997-12-20
#> 2015                Levine Toilolo         Levine           Toilolo 1991-07-30
#> 2016                 Tommy Stevens          Tommy           Stevens 1996-12-15
#> 2017                Derrick Dillon        Derrick            Dillon 1995-10-28
#> 2018               Travis Toivonen         Travis          Toivonen 1998-04-22
#> 2019                 Pharoh Cooper         Pharoh            Cooper 1995-03-07
#> 2020                Kadarius Toney       Kadarius             Toney 1999-01-27
#> 2021                    C.J. Board           C.J.             Board 1993-12-12
#> 2022                    Andy Jones           Andy             Jones 1994-06-28
#> 2023                 Austin Proehl         Austin            Proehl 1996-06-17
#> 2024                Darius Slayton         Darius           Slayton 1997-01-12
#> 2025                  Alex Bachman           Alex           Bachman 1996-05-29
#> 2026                   David Sills          David             Sills 1996-05-29
#> 2027                  Dante Pettis          Dante            Pettis 1995-10-23
#> 2028              Sterling Shepard       Sterling           Shepard 1993-02-10
#> 2029                     John Ross           John              Ross 1995-11-27
#> 2030                Kenny Golladay          Kenny          Golladay 1993-11-03
#> 2031                Collin Johnson         Collin           Johnson 1997-09-23
#> 2032                    Zane Lewis           Zane             Lewis 1998-04-06
#> 2033                    Bryce Hall          Bryce              Hall 1997-11-05
#> 2034                   Ken Webster            Ken           Webster 1996-06-19
#> 2035                 Jason Pinnock          Jason           Pinnock 1999-06-30
#> 2036                Michael Carter        Michael            Carter 1999-03-08
#> 2037                Brandin Echols        Brandin            Echols 1997-10-16
#> 2038                Javelin Guidry        Javelin            Guidry 1998-08-06
#> 2039              Rachad Wildgoose         Rachad         Wildgoose 2000-06-20
#> 2040                 Justin Hardee         Justin            Hardee 1994-02-07
#> 2041               Jovante Moffatt        Jovante           Moffatt 1996-12-25
#> 2042                    Will Parks           Will             Parks 1994-07-29
#> 2043               Lamarcus Joyner       Lamarcus            Joyner 1990-11-27
#> 2044                  Elijah Riley         Elijah             Riley 1998-06-12
#> 2045                   Marcus Maye         Marcus              Maye 1993-03-09
#> 2046                  Ashtyn Davis         Ashtyn             Davis 1996-10-10
#> 2047                     Kai Nacua            Kai             Nacua 1995-03-03
#> 2048                   Isaiah Dunn         Isaiah              Dunn 1999-01-31
#> 2049                   Carl Lawson           Carl            Lawson 1995-06-29
#> 2050           Freedom Akinmoladun        Freedom       Akinmoladun 1996-02-11
#> 2051                      Tim Ward            Tim              Ward 1997-08-11
#> 2052                 Jabari Zuniga         Jabari            Zuniga 1997-08-14
#> 2053                    Bryce Huff          Bryce              Huff 1998-04-17
#> 2054               Hamilcar Rashed       Hamilcar            Rashed 1998-01-02
#> 2055                  Bradlee Anae        Bradlee              Anae 1998-01-17
#> 2056                  Ronald Blair         Ronald             Blair 1993-01-21
#> 2057            Folorunso Fatukasi      Folorunso          Fatukasi 1995-03-04
#> 2058                 Kyle Phillips           Kyle          Phillips 1997-05-05
#> 2059           John Franklin-Myers           John    Franklin-Myers 1996-09-26
#> 2060                  Tanzel Smart         Tanzel             Smart 1994-11-06
#> 2061              Quinnen Williams        Quinnen          Williams 1997-12-21
#> 2062             Jonathan Marshall       Jonathan          Marshall 1997-09-16
#> 2063               Sheldon Rankins        Sheldon           Rankins 1994-04-02
#> 2064               Nathan Shepherd         Nathan          Shepherd 1993-10-09
#> 2065                   Nick Bawden           Nick            Bawden 1996-06-22
#> 2066                Matt Ammendola           Matt         Ammendola 1996-12-11
#> 2067                  Eddy Pineiro           Eddy           Pineiro 1995-09-13
#> 2068            Hamsah Nasirildeen         Hamsah       Nasirildeen 1999-01-17
#> 2069                   C.J. Mosley           C.J.            Mosley 1992-06-19
#> 2070            Del'Shawn Phillips      Del'Shawn          Phillips 1996-10-09
#> 2071                   Javin White          Javin             White 1997-02-21
#> 2072                 Blake Cashman          Blake           Cashman 1996-05-10
#> 2073               Quincy Williams         Quincy          Williams 1996-08-28
#> 2074                  Jarrad Davis         Jarrad             Davis 1994-11-16
#> 2075                 Brendon White        Brendon             White       <NA>
#> 2076               Jamien Sherwood         Jamien          Sherwood 2000-01-12
#> 2077               Thomas Hennessy         Thomas          Hennessy 1994-06-11
#> 2078                Greg Van Roten           Greg         Van Roten 1990-02-26
#> 2079               Parker Ferguson         Parker          Ferguson 1999-05-16
#> 2080                Grant Hermanns          Grant          Hermanns 1998-03-05
#> 2081                    Dan Feeney            Dan            Feeney 1994-05-29
#> 2082               Connor McGovern         Connor          McGovern 1993-04-27
#> 2083            Alijah Vera-Tucker         Alijah       Vera-Tucker 1999-06-17
#> 2084       Laurent Duvernay-Tardif        Laurent   Duvernay-Tardif 1991-02-11
#> 2085                     Dru Samia            Dru             Samia 1997-08-22
#> 2086               Conor McDermott          Conor         McDermott 1992-10-19
#> 2087                  Morgan Moses         Morgan             Moses 1991-03-03
#> 2088               Isaiah Williams         Isaiah          Williams 1993-05-05
#> 2089            Ross Pierschbacher           Ross     Pierschbacher 1995-06-05
#> 2090                 Cameron Clark        Cameron             Clark 1997-11-16
#> 2091                   George Fant         George              Fant 1992-07-19
#> 2092                  Mekhi Becton          Mekhi            Becton 1999-04-18
#> 2093                   Chuma Edoga          Chuma             Edoga 1997-05-25
#> 2094                   Braden Mann         Braden              Mann 1997-11-24
#> 2095                    Mike White           Mike             White 1995-03-25
#> 2096                    Joe Flacco            Joe            Flacco 1985-01-16
#> 2097                   Zach Wilson           Zach            Wilson 1999-08-03
#> 2098                    Ty Johnson             Ty           Johnson 1997-09-17
#> 2099                Michael Carter        Michael            Carter 1999-05-07
#> 2100               La'Mical Perine       La'Mical            Perine 1998-01-30
#> 2101                 Austin Walter         Austin            Walter 1996-08-17
#> 2102                 Tevin Coleman          Tevin           Coleman 1993-04-16
#> 2103                    Greg Senat           Greg             Senat 1994-09-08
#> 2104                Brandon Dillon        Brandon            Dillon 1997-04-30
#> 2105                Joshua Perkins         Joshua           Perkins 1993-08-05
#> 2106                   Tyler Kroft          Tyler             Kroft 1992-10-15
#> 2107                  Trevon Wesco         Trevon             Wesco 1995-09-12
#> 2108                  Daniel Brown         Daniel             Brown 1992-05-26
#> 2109                  Ryan Griffin           Ryan           Griffin 1990-01-11
#> 2110                  Kenny Yeboah          Kenny            Yeboah 1998-10-30
#> 2111                   Corey Davis          Corey             Davis 1995-01-11
#> 2112               Jamison Crowder        Jamison           Crowder 1993-06-17
#> 2113                   Keelan Cole         Keelan              Cole 1993-04-20
#> 2114               Braxton Berrios        Braxton           Berrios 1995-10-06
#> 2115               D.J. Montgomery           D.J.        Montgomery 1996-11-17
#> 2116                    Jeff Smith           Jeff             Smith 1997-04-21
#> 2117                   Denzel Mims         Denzel              Mims 1997-10-10
#> 2118                  Rodney Adams         Rodney             Adams 1994-09-15
#> 2119                  Elijah Moore         Elijah             Moore 2000-03-27
#> 2120                Lawrence Cager       Lawrence             Cager 1997-08-20
#> 2121                   Myles White          Myles             White 1990-03-03
#> 2122                   Tarik Black          Tarik             Black 1998-02-10
#> 2123                   Jason Kelce          Jason             Kelce 1987-11-05
#> 2124                  Kary Vincent           Kary           Vincent 1999-02-27
#> 2125                   Darius Slay         Darius              Slay 1991-01-01
#> 2126                    Mac McCain            Mac            McCain 1998-02-06
#> 2127                  Josiah Scott         Josiah             Scott 1999-04-05
#> 2128               Zech McPhearson           Zech        McPhearson 1998-03-21
#> 2129                 Steven Nelson         Steven            Nelson 1993-01-22
#> 2130                   Craig James          Craig             James 1996-04-29
#> 2131                     Tay Gowan            Tay             Gowan 1998-01-07
#> 2132                 Avonte Maddox         Avonte            Maddox 1996-03-31
#> 2133                Andre Chachere          Andre          Chachere 1996-02-10
#> 2134                   Marcus Epps         Marcus              Epps 1996-01-27
#> 2135                  Jared Mayden          Jared            Mayden 1998-06-24
#> 2136                Anthony Harris        Anthony            Harris 1991-10-09
#> 2137                 Rodney McLeod         Rodney            McLeod 1990-06-23
#> 2138                 K'Von Wallace          K'Von           Wallace 1997-07-25
#> 2139              Cameron Malveaux        Cameron          Malveaux 1994-09-22
#> 2140                    Josh Sweat           Josh             Sweat 1997-03-29
#> 2141                Brandon Graham        Brandon            Graham 1988-04-03
#> 2142                Tarron Jackson         Tarron           Jackson 1998-06-22
#> 2143                      Matt Leo           Matt               Leo 1992-05-08
#> 2144                 Ryan Kerrigan           Ryan          Kerrigan 1988-08-16
#> 2145                 Derek Barnett          Derek           Barnett 1996-06-25
#> 2146                 Marvin Wilson         Marvin            Wilson 1998-09-05
#> 2147                   Renell Wren         Renell              Wren 1995-10-23
#> 2148                  Fletcher Cox       Fletcher               Cox 1990-12-13
#> 2149                Javon Hargrave          Javon          Hargrave 1993-02-07
#> 2150                Charles Walker        Charles            Walker       <NA>
#> 2151              Marlon Tuipulotu         Marlon         Tuipulotu 1999-05-31
#> 2152               Hassan Ridgeway         Hassan          Ridgeway 1994-11-02
#> 2153               Milton Williams         Milton          Williams 1999-04-06
#> 2154                 Isaac Seumalo          Isaac           Seumalo 1993-10-29
#> 2155                Brandon Brooks        Brandon            Brooks 1989-08-19
#> 2156                 Jack Anderson           Jack          Anderson 1998-10-12
#> 2157                   Nate Herbig           Nate            Herbig 1998-07-10
#> 2158                     Sua Opeta            Sua             Opeta 1996-08-15
#> 2159                  Jake Elliott           Jake           Elliott 1995-01-21
#> 2160                  Genard Avery         Genard             Avery 1995-04-26
#> 2161                  T.J. Edwards           T.J.           Edwards 1996-08-12
#> 2162                 Shaun Bradley          Shaun           Bradley 1997-04-08
#> 2163              Christian Elliss      Christian            Elliss 1999-01-02
#> 2164                Alex Singleton           Alex         Singleton 1993-12-07
#> 2165                 Davion Taylor         Davion            Taylor 1998-08-05
#> 2166                JaCoby Stevens         JaCoby           Stevens 1998-06-19
#> 2167               Patrick Johnson        Patrick           Johnson 1998-01-10
#> 2168                   Rick Lovato           Rick            Lovato 1992-09-09
#> 2169              Landon Dickerson         Landon         Dickerson 1998-09-30
#> 2170                    Brett Toth          Brett              Toth 1996-09-01
#> 2171                Kayode Awosika         Kayode           Awosika 1998-10-27
#> 2172                  Arryn Siposs          Arryn            Siposs 1992-11-25
#> 2173                   Jalen Hurts          Jalen             Hurts 1998-08-07
#> 2174                  Reid Sinnett           Reid           Sinnett 1997-02-05
#> 2175               Gardner Minshew        Gardner           Minshew 1996-05-16
#> 2176                 Jordan Howard         Jordan            Howard 1994-11-02
#> 2177              Kenneth Gainwell        Kenneth          Gainwell 1999-03-14
#> 2178                 Miles Sanders          Miles           Sanders 1997-05-01
#> 2179                  Boston Scott         Boston             Scott 1995-04-27
#> 2180                 Jason Huntley          Jason           Huntley 1998-04-20
#> 2181                  Lane Johnson           Lane           Johnson 1990-05-08
#> 2182                Le'Raven Clark       Le'Raven             Clark 1993-04-22
#> 2183                Jordan Mailata         Jordan           Mailata 1997-03-31
#> 2184                 Jack Driscoll           Jack          Driscoll 1997-04-01
#> 2185                 Andre Dillard          Andre           Dillard 1995-10-03
#> 2186                    Jack Stoll           Jack             Stoll 1998-01-28
#> 2187                 Tyree Jackson          Tyree           Jackson 1997-11-07
#> 2188                   Jason Croom          Jason             Croom 1994-02-28
#> 2189                Dallas Goedert         Dallas           Goedert 1995-01-03
#> 2190                   Noah Togiai           Noah            Togiai 1997-07-06
#> 2191               Richard Rodgers        Richard           Rodgers 1992-01-22
#> 2192                     Greg Ward           Greg              Ward 1995-07-12
#> 2193                  Jalen Reagor          Jalen            Reagor 1999-01-02
#> 2194                  Quez Watkins           Quez           Watkins 1998-06-09
#> 2195                     Deon Cain           Deon              Cain 1996-08-09
#> 2196         J.J. Arcega-Whiteside           J.J.  Arcega-Whiteside 1996-12-31
#> 2197                John Hightower           John         Hightower 1996-05-31
#> 2198                 DeVonta Smith        DeVonta             Smith 1998-11-14
#> 2199                Kendrick Green       Kendrick             Green 1998-12-22
#> 2200               J.C. Hassenauer           J.C.        Hassenauer 1995-09-15
#> 2201           Ahkello Witherspoon        Ahkello       Witherspoon 1995-03-21
#> 2202                  Justin Layne         Justin             Layne 1998-01-12
#> 2203                Cameron Sutton        Cameron            Sutton 1995-02-27
#> 2204                     Joe Haden            Joe             Haden 1989-04-14
#> 2205                Isaiah Johnson         Isaiah           Johnson 1995-12-20
#> 2206                 Arthur Maulet         Arthur            Maulet 1993-07-13
#> 2207                  James Pierre          James            Pierre 1996-09-16
#> 2208               Miles Killebrew          Miles         Killebrew 1993-05-10
#> 2209                   Tre Norwood            Tre           Norwood 1999-04-19
#> 2210               Terrell Edmunds        Terrell           Edmunds 1997-01-20
#> 2211                Donovan Stiner        Donovan            Stiner 1999-02-11
#> 2212            Minkah Fitzpatrick         Minkah       Fitzpatrick 1996-11-17
#> 2213                   Karl Joseph           Karl            Joseph 1993-09-08
#> 2214               Linden Stephens         Linden          Stephens 1995-03-21
#> 2215                 Taco Charlton           Taco          Charlton 1994-11-07
#> 2216                Henry Mondeaux          Henry          Mondeaux 1995-09-19
#> 2217                    J.T. Jones           J.T.             Jones 1993-11-12
#> 2218            Isaiahh Loudermilk        Isaiahh        Loudermilk 1997-10-10
#> 2219                  Tyson Alualu          Tyson            Alualu 1987-05-12
#> 2220                 Stephon Tuitt        Stephon             Tuitt 1993-05-23
#> 2221                 Chris Wormley          Chris           Wormley 1993-10-25
#> 2222               Cameron Heyward        Cameron           Heyward 1989-05-06
#> 2223                  Carlos Davis         Carlos             Davis 1996-08-22
#> 2224            Demarcus Christmas       Demarcus         Christmas 1995-07-04
#> 2225              Montravius Adams     Montravius             Adams 1995-07-24
#> 2226              Daniel Archibong         Daniel         Archibong 1997-09-12
#> 2227                  Khalil Davis         Khalil             Davis 1996-08-22
#> 2228                    Derek Watt          Derek              Watt 1992-11-07
#> 2229                Nathan Gilliam         Nathan           Gilliam 1997-07-06
#> 2230                   Trai Turner           Trai            Turner 1993-06-14
#> 2231              Malcolm Pridgeon        Malcolm          Pridgeon 1995-01-20
#> 2232                 Chris Boswell          Chris           Boswell 1991-03-16
#> 2233                    Sam Sloman            Sam            Sloman 1997-09-19
#> 2234                  Joe Schobert            Joe          Schobert 1993-11-06
#> 2235                Delontae Scott       Delontae             Scott 1997-01-21
#> 2236                    John Simon           John             Simon 1990-10-14
#> 2237                 Buddy Johnson          Buddy           Johnson 1999-02-27
#> 2238               Robert Spillane         Robert          Spillane 1995-12-14
#> 2239                 Tegray Scales         Tegray            Scales 1996-05-10
#> 2240                    Devin Bush          Devin              Bush 1998-07-18
#> 2241                     T.J. Watt           T.J.              Watt 1994-10-11
#> 2242                 Derrek Tuszka         Derrek            Tuszka 1997-08-17
#> 2243                Alex Highsmith           Alex         Highsmith 1997-08-07
#> 2244                  Marcus Allen         Marcus             Allen 1996-08-07
#> 2245               Ulysees Gilbert        Ulysees           Gilbert 1997-08-09
#> 2246                  Rex Sunahara            Rex          Sunahara 1996-10-09
#> 2247               Christian Kuntz      Christian             Kuntz 1994-04-13
#> 2248                  Kevin Dotson          Kevin            Dotson 1996-09-18
#> 2249                   B.J. Finney           B.J.            Finney 1991-10-26
#> 2250             Chukwuma Okorafor       Chukwuma          Okorafor 1997-08-08
#> 2251                     Dan Moore            Dan             Moore 1998-09-28
#> 2252                   John Leglue           John            Leglue 1996-04-17
#> 2253              Cameron Nizialek        Cameron          Nizialek 1995-03-10
#> 2254               Pressley Harvin       Pressley            Harvin 1998-09-17
#> 2255                  Joshua Dobbs         Joshua             Dobbs 1995-01-26
#> 2256            Ben Roethlisberger            Ben    Roethlisberger 1982-03-02
#> 2257                 Mason Rudolph          Mason           Rudolph 1995-07-17
#> 2258                Dwayne Haskins         Dwayne           Haskins 1997-05-03
#> 2259               Nick Schuessler           Nick        Schuessler       <NA>
#> 2260             Anthony McFarland        Anthony         McFarland 1998-03-04
#> 2261                   Benny Snell          Benny             Snell 1998-02-27
#> 2262                  Trey Edmunds           Trey           Edmunds 1994-12-30
#> 2263                 Kalen Ballage          Kalen           Ballage 1995-12-22
#> 2264                  Najee Harris          Najee            Harris 1998-03-09
#> 2265                   Zach Banner           Zach            Banner 1993-12-25
#> 2266                    Chaz Green           Chaz             Green 1992-04-08
#> 2267                      Joe Haeg            Joe              Haeg 1993-03-11
#> 2268              Jace Sternberger           Jace       Sternberger 1996-06-26
#> 2269                    Eric Ebron           Eric             Ebron 1993-04-10
#> 2270                Pat Freiermuth            Pat        Freiermuth 1998-10-25
#> 2271                   Kevin Rader          Kevin             Rader 1995-04-26
#> 2272                   Zach Gentry           Zach            Gentry 1996-09-10
#> 2273                   Dax Raymond            Dax           Raymond 1994-11-30
#> 2274                Chase Claypool          Chase          Claypool 1998-07-07
#> 2275               Diontae Johnson        Diontae           Johnson 1996-07-05
#> 2276                   Rico Bussey           Rico            Bussey 1998-02-25
#> 2277              James Washington          James        Washington 1996-04-02
#> 2278                    Cody White           Cody             White 1998-11-28
#> 2279                   Steven Sims         Steven              Sims 1997-03-31
#> 2280               Ray-Ray McCloud        Ray-Ray           McCloud 1996-10-15
#> 2281                Anthony Miller        Anthony            Miller 1994-10-09
#> 2282           JuJu Smith-Schuster           JuJu    Smith-Schuster 1996-11-22
#> 2283                 Tyler Vaughns          Tyler           Vaughns 1997-06-01
#> 2284                Dakoda Shepley         Dakoda           Shepley 1994-12-27
#> 2285                  Gavin Heslop          Gavin            Heslop 1997-11-13
#> 2286                  Sidney Jones         Sidney             Jones 1996-05-21
#> 2287                     John Reid           John              Reid 1996-05-15
#> 2288               Michael Jackson        Michael           Jackson 1997-01-10
#> 2289                     D.J. Reed           D.J.              Reed 1996-11-11
#> 2290                     Tre Brown            Tre             Brown 1997-09-24
#> 2291                Marquise Blair       Marquise             Blair 1997-07-18
#> 2292                 Nigel Warrior          Nigel           Warrior 1997-12-14
#> 2293                 Quandre Diggs        Quandre             Diggs 1993-01-22
#> 2294               Ugochukwu Amadi      Ugochukwu             Amadi 1997-05-16
#> 2295               Blessuan Austin       Blessuan            Austin 1996-07-19
#> 2296                    Josh Jones           Josh             Jones 1994-09-20
#> 2297                   Marcus Webb         Marcus              Webb 1997-09-04
#> 2298                Darrell Taylor        Darrell            Taylor 1997-03-24
#> 2299                Alton Robinson          Alton          Robinson 1998-06-02
#> 2300                 Rasheem Green        Rasheem             Green 1997-05-15
#> 2301                  L.J. Collier           L.J.           Collier 1995-09-12
#> 2302                 Benson Mayowa         Benson            Mayowa 1991-08-03
#> 2303                   Kerry Hyder          Kerry             Hyder 1991-05-02
#> 2304                 Carlos Dunlap         Carlos            Dunlap 1989-02-28
#> 2305                      Al Woods             Al             Woods 1987-03-25
#> 2306                   Myles Adams          Myles             Adams 1998-03-09
#> 2307                    Bryan Mone          Bryan              Mone 1995-10-20
#> 2308                 Jarrod Hewitt         Jarrod            Hewitt 1997-11-03
#> 2309                   Niles Scott          Niles             Scott 1995-09-30
#> 2310              Robert Nkemdiche         Robert         Nkemdiche 1994-09-19
#> 2311                    Poona Ford          Poona              Ford 1995-11-19
#> 2312                  Nick Bellore           Nick           Bellore 1989-05-12
#> 2313                  Damien Lewis         Damien             Lewis 1997-03-21
#> 2314                  Gabe Jackson           Gabe           Jackson 1991-07-12
#> 2315                   Jason Myers          Jason             Myers 1991-05-12
#> 2316               Ben Burr-Kirven            Ben       Burr-Kirven 1997-09-08
#> 2317                 Jordyn Brooks         Jordyn            Brooks 1997-10-21
#> 2318                   Cody Barton           Cody            Barton 1996-11-13
#> 2319               Lakiem Williams         Lakiem          Williams 1997-08-18
#> 2320                  Aaron Donkor          Aaron            Donkor 1995-03-21
#> 2321                   Tanner Muse         Tanner              Muse 1996-09-06
#> 2322                  Bobby Wagner          Bobby            Wagner 1990-06-27
#> 2323                 Jon Rhattigan            Jon         Rhattigan 1999-02-02
#> 2324                 Alex Tchangam           Alex          Tchangam 1997-05-05
#> 2325               Edmond Robinson         Edmond          Robinson 1992-02-23
#> 2326                  Keith Butler          Keith            Butler 1956-05-16
#> 2327                     Tyler Ott          Tyler               Ott 1992-02-28
#> 2328                   Phil Haynes           Phil            Haynes 1995-10-19
#> 2329          Pier-Olivier Lestage   Pier-Olivier           Lestage 1997-08-04
#> 2330                   Ethan Pocic          Ethan             Pocic 1995-08-05
#> 2331                   Kyle Fuller           Kyle            Fuller 1994-03-04
#> 2332                   Greg Eiland           Greg            Eiland 1998-02-01
#> 2333               Michael Dickson        Michael           Dickson 1996-01-04
#> 2334                 Skyler Howard         Skyler            Howard 1994-11-06
#> 2335                    Geno Smith           Geno             Smith 1990-10-10
#> 2336                   Jacob Eason          Jacob             Eason 1997-11-17
#> 2337                Russell Wilson        Russell            Wilson 1988-11-29
#> 2338                 Rashaad Penny        Rashaad             Penny 1996-02-02
#> 2339                  Alex Collins           Alex           Collins 1994-08-26
#> 2340               Darwin Thompson         Darwin          Thompson 1997-02-12
#> 2341               Adrian Peterson         Adrian          Peterson 1985-03-21
#> 2342                 DeeJay Dallas         DeeJay            Dallas 1998-09-16
#> 2343                  Josh Johnson           Josh           Johnson 1997-12-26
#> 2344                  Travis Homer         Travis             Homer 1998-08-07
#> 2345                  Chris Carson          Chris            Carson 1994-09-16
#> 2346                     Ryan Neal           Ryan              Neal 1995-12-24
#> 2347                   Jamal Adams          Jamal             Adams 1995-10-17
#> 2348                 Jamarco Jones        Jamarco             Jones 1996-06-04
#> 2349                Stone Forsythe          Stone          Forsythe 1997-12-29
#> 2350                   Duane Brown          Duane             Brown 1985-08-30
#> 2351                 Brandon Shell        Brandon             Shell 1992-02-06
#> 2352                   Jake Curhan           Jake            Curhan 1998-07-09
#> 2353                Gerald Everett         Gerald           Everett 1994-06-25
#> 2354                   Tyler Mabry          Tyler             Mabry 1996-11-21
#> 2355               Colby Parkinson          Colby         Parkinson 1999-01-08
#> 2356                   Will Dissly           Will            Dissly 1996-07-08
#> 2357                 Tyler Lockett          Tyler           Lockett 1992-09-28
#> 2358                    John Ursua           John             Ursua 1994-01-17
#> 2359                  Aaron Fuller          Aaron            Fuller 1997-09-30
#> 2360                     Matt Cole           Matt              Cole 1996-11-07
#> 2361                 Freddie Swain        Freddie             Swain 1998-08-04
#> 2362                    Penny Hart          Penny              Hart 1996-07-05
#> 2363                    DK Metcalf             DK           Metcalf 1997-12-14
#> 2364                 Cody Thompson           Cody          Thompson 1996-01-11
#> 2365              D'Wayne Eskridge        D'Wayne          Eskridge 1997-03-23
#> 2366                  Cade Johnson           Cade           Johnson 1998-04-10
#> 2367                     Alex Mack           Alex              Mack 1985-11-19
#> 2368                   Josh Norman           Josh            Norman 1987-12-15
#> 2369                   Lavert Hill         Lavert              Hill 1998-10-03
#> 2370              Emmanuel Moseley       Emmanuel           Moseley 1996-03-25
#> 2371              Darqueze Dennard       Darqueze           Dennard 1991-10-10
#> 2372                    Luq Barcoo            Luq            Barcoo 1998-07-27
#> 2373               K'Waun Williams         K'Waun          Williams 1991-07-12
#> 2374                 Jason Verrett          Jason           Verrett 1991-06-18
#> 2375                   Mark Fields           Mark            Fields 1996-10-10
#> 2376                  Ambry Thomas          Ambry            Thomas 1999-09-09
#> 2377                Dontae Johnson         Dontae           Johnson 1991-12-01
#> 2378                 Jarrod Wilson         Jarrod            Wilson 1994-02-09
#> 2379                  Tavon Wilson          Tavon            Wilson 1990-03-19
#> 2380               Tarvarius Moore      Tarvarius             Moore 1996-08-16
#> 2381                Jaquiski Tartt       Jaquiski             Tartt 1992-02-18
#> 2382             Deommodore Lenoir     Deommodore            Lenoir 1999-10-06
#> 2383               Talanoa Hufanga        Talanoa           Hufanga 1999-02-02
#> 2384                Doug Middleton           Doug         Middleton 1993-09-25
#> 2385                Ka'dar Hollman         Ka'dar           Hollman 1994-09-18
#> 2386                   Jimmie Ward         Jimmie              Ward 1991-07-18
#> 2387               Charles Omenihu        Charles           Omenihu 1997-08-20
#> 2388                 Jordan Willis         Jordan            Willis 1995-05-02
#> 2389                 Arik Armstead           Arik          Armstead 1993-11-15
#> 2390                  Alex Barrett           Alex           Barrett 1994-03-06
#> 2391                     Arden Key          Arden               Key 1996-05-03
#> 2392                     Nick Bosa           Nick              Bosa 1997-10-23
#> 2393                 Samson Ebukam         Samson            Ebukam 1995-05-09
#> 2394                      Dee Ford            Dee              Ford 1991-03-19
#> 2395                 Chris Slayton          Chris           Slayton 1996-08-01
#> 2396                  Javon Kinlaw          Javon            Kinlaw 1997-10-03
#> 2397              Kentavius Street      Kentavius            Street 1996-05-08
#> 2398                 Maurice Hurst        Maurice             Hurst 1995-05-09
#> 2399               Darrion Daniels        Darrion           Daniels 1997-12-04
#> 2400                    D.J. Jones           D.J.             Jones 1995-01-19
#> 2401              Eddie Vanderdoes          Eddie        Vanderdoes 1994-10-13
#> 2402                  Kevin Givens          Kevin            Givens 1997-03-01
#> 2403                    Josh Hokit           Josh             Hokit 1997-11-12
#> 2404                 Kyle Juszczyk           Kyle          Juszczyk 1991-04-23
#> 2405                   Jon Halapio            Jon           Halapio 1991-06-23
#> 2406                  Robbie Gould         Robbie             Gould 1982-12-06
#> 2407                  Mark Nzeocha           Mark           Nzeocha 1990-01-19
#> 2408                Marcell Harris        Marcell            Harris 1994-06-09
#> 2409    Demetrius Flannigan-Fowles      Demetrius  Flannigan-Fowles 1996-09-04
#> 2410                   Fred Warner           Fred            Warner 1996-11-19
#> 2411               Curtis Robinson         Curtis          Robinson 1998-06-02
#> 2412               Azeez Al-Shaair          Azeez         Al-Shaair 1997-08-04
#> 2413                  Dre Greenlaw            Dre          Greenlaw 1997-05-25
#> 2414                 Taybor Pepper         Taybor            Pepper 1994-05-28
#> 2415               Laken Tomlinson          Laken         Tomlinson 1992-02-09
#> 2416                   Aaron Banks          Aaron             Banks 1997-09-03
#> 2417                  Jaylon Moore         Jaylon             Moore 1998-01-09
#> 2418                  Jake Brendel           Jake           Brendel 1992-09-10
#> 2419                   Tom Compton            Tom           Compton 1989-05-10
#> 2420               Colton McKivitz         Colton          McKivitz 1996-08-09
#> 2421             Alfredo Gutierrez        Alfredo         Gutierrez 1995-12-29
#> 2422              Daniel Brunskill         Daniel         Brunskill 1994-01-27
#> 2423                  Justin Skule         Justin             Skule 1996-11-23
#> 2424                  Wyatt Miller          Wyatt            Miller 1995-10-23
#> 2425              Mitch Wishnowsky          Mitch        Wishnowsky 1992-03-03
#> 2426                  Nate Sudfeld           Nate           Sudfeld 1993-10-07
#> 2427               Jimmy Garoppolo          Jimmy         Garoppolo 1991-11-02
#> 2428                    Trey Lance           Trey             Lance 2000-05-09
#> 2429                   Glen Coffee           Glen            Coffee 1987-05-01
#> 2430               Elijah Mitchell         Elijah          Mitchell 1998-05-02
#> 2431                   Jeff Wilson           Jeff            Wilson 1995-11-16
#> 2432                Trenton Cannon        Trenton            Cannon 1994-07-23
#> 2433                    Brian Hill          Brian              Hill 1995-11-09
#> 2434                Raheem Mostert         Raheem           Mostert 1992-04-09
#> 2435                   Trey Sermon           Trey            Sermon 1999-01-30
#> 2436                 JaMycal Hasty        JaMycal             Hasty 1996-09-12
#> 2437                Trent Williams          Trent          Williams 1988-07-19
#> 2438               Mike McGlinchey           Mike        McGlinchey 1994-08-29
#> 2439                  Ross Dwelley           Ross           Dwelley 1995-01-26
#> 2440               Jordan Matthews         Jordan          Matthews 1992-07-16
#> 2441               Charlie Woerner        Charlie           Woerner 1997-10-16
#> 2442                 Tanner Hudson         Tanner            Hudson 1994-11-12
#> 2443                 George Kittle         George            Kittle 1993-10-09
#> 2444              Connor Wedington         Connor         Wedington 1999-05-28
#> 2445               KeeSean Johnson        KeeSean           Johnson 1996-10-09
#> 2446                  Mohamed Sanu        Mohamed              Sanu 1989-08-22
#> 2447                  Deebo Samuel          Deebo            Samuel 1996-01-15
#> 2448                Jauan Jennings          Jauan          Jennings 1997-07-10
#> 2449               Travis Benjamin         Travis          Benjamin 1989-12-29
#> 2450                   Austin Mack         Austin              Mack 1997-08-31
#> 2451                  Richie James         Richie             James 1995-09-05
#> 2452                 Brandon Aiyuk        Brandon             Aiyuk 1998-03-17
#> 2453               Trent Sherfield          Trent         Sherfield 1996-02-25
#> 2454                   Ryan Jensen           Ryan            Jensen 1991-05-27
#> 2455               Richard Sherman        Richard           Sherman 1988-03-30
#> 2456                  Pierre Desir         Pierre             Desir 1990-09-08
#> 2457           Sean Murphy-Bunting           Sean    Murphy-Bunting 1997-06-19
#> 2458                   Dee Delaney            Dee           Delaney 1995-02-20
#> 2459                    Jamel Dean          Jamel              Dean 1996-10-15
#> 2460              Rashard Robinson        Rashard          Robinson 1995-07-23
#> 2461                 Carlton Davis        Carlton             Davis 1996-12-31
#> 2462                 Ross Cockrell           Ross          Cockrell 1991-08-06
#> 2463             Blidi Wreh-Wilson          Blidi       Wreh-Wilson 1989-12-05
#> 2464              Jordan Whitehead         Jordan         Whitehead 1997-03-18
#> 2465                   Troy Warner           Troy            Warner 1998-05-09
#> 2466               Augie Contressa          Augie         Contressa       <NA>
#> 2467                  Chris Cooper          Chris            Cooper 1994-03-17
#> 2468                  Andrew Adams         Andrew             Adams 1992-10-28
#> 2469                  Mike Edwards           Mike           Edwards 1996-05-18
#> 2470              Antoine Winfield        Antoine          Winfield 1998-08-16
#> 2471                  Pat O'Connor            Pat          O'Connor 1993-11-01
#> 2472              William Gholston        William          Gholston 1991-07-31
#> 2473               Benning Potoa'e        Benning           Potoa'e 1996-09-17
#> 2474           Willington Previlon     Willington          Previlon 1997-05-19
#> 2475                Steve McLendon          Steve          McLendon 1986-01-03
#> 2476                 Ndamukong Suh      Ndamukong               Suh 1987-01-06
#> 2477                    Kobe Smith           Kobe             Smith 1998-06-23
#> 2478                      Vita Vea           Vita               Vea 1995-02-05
#> 2479           Rakeem Nunez-Roches         Rakeem      Nunez-Roches 1993-07-03
#> 2480                  John Molchon           John           Molchon 1997-02-02
#> 2481                 Aaron Stinnie          Aaron           Stinnie 1994-02-18
#> 2482                    Ali Marpet            Ali            Marpet 1993-04-17
#> 2483                 Nick Leverett           Nick          Leverett 1997-01-11
#> 2484                    Alex Cappa           Alex             Cappa 1995-01-27
#> 2485               Jose Borregales           Jose        Borregales 1997-12-15
#> 2486                   Ryan Succop           Ryan            Succop 1986-09-19
#> 2487                  Grant Stuard          Grant            Stuard 1998-10-15
#> 2488                    K.J. Britt           K.J.             Britt 1999-06-04
#> 2489                  Kevin Minter          Kevin            Minter 1990-12-03
#> 2490                 Elijah Ponder         Elijah            Ponder 1998-01-16
#> 2491                Anthony Nelson        Anthony            Nelson 1997-03-04
#> 2492               Shaquil Barrett        Shaquil           Barrett 1992-11-17
#> 2493                      Cam Gill            Cam              Gill 1997-12-14
#> 2494                   Devin White          Devin             White 1998-02-17
#> 2495                 Lavonte David        Lavonte             David 1990-01-23
#> 2496            Joe Tryon-Shoyinka            Joe    Tryon-Shoyinka 1999-04-30
#> 2497             Jason Pierre-Paul          Jason       Pierre-Paul 1989-01-01
#> 2498              Garrison Sanborn       Garrison           Sanborn 1985-07-31
#> 2499                   Zach Triner           Zach            Triner 1991-01-30
#> 2500           Sadarius Hutcherson       Sadarius        Hutcherson 1998-04-22
#> 2501               Austin Albrecht         Austin          Albrecht 1993-05-06
#> 2502                Robert Hainsey         Robert           Hainsey 1998-08-12
#> 2503              Jonathan Hubbard       Jonathan           Hubbard 1997-08-17
#> 2504                Brandon Walton        Brandon            Walton 1998-03-18
#> 2505                 Calvin Ashley         Calvin            Ashley       <NA>
#> 2506                Bradley Pinion        Bradley            Pinion 1994-06-01
#> 2507           Sterling Hofrichter       Sterling        Hofrichter 1996-12-05
#> 2508                  Ryan Griffin           Ryan           Griffin 1989-11-17
#> 2509                Blaine Gabbert         Blaine           Gabbert 1989-10-15
#> 2510                     Tom Brady            Tom             Brady 1977-08-03
#> 2511                    Kyle Trask           Kyle             Trask 1998-03-06
#> 2512                  Ronald Jones         Ronald             Jones 1997-08-03
#> 2513               Ke'Shawn Vaughn       Ke'Shawn            Vaughn 1997-05-04
#> 2514               Giovani Bernard        Giovani           Bernard 1991-11-22
#> 2515             Leonard Fournette        Leonard         Fournette 1995-01-18
#> 2516                 Kenjon Barner         Kenjon            Barner 1989-04-28
#> 2517                  Le'Veon Bell        Le'Veon              Bell 1992-02-18
#> 2518                 Donovan Smith        Donovan             Smith 1993-06-23
#> 2519                    Josh Wells           Josh             Wells 1991-02-14
#> 2520                 Tristan Wirfs        Tristan             Wirfs 1999-01-24
#> 2521                   O.J. Howard           O.J.            Howard 1994-11-19
#> 2522                 Cameron Brate        Cameron             Brate 1991-07-03
#> 2523                Rob Gronkowski            Rob        Gronkowski 1989-05-14
#> 2524                 Codey McElroy          Codey           McElroy 1992-12-13
#> 2525                  Darren Fells         Darren             Fells 1986-04-22
#> 2526                    John Hurst           John             Hurst 1996-11-02
#> 2527                 Cyril Grayson          Cyril           Grayson 1993-12-05
#> 2528                  Chris Godwin          Chris            Godwin 1996-02-27
#> 2529                    John Brown           John             Brown 1990-04-03
#> 2530                 Vyncint Smith        Vyncint             Smith 1996-06-09
#> 2531                Austin Watkins         Austin           Watkins 1998-02-16
#> 2532                 Travis Jonsen         Travis            Jonsen 1996-10-16
#> 2533                 Tyler Johnson          Tyler           Johnson 1998-08-25
#> 2534              Breshad Perriman        Breshad          Perriman 1993-09-10
#> 2535                    Mike Evans           Mike             Evans 1993-08-21
#> 2536                 Jaelon Darden         Jaelon            Darden 1999-01-14
#> 2537                  Scott Miller          Scott            Miller 1997-07-31
#> 2538                  Evan Perroni           Evan           Perroni       <NA>
#> 2539                     Ben Jones            Ben             Jones 1989-07-02
#> 2540                 Daniel Munyer         Daniel            Munyer 1992-03-04
#> 2541                    Greg Mabin           Greg             Mabin 1994-06-25
#> 2542              Chris Williamson          Chris        Williamson 1997-05-19
#> 2543               Kristian Fulton       Kristian            Fulton 1998-09-03
#> 2544            Jackrabbit Jenkins     Jackrabbit           Jenkins 1988-10-29
#> 2545          Briean Boddy-Calhoun         Briean     Boddy-Calhoun 1993-01-21
#> 2546                 Quenton Meeks        Quenton             Meeks 1996-06-20
#> 2547                   Chris Jones          Chris             Jones 1995-08-13
#> 2548                  Caleb Farley          Caleb            Farley 1998-11-02
#> 2549                 Elijah Molden         Elijah            Molden 1999-01-30
#> 2550               Matthias Farley       Matthias            Farley 1992-07-15
#> 2551                 Buster Skrine         Buster            Skrine 1989-04-26
#> 2552                  Amani Hooker          Amani            Hooker 1998-06-14
#> 2553                Shyheim Carter        Shyheim            Carter 1997-12-15
#> 2554                  Jamal Carter          Jamal            Carter 1994-04-12
#> 2555                 Chris Jackson          Chris           Jackson 1998-04-13
#> 2556                Rodney Clemons         Rodney           Clemons 1996-12-28
#> 2557               Dane Cruikshank           Dane        Cruikshank 1995-04-27
#> 2558                   Kevin Byard          Kevin             Byard 1993-08-17
#> 2559                  Denico Autry         Denico             Autry 1990-07-15
#> 2560                  Kevin Strong          Kevin            Strong 1996-08-05
#> 2561                 Amani Bledsoe          Amani           Bledsoe 1998-02-06
#> 2562                  Trevon Coley         Trevon             Coley 1994-07-13
#> 2563            Roderick Henderson       Roderick         Henderson       <NA>
#> 2564                  Naquan Jones         Naquan             Jones 1998-02-05
#> 2565               Jeffery Simmons        Jeffery           Simmons 1997-07-28
#> 2566                    Teair Tart          Teair              Tart 1997-02-28
#> 2567                 Da'Shawn Hand       Da'Shawn              Hand 1995-11-14
#> 2568                     Kyle Peko           Kyle              Peko 1993-07-23
#> 2569             Larrell Murchison        Larrell         Murchison 1997-04-24
#> 2570              Khari Blasingame          Khari        Blasingame 1996-07-01
#> 2571                   Tory Carter           Tory            Carter 1999-03-16
#> 2572                   Corey Levin          Corey             Levin 1994-08-12
#> 2573                Rodger Saffold         Rodger           Saffold 1988-06-06
#> 2574                    Nate Davis           Nate             Davis 1996-09-23
#> 2575                   Jordan Roos         Jordan              Roos 1993-07-06
#> 2576                    Sam Ficken            Sam            Ficken 1992-12-14
#> 2577                 Randy Bullock          Randy           Bullock 1989-12-16
#> 2578                    Dylan Cole          Dylan              Cole 1994-05-19
#> 2579               Derick Roberson         Derick          Roberson 1995-11-15
#> 2580                  Nick Dzubnar           Nick           Dzubnar 1991-08-15
#> 2581                   Ola Adeniyi            Ola           Adeniyi 1997-09-12
#> 2582                 Rashad Weaver         Rashad            Weaver 1997-11-10
#> 2583                     Nate Hall           Nate              Hall 1996-04-06
#> 2584                    Monty Rice          Monty              Rice 1999-01-08
#> 2585               Zach Cunningham           Zach        Cunningham 1994-12-12
#> 2586                    Bud Dupree            Bud            Dupree 1993-02-12
#> 2587                 Harold Landry         Harold            Landry 1996-06-05
#> 2588                 Justin Lawler         Justin            Lawler 1994-12-23
#> 2589                     Joe Jones            Joe             Jones 1994-02-21
#> 2590                 Tuzar Skipper          Tuzar           Skipper 1995-06-05
#> 2591                 Rashaan Evans        Rashaan             Evans 1995-11-08
#> 2592                   Jayon Brown          Jayon             Brown 1995-02-26
#> 2593                    David Long          David              Long 1996-10-12
#> 2594                    B.J. Bello           B.J.             Bello 1994-10-31
#> 2595                    Kobe Jones           Kobe             Jones 1998-05-10
#> 2596                    Morgan Cox         Morgan               Cox 1986-04-26
#> 2597            David Quessenberry          David      Quessenberry 1990-08-24
#> 2598                 Dillon Radunz         Dillon            Radunz 1998-03-28
#> 2599                  Aaron Brewer          Aaron            Brewer 1997-10-28
#> 2600                  Taylor Lewan         Taylor             Lewan 1991-07-22
#> 2601                  Kendall Lamm        Kendall              Lamm 1992-06-05
#> 2602                    Brett Kern          Brett              Kern 1986-02-17
#> 2603                Ryan Tannehill           Ryan         Tannehill 1988-07-27
#> 2604                   Kevin Hogan          Kevin             Hogan 1992-10-20
#> 2605                Logan Woodside          Logan          Woodside 1995-01-27
#> 2606               Darrynton Evans      Darrynton             Evans 1998-07-09
#> 2607             Dontrell Hilliard       Dontrell          Hilliard 1995-02-26
#> 2608                Jordan Wilkins         Jordan           Wilkins 1994-07-18
#> 2609              Jeremy McNichols         Jeremy         McNichols 1995-12-26
#> 2610                 Derrick Henry        Derrick             Henry 1994-01-04
#> 2611                D'Onta Foreman         D'Onta           Foreman 1996-04-24
#> 2612                  Brandon Kemp        Brandon              Kemp 1997-01-18
#> 2613             Christian DiLauro      Christian           DiLauro 1994-11-11
#> 2614                   Derwin Gray         Derwin              Gray 1995-05-10
#> 2615                 MyCole Pruitt         MyCole            Pruitt 1992-03-24
#> 2616                   Geoff Swaim          Geoff             Swaim 1993-09-16
#> 2617         Briley Moore-McKinney         Briley    Moore-McKinney 1998-01-13
#> 2618               Anthony Firkser        Anthony           Firkser 1995-02-19
#> 2619             Donnie Ernsberger         Donnie        Ernsberger 1996-10-13
#> 2620                  Tommy Hudson          Tommy            Hudson 1997-02-22
#> 2621                   Austin Fort         Austin              Fort 1995-05-14
#> 2622                     Ryan Izzo           Ryan              Izzo 1995-12-21
#> 2623                Cameron Batson        Cameron            Batson 1995-12-20
#> 2624                   Josh Malone           Josh            Malone 1996-03-21
#> 2625                   Caleb Scott          Caleb             Scott 1996-02-26
#> 2626                   Julio Jones          Julio             Jones 1989-02-03
#> 2627                Chester Rogers        Chester            Rogers 1994-01-12
#> 2628                    A.J. Brown           A.J.             Brown 1997-06-30
#> 2629                Marcus Johnson         Marcus           Johnson 1994-08-05
#> 2630         Nick Westbrook-Ikhine           Nick  Westbrook-Ikhine 1997-03-21
#> 2631                  Racey McMath          Racey            McMath 1999-06-14
#> 2632                Cody Hollister           Cody         Hollister 1993-11-18
#> 2633               Dez Fitzpatrick            Dez       Fitzpatrick 1997-12-17
#> 2634                  Mason Kinsey          Mason            Kinsey 1998-08-29
#> 2635                      Jon Toth            Jon              Toth 1994-02-11
#> 2636                Chase Roullier          Chase          Roullier 1993-08-23
#> 2637                  Keith Ismael          Keith            Ismael 1998-07-25
#> 2638                  Tyler Larsen          Tyler            Larsen 1991-07-08
#> 2639                  Bobby McCain          Bobby            McCain 1993-08-18
#> 2640                   D.J. Hayden           D.J.            Hayden 1990-06-27
#> 2641                Darryl Roberts         Darryl           Roberts 1990-11-26
#> 2642                  Torry McTyer          Torry            McTyer 1995-04-10
#> 2643               William Jackson        William           Jackson 1992-10-27
#> 2644                    Corn Elder           Corn             Elder 1994-10-09
#> 2645                 Danny Johnson          Danny           Johnson 1995-11-17
#> 2646                Kendall Fuller        Kendall            Fuller 1995-02-13
#> 2647                Landon Collins         Landon           Collins 1994-01-10
#> 2648               Darrick Forrest        Darrick           Forrest 1999-05-22
#> 2649              Deshazor Everett       Deshazor           Everett 1992-02-22
#> 2650                   Kamren Curl         Kamren              Curl 1999-03-31
#> 2651             Benjamin St-Juste       Benjamin          St-Juste 1997-09-08
#> 2652                 Jeremy Reaves         Jeremy            Reaves 1996-08-29
#> 2653                     Troy Apke           Troy              Apke 1995-04-11
#> 2654                  Bunmi Rotimi          Bunmi            Rotimi 1995-07-16
#> 2655          James Smith-Williams          James    Smith-Williams 1997-07-29
#> 2656                  Montez Sweat         Montez             Sweat 1996-09-04
#> 2657                 Casey Toohill          Casey           Toohill 1996-08-21
#> 2658          William Bradley-King        William      Bradley-King 1997-12-22
#> 2659                   Chase Young          Chase             Young 1999-04-14
#> 2660                   Jalen Jelks          Jalen             Jelks 1996-08-03
#> 2661                   Shaka Toney          Shaka             Toney 1998-01-08
#> 2662                  Nate Orchard           Nate           Orchard 1993-01-05
#> 2663                Matt Ioannidis           Matt         Ioannidis 1994-01-11
#> 2664                    David Bada          David              Bada 1995-05-24
#> 2665                   Daron Payne          Daron             Payne 1997-05-27
#> 2666                   Tyler Clark          Tyler             Clark 1998-07-25
#> 2667                   Daniel Wise         Daniel              Wise 1996-01-16
#> 2668                    Tim Settle            Tim            Settle 1997-07-11
#> 2669                   Gabe Wright           Gabe            Wright 1992-04-03
#> 2670                Jonathan Allen       Jonathan             Allen 1995-01-16
#> 2671                    Alex Armah           Alex             Armah 1994-05-17
#> 2672              Nolan Laufenberg          Nolan        Laufenberg 1999-03-25
#> 2673                   Zack Bailey           Zack            Bailey 1995-11-08
#> 2674                 Deion Calhoun          Deion           Calhoun 1996-02-20
#> 2675                Wes Schweitzer            Wes        Schweitzer 1993-09-11
#> 2676              Beau Benzschawel           Beau       Benzschawel 1995-09-10
#> 2677               Brandon Scherff        Brandon           Scherff 1991-12-26
#> 2678                     Joey Slye           Joey              Slye 1996-04-10
#> 2679                 Brian Johnson          Brian           Johnson 1999-03-05
#> 2680                    Jon Bostic            Jon            Bostic 1991-05-05
#> 2681                    David Mayo          David              Mayo 1993-08-18
#> 2682                 De'Jon Harris         De'Jon            Harris 1997-11-01
#> 2683                   Jamin Davis          Jamin             Davis 1998-12-12
#> 2684                  Jared Norris          Jared            Norris 1993-07-19
#> 2685               Jordan Kunaszyk         Jordan          Kunaszyk 1996-10-15
#> 2686                   Milo Eifler           Milo            Eifler 1998-02-13
#> 2687                Khaleke Hudson        Khaleke            Hudson 1997-12-06
#> 2688                  Cole Holcomb           Cole           Holcomb 1996-07-30
#> 2689             Camaron Cheeseman        Camaron         Cheeseman 1998-04-26
#> 2690                     Sam Cosmi            Sam             Cosmi 1999-02-16
#> 2691                 Jamil Douglas          Jamil           Douglas 1992-02-28
#> 2692                   Cole Boozer           Cole            Boozer 1994-11-15
#> 2693                     Tress Way          Tress               Way 1990-04-18
#> 2694               Taylor Heinicke         Taylor          Heinicke 1993-03-15
#> 2695                    Kyle Allen           Kyle             Allen 1996-03-08
#> 2696              Ryan Fitzpatrick           Ryan       Fitzpatrick 1982-11-24
#> 2697               Garrett Gilbert        Garrett           Gilbert 1991-01-01
#> 2698                 J.D. McKissic           J.D.          McKissic 1993-08-15
#> 2699               Reggie Bonnafon         Reggie          Bonnafon 1996-01-04
#> 2700             Wendell Smallwood        Wendell         Smallwood 1994-01-20
#> 2701             Jonathan Williams       Jonathan          Williams 1994-02-02
#> 2702                Antonio Gibson        Antonio            Gibson 1998-06-23
#> 2703               Jaret Patterson          Jaret         Patterson 1999-12-23
#> 2704                  Charles Leno        Charles              Leno 1991-10-09
#> 2705               Saahdiq Charles        Saahdiq           Charles 1999-07-26
#> 2706                 Ereck Flowers          Ereck           Flowers 1994-04-25
#> 2707               David Steinmetz          David         Steinmetz 1995-03-01
#> 2708               Cornelius Lucas      Cornelius             Lucas 1991-07-18
#> 2709                  Sammis Reyes         Sammis             Reyes 1995-10-19
#> 2710             Ricky Seals-Jones          Ricky       Seals-Jones 1995-03-15
#> 2711                  Logan Thomas          Logan            Thomas 1991-07-01
#> 2712                Dylan Cantrell          Dylan          Cantrell 1994-06-29
#> 2713                    John Bates           John             Bates 1997-11-06
#> 2714           Temarrick Hemingway      Temarrick         Hemingway 1993-07-30
#> 2715          Antonio Gandy-Golden        Antonio      Gandy-Golden 1998-04-11
#> 2716                DeAndre Carter        DeAndre            Carter 1993-04-10
#> 2717                     Dax Milne            Dax             Milne 1999-06-23
#> 2718                 Curtis Samuel         Curtis            Samuel 1996-08-11
#> 2719                Terry McLaurin          Terry          McLaurin 1995-09-15
#> 2720                      Cam Sims            Cam              Sims 1996-01-06
#> 2721                 Kelvin Harmon         Kelvin            Harmon 1996-12-15
#> 2722                Adam Humphries           Adam         Humphries 1993-06-24
#> 2723                   Dyami Brown          Dyami             Brown 1999-11-01
#> 2724                 Marken Michel         Marken            Michel 1993-07-06
#> 2725                  Mike Pouncey           Mike           Pouncey 1989-07-24
#> 2726              Demetrius Rhaney      Demetrius            Rhaney 1992-06-22
#> 2727                 Erik Magnuson           Erik          Magnuson 1994-01-05
#> 2728                   Aaron Neary          Aaron             Neary 1992-11-15
#> 2729                   Kyle Friend           Kyle            Friend 1994-04-03
#> 2730                    Ryan Kalil           Ryan             Kalil 1985-03-29
#> 2731              Cornelius Edison      Cornelius            Edison 1993-07-10
#> 2732                Tony Bergstrom           Tony         Bergstrom 1986-08-06
#> 2733                  A.Q. Shipley           A.Q.           Shipley 1986-05-22
#> 2734                    Casey Dunn          Casey              Dunn 1994-10-11
#> 2735                 Toa Lobendahn            Toa         Lobendahn 1996-02-14
#> 2736              Bunchy Stallings         Bunchy         Stallings 1995-09-27
#> 2737               Weston Richburg         Weston          Richburg 1991-07-09
#> 2738              Maurkice Pouncey       Maurkice           Pouncey 1989-07-24
#> 2739               Jacob Ohnesorge          Jacob         Ohnesorge       <NA>
#> 2740                Patrick Morris        Patrick            Morris 1995-02-13
#> 2741             Vitas Hrynkiewicz          Vitas       Hrynkiewicz 1995-10-27
#> 2742               Gino Gradkowski           Gino        Gradkowski 1988-11-05
#> 2743              Travis Frederick         Travis         Frederick 1991-03-18
#> 2744                   Nate Trewyn           Nate            Trewyn 1996-05-16
#> 2745                   James Stone          James             Stone 1992-04-26
#> 2746                    Nico Falah           Nico             Falah 1995-01-06
#> 2747                  T.J. Johnson           T.J.           Johnson 1990-07-17
#> 2748                  Cole Madison           Cole           Madison 1994-12-20
#> 2749                   Andrew East         Andrew              East 1991-09-17
#> 2750                Daniel Kilgore         Daniel           Kilgore 1987-12-18
#> 2751               Chandler Miller       Chandler            Miller 1996-04-16
#> 2752                 Marcus Martin         Marcus            Martin 1993-11-29
#> 2753                 John Sullivan           John          Sullivan 1985-08-08
#> 2754                Wesley Johnson         Wesley           Johnson 1991-01-09
#> 2755                Lucas Gravelle          Lucas          Gravelle 1995-07-28
#> 2756                Travis Swanson         Travis           Swanson 1991-01-30
#> 2757                     Joey Hunt           Joey              Hunt 1994-02-22
#> 2758                    Tony Adams           Tony             Adams 1995-12-28
#> 2759                    Evan Boehm           Evan             Boehm 1993-08-19
#> 2760                   Kirk Barron           Kirk            Barron 1995-06-03
#> 2761                    Dillon Day         Dillon               Day 1991-10-17
#> 2762               Skyler Phillips         Skyler          Phillips 1995-10-09
#> 2763               Anthony Fabiano        Anthony           Fabiano 1993-07-13
#> 2764                  Spencer Long        Spencer              Long 1990-11-08
#> 2765                 Deyshawn Bond       Deyshawn              Bond 1994-08-19
#> 2766                   John Keenoy           John            Keenoy 1997-02-26
#> 2767                 Keegan Render         Keegan            Render 1995-11-23
#> 2768                Brad Lundblade           Brad         Lundblade 1995-09-21
#> 2769                  Ethan Cooper          Ethan            Cooper 1995-06-11
#> 2770                 Tanner Volson         Tanner            Volson 1996-05-04
#> 2771                Brian Schwenke          Brian          Schwenke 1991-03-22
#> 2772                    J.P. Quinn           J.P.             Quinn       <NA>
#> 2773                Parker Collins         Parker           Collins 1994-05-19
#> 2774                  Tejan Koroma          Tejan            Koroma 1996-04-27
#> 2775                 Mike Matthews           Mike          Matthews 1994-01-27
#> 2776                  Luke Bowanko           Luke           Bowanko 1991-06-13
#> 2777                 Austin Reiter         Austin            Reiter 1991-11-27
#> 2778                 James O'Hagan          James           O'Hagan 1996-09-19
#> 2779                  Austin Davis         Austin             Davis 1995-02-25
#> 2780                     Max Unger            Max             Unger 1986-04-14
#> 2781                Russell Bodine        Russell            Bodine 1992-06-30
#> 2782                 Marquez White        Marquez             White 1994-10-29
#> 2783                   Davon House          Davon             House 1989-07-10
#> 2784            Dominique Hatfield      Dominique          Hatfield 1994-12-13
#> 2785                 Marcus Cooper         Marcus            Cooper 1990-02-01
#> 2786 Prince Charles Charles Iworah Prince Charles    Charles Iworah 1993-03-11
#> 2787                    Kalan Reed          Kalan              Reed 1993-12-29
#> 2788                Jayson Stanley         Jayson           Stanley 1997-04-24
#> 2789                 Josh Robinson           Josh          Robinson 1991-01-08
#> 2790                  Donnie Lewis         Donnie             Lewis 1996-07-21
#> 2791                 David Amerson          David           Amerson 1991-12-08
#> 2792                 Derrick Jones        Derrick             Jones 1994-12-04
#> 2793                Marcus Sherels         Marcus           Sherels 1987-09-30
#> 2794              Dezmen Southward         Dezmen         Southward 1990-10-01
#> 2795                  Malik Reaves          Malik            Reaves 1995-12-15
#> 2796               Coty Sensabaugh           Coty        Sensabaugh 1988-11-15
#> 2797                 Leon McFadden           Leon          McFadden 1990-10-26
#> 2798                  Aaron Colvin          Aaron            Colvin 1991-10-02
#> 2799                  Vontae Davis         Vontae             Davis 1988-05-27
#> 2800                  Antwon Blake         Antwon             Blake 1990-08-09
#> 2801                  Clifton Duck        Clifton              Duck 1998-05-03
#> 2802                   Alex Carter           Alex            Carter 1994-10-19
#> 2803              Bradford Lemmons       Bradford           Lemmons 1996-04-19
#> 2804              Patrick Robinson        Patrick          Robinson 1987-09-07
#> 2805               Dexter McDonald         Dexter          McDonald 1991-11-30
#> 2806                 Ronald Zamort         Ronald            Zamort 1991-11-10
#> 2807            Chris Lewis-Harris          Chris      Lewis-Harris 1989-02-11
#> 2808                  Josh Hawkins           Josh           Hawkins 1993-01-23
#> 2809               Donatello Brown      Donatello             Brown 1991-05-15
#> 2810                  Trey Johnson           Trey           Johnson 1994-09-27
#> 2811                    Mark Myers           Mark             Myers 1994-09-05
#> 2812                 DeShawn Shead        DeShawn             Shead 1989-06-28
#> 2813                  Bryce Canady          Bryce            Canady       <NA>
#> 2814                Xavier Coleman         Xavier           Coleman 1995-01-13
#> 2815                Juante Baldwin         Juante           Baldwin 1994-10-24
#> 2816                  Brent Grimes          Brent            Grimes 1983-07-19
#> 2817                Malcolm Butler        Malcolm            Butler 1990-03-02
#> 2818                 Taurean Nixon        Taurean             Nixon 1991-02-07
#> 2819                 Travell Dixon        Travell             Dixon 1991-02-17
#> 2820                  Tony Lippett           Tony           Lippett 1992-07-02
#> 2821                   Bryce Jones          Bryce             Jones 1994-08-20
#> 2822             Orlando Scandrick        Orlando         Scandrick 1987-02-10
#> 2823                  Brandon Carr        Brandon              Carr 1986-05-19
#> 2824                  Winston Rose        Winston              Rose 1993-11-29
#> 2825                 Tenny Adewusi          Tenny           Adewusi 1997-05-13
#> 2826                Demontre Hurst       Demontre             Hurst 1991-03-24
#> 2827               Trevor Williams         Trevor          Williams 1993-09-15
#> 2828                    Akeem King          Akeem              King 1992-08-29
#> 2829            Channing Stribling       Channing         Stribling 1994-11-21
#> 2830                   Duke Thomas           Duke            Thomas 1994-05-21
#> 2831             Makinton Dorleant       Makinton          Dorleant 1992-10-06
#> 2832                  Nydair Rouse         Nydair             Rouse 1995-06-13
#> 2833                Quinton Dunbar        Quinton            Dunbar 1992-07-22
#> 2834                   Ryan Pulley           Ryan            Pulley 1995-12-31
#> 2835                  Tre Roberson            Tre          Roberson 1992-10-22
#> 2836                Picasso Nelson        Picasso            Nelson 1996-04-15
#> 2837               Adairius Barnes       Adairius            Barnes 1994-04-30
#> 2838                Chris Campbell          Chris          Campbell 1995-11-27
#> 2839                 Kenneth Acker        Kenneth             Acker 1992-02-06
#> 2840               Marcus Williams         Marcus          Williams 1991-03-24
#> 2841                 Deante Burton         Deante            Burton 1994-07-12
#> 2842                   Jaylen Hill         Jaylen              Hill 1994-05-26
#> 2843              Morris Claiborne         Morris         Claiborne 1990-02-07
#> 2844                 Reese Fleming          Reese           Fleming 1993-12-06
#> 2845                  Greg Stroman           Greg           Stroman 1996-03-08
#> 2846                Tramaine Brock       Tramaine             Brock 1988-08-20
#> 2847                Joshua Simmons         Joshua           Simmons 1996-07-01
#> 2848                 Elijah Battle         Elijah            Battle       <NA>
#> 2849                 Byron Maxwell          Byron           Maxwell 1988-02-23
#> 2850             Jeremiah McKinnon       Jeremiah          McKinnon 1993-06-29
#> 2851                 Joshua Holsey         Joshua            Holsey 1994-06-23
#> 2852                 Tevin Mitchel          Tevin           Mitchel 1992-08-03
#> 2853                    D.J. White           D.J.             White 1993-09-09
#> 2854             Tarvarus McFadden       Tarvarus          McFadden 1997-01-28
#> 2855                  DaShaun Amos        DaShaun              Amos 1994-09-20
#> 2856                Terence Newman        Terence            Newman 1978-09-04
#> 2857                    C.J. Smith           C.J.             Smith 1993-05-10
#> 2858                 Dakari Monroe         Dakari            Monroe 1997-08-18
#> 2859                  Jamar Taylor          Jamar            Taylor 1990-09-29
#> 2860                Treston Decoud        Treston            Decoud 1993-08-01
#> 2861                Shakial Taylor        Shakial            Taylor 1996-12-27
#> 2862                 Davante Davis        Davante             Davis 1995-09-26
#> 2863                  David Rivers          David            Rivers 1994-07-23
#> 2864                Sterling Moore       Sterling             Moore 1990-02-03
#> 2865                 Trevon Mathis         Trevon            Mathis 1995-09-12
#> 2866                      Sam Beal            Sam              Beal 1996-08-30
#> 2867                Taveze Calhoun         Taveze           Calhoun 1992-12-26
#> 2868                  Keith Baxter          Keith            Baxter 1992-06-04
#> 2869                 Quincy Redmon         Quincy            Redmon 1993-12-11
#> 2870                Kenneth Durden        Kenneth            Durden 1992-05-16
#> 2871                  Jalen Myrick          Jalen            Myrick 1995-02-27
#> 2872                    Alex Brown           Alex             Brown 1996-08-30
#> 2873                   Step Durham           Step            Durham 1995-06-10
#> 2874                 Howard Wilson         Howard            Wilson 1995-10-30
#> 2875                 D.J. Killings           D.J.          Killings 1995-08-09
#> 2876                 Lenzy Pipkins          Lenzy           Pipkins 1993-11-07
#> 2877                Jeremy Boykins         Jeremy           Boykins 1995-05-29
#> 2878                Javien Elliott         Javien           Elliott 1993-07-18
#> 2879                  Lashard Durr        Lashard              Durr 1994-10-24
#> 2880                   Holton Hill         Holton              Hill 1997-03-28
#> 2881                Anthony Cioffi        Anthony            Cioffi 1994-08-26
#> 2882                Sammy Seamster          Sammy          Seamster 1991-02-05
#> 2883                  Mercy Maston          Mercy            Maston 1992-11-10
#> 2884                  Neiko Thorpe          Neiko            Thorpe 1990-02-11
#> 2885                 Jhavonte Dean       Jhavonte              Dean 1995-12-14
#> 2886                     B.W. Webb           B.W.              Webb 1990-05-03
#> 2887               Demetri Goodson        Demetri           Goodson 1989-06-11
#> 2888                Brandon Boykin        Brandon            Boykin 1990-07-13
#> 2889                 D'Andre Payne        D'Andre             Payne 1996-05-17
#> 2890                Kayvon Webster         Kayvon           Webster 1991-02-01
#> 2891                   William Gay        William               Gay 1985-01-01
#> 2892                    Mike Jones           Mike             Jones 1995-09-01
#> 2893                   Doran Grant          Doran             Grant 1992-11-30
#> 2894                 Simeon Thomas         Simeon            Thomas 1993-09-22
#> 2895               Dexter McDougle         Dexter          McDougle 1991-04-08
#> 2896                   C.J. Reavis           C.J.            Reavis 1995-11-27
#> 2897               Leonard Johnson        Leonard           Johnson 1990-03-30
#> 2898                Michael Hunter        Michael            Hunter 1993-04-19
#> 2899              Johnathan Joseph      Johnathan            Joseph 1984-04-16
#> 2900                    Ryan Lewis           Ryan             Lewis 1994-04-15
#> 2901               Ranthony Texada       Ranthony            Texada 1995-05-16
#> 2902               Sojourn Shelton        Sojourn           Shelton 1994-12-25
#> 2903               Shareece Wright       Shareece            Wright 1987-04-08
#> 2904                   Denzel Rice         Denzel              Rice 1993-03-31
#> 2905                    Elie Bouka           Elie             Bouka 1992-08-15
#> 2906             Damarious Randall      Damarious           Randall 1992-08-29
#> 2907                    Tony McRae           Tony             McRae 1993-05-03
#> 2908                   E.J. Gaines           E.J.            Gaines 1992-02-23
#> 2909                 Josh Thornton           Josh          Thornton 1992-11-24
#> 2910                    Aqib Talib           Aqib             Talib 1986-02-13
#> 2911              Robertson Daniel      Robertson            Daniel 1991-10-02
#> 2912                Donovan Olumba        Donovan            Olumba 1995-09-26
#> 2913                    Adam Jones           Adam             Jones 1983-09-30
#> 2914         Nickell Robey-Coleman        Nickell     Robey-Coleman 1992-01-17
#> 2915                 Jalen Collins          Jalen           Collins 1993-03-20
#> 2916                 Marcus Sayles         Marcus            Sayles 1994-10-01
#> 2917                Jermaine Kelly       Jermaine             Kelly 1995-02-26
#> 2918                 Marcus Burley         Marcus            Burley 1990-07-16
#> 2919                  Tyler Patmon          Tyler            Patmon 1991-01-26
#> 2920            Cordrea Tankersley        Cordrea        Tankersley 1993-11-19
#> 2921                   Craig Mager          Craig             Mager 1992-06-11
#> 2922               Jermaine Ponder       Jermaine            Ponder 1995-01-09
#> 2923             Captain Munnerlyn        Captain         Munnerlyn 1988-04-10
#> 2924                  Rashard Fant        Rashard              Fant 1995-01-08
#> 2925                     B.J. Clay           B.J.              Clay 1995-01-18
#> 2926                   Trovon Reed         Trovon              Reed 1990-12-30
#> 2927               De'Vante Harris       De'Vante            Harris 1993-06-30
#> 2928                 Jeff Richards           Jeff          Richards 1991-01-03
#> 2929              Trumaine Johnson       Trumaine           Johnson 1990-01-01
#> 2930                 Derrick Baity        Derrick             Baity 1996-12-23
#> 2931                     Tae Hayes            Tae             Hayes 1997-08-19
#> 2932                   Ryan Carter           Ryan            Carter 1994-11-04
#> 2933                 Harlan Miller         Harlan            Miller 1994-06-20
#> 2934               Dre Kirkpatrick            Dre       Kirkpatrick 1989-10-26
#> 2935                   Cyrus Jones          Cyrus             Jones 1993-11-29
#> 2936               Stephen Denmark        Stephen           Denmark 1996-04-20
#> 2937               Bene' Benwikere          Bene'         Benwikere 1991-09-03
#> 2938                 Robert Nelson         Robert            Nelson 1990-02-16
#> 2939               Javien Hamilton         Javien          Hamilton 1996-09-02
#> 2940               Tramon Williams         Tramon          Williams 1983-03-16
#> 2941                     Leon Hall           Leon              Hall 1984-12-09
#> 2942                Johnthan Banks       Johnthan             Banks 1989-10-03
#> 2943              Deatrick Nichols       Deatrick           Nichols 1994-09-08
#> 2944         Stanley Jean-Baptiste        Stanley     Jean-Baptiste 1990-04-12
#> 2945   Dominique Rodgers-Cromartie      Dominique Rodgers-Cromartie 1986-04-07
#> 2946                Phillip Gaines        Phillip            Gaines 1991-04-04
#> 2947                Ashton Lampkin         Ashton           Lampkin 1994-01-10
#> 2948                 Kevin Johnson          Kevin           Johnson 1992-08-05
#> 2949               Quinten Rollins        Quinten           Rollins 1992-07-15
#> 2950                 Antwuan Davis        Antwuan             Davis 1995-05-14
#> 2951                Rashard Causey        Rashard            Causey 1996-09-20
#> 2952              Johnson Bademosi        Johnson          Bademosi 1990-07-23
#> 2953                  Lorenzo Doss        Lorenzo              Doss 1994-04-22
#> 2954                 Trey Caldwell           Trey          Caldwell 1993-12-04
#> 2955                Jackson Porter        Jackson            Porter 1995-01-26
#> 2956                   Marcus Rios         Marcus              Rios 1994-10-25
#> 2957                 D'Montre Wade       D'Montre              Wade 1994-12-22
#> 2958                 Curtis Mikell         Curtis            Mikell 1995-11-25
#> 2959              Dashaun Phillips        Dashaun          Phillips 1991-01-03
#> 2960               Ladarius Gunter       Ladarius            Gunter 1992-05-13
#> 2961                Michael Jordan        Michael            Jordan 1992-10-21
#> 2962                     Cole Luke           Cole              Luke 1995-06-30
#> 2963                   Sam Shields            Sam           Shields 1987-12-08
#> 2964                Jonathan Moxey       Jonathan             Moxey 1995-01-14
#> 2965                Darius Hillary         Darius           Hillary 1993-04-05
#> 2966                  LeShaun Sims        LeShaun              Sims 1993-09-18
#> 2967             Horace Richardson         Horace        Richardson 1993-09-28
#> 2968                 Jarell Carter         Jarell            Carter 1995-08-07
#> 2969                  Keith Reaser          Keith            Reaser 1991-07-31
#> 2970                 Amari Coleman          Amari           Coleman 1996-10-09
#> 2971              Alterraun Verner      Alterraun            Verner 1988-12-13
#> 2972                 Gareon Conley         Gareon            Conley 1995-06-29
#> 2973              Christian Boutte      Christian            Boutte 1995-12-29
#> 2974                 Rodney Randle         Rodney            Randle 1997-02-27
#> 2975                  George Iloka         George             Iloka 1990-03-31
#> 2976                   Delano Hill         Delano              Hill 1995-11-26
#> 2977              Marcus Gilchrist         Marcus         Gilchrist 1988-12-08
#> 2978              Prince Amukamara         Prince         Amukamara 1989-06-06
#> 2979                  Andrew Soroh         Andrew             Soroh 1996-02-12
#> 2980                Arrion Springs         Arrion           Springs 1995-09-19
#> 2981               Rashaan Gaulden        Rashaan           Gaulden 1995-01-25
#> 2982                  J.T. Hassell           J.T.           Hassell 1995-08-14
#> 2983                 Alijah Holder         Alijah            Holder 1996-01-24
#> 2984                 Obi Melifonwu            Obi         Melifonwu 1994-04-05
#> 2985                Jocquez Kalili        Jocquez            Kalili 1996-02-29
#> 2986                    Tre Boston            Tre            Boston 1992-06-25
#> 2987                 Chris Johnson          Chris           Johnson 1995-11-12
#> 2988              Sherrick McManis       Sherrick           McManis 1987-12-19
#> 2989                  Jalen Harvey          Jalen            Harvey 1995-09-19
#> 2990                  Tyler Sigler          Tyler            Sigler 1996-03-26
#> 2991                  Curtis Riley         Curtis             Riley 1992-07-18
#> 2992                 Chris Edwards          Chris           Edwards 1992-12-23
#> 2993                    Malik Gant          Malik              Gant 1997-05-29
#> 2994                Henre' Toliver         Henre'           Toliver 1996-10-21
#> 2995                LaDarius Wiley       LaDarius             Wiley 1996-06-03
#> 2996                  Raven Greene          Raven            Greene 1995-02-02
#> 2997                Isaiah Langley         Isaiah           Langley 1996-10-13
#> 2998                 Marcus Edmond         Marcus            Edmond 1995-07-06
#> 2999                 Maurice Smith        Maurice             Smith 1995-06-14
#> 3000               Bennett Jackson        Bennett           Jackson 1991-09-16
#> 3001                  Jordan Lucas         Jordan             Lucas 1993-08-02
#> 3002                Saquan Hampton         Saquan           Hampton 1995-12-12
#> 3003                Montre Hartage         Montre           Hartage 1997-06-16
#> 3004                   Nate Holley           Nate            Holley 1994-12-05
#> 3005                    Dee Virgin            Dee            Virgin 1993-10-29
#> 3006              Clayton Geathers        Clayton          Geathers 1992-06-01
#> 3007                 Derrek Thomas         Derrek            Thomas 1995-04-25
#> 3008                  Deion Harris          Deion            Harris 1995-12-18
#> 3009                   Jay Liggins            Jay           Liggins 1996-04-26
#> 3010                Jarvis Jenkins         Jarvis           Jenkins 1988-04-24
#> 3011                 Connor Flagel         Connor            Flagel 1995-01-08
#> 3012                   Vic Beasley            Vic           Beasley 1992-07-08
#> 3013                  Alex Jenkins           Alex           Jenkins 1993-01-15
#> 3014                   JoJo Wicker           JoJo            Wicker 1996-06-09
#> 3015                   Aldon Smith          Aldon             Smith 1989-09-25
#> 3016               Breeland Speaks       Breeland            Speaks 1995-12-18
#> 3017                  Jake Ceresna           Jake           Ceresna 1994-07-09
#> 3018                Marcell Dareus        Marcell            Dareus 1990-03-13
#> 3019                 Tyrone Holmes         Tyrone            Holmes 1993-09-10
#> 3020                    Chris Long          Chris              Long 1985-03-28
#> 3021                Anthony Lanier        Anthony            Lanier 1993-05-08
#> 3022                   Will Clarke           Will            Clarke 1991-05-04
#> 3023                 Yurik Bethune          Yurik           Bethune 1997-04-05
#> 3024                Blaine Woodson         Blaine           Woodson 1995-10-30
#> 3025              Kendall Langford        Kendall          Langford 1986-01-27
#> 3026               Michael Johnson        Michael           Johnson 1987-02-07
#> 3027              Mychealon Thomas      Mychealon            Thomas 1994-10-02
#> 3028                   Shaq Lawson           Shaq            Lawson 1994-06-17
#> 3029                Frostee Rucker        Frostee            Rucker 1983-09-14
#> 3030                     Adam Reth           Adam              Reth       <NA>
#> 3031             Mackendy Cheridor       Mackendy          Cheridor 1994-09-20
#> 3032                    Alec James           Alec             James 1994-09-30
#> 3033               Anthony Johnson        Anthony           Johnson 1993-01-24
#> 3034                 Kendall Reyes        Kendall             Reyes 1989-09-26
#> 3035                 William Hayes        William             Hayes 1985-05-02
#> 3036                Charles Tapper        Charles            Tapper 1993-05-07
#> 3037                    Ziggy Hood          Ziggy              Hood 1987-02-16
#> 3038                  Ryan Delaire           Ryan           Delaire 1992-01-17
#> 3039                George Johnson         George           Johnson 1987-12-11
#> 3040              Andrew Trumbetti         Andrew         Trumbetti 1996-03-14
#> 3041                  Ryan Russell           Ryan           Russell 1992-01-17
#> 3042                    Zach Moore           Zach             Moore 1990-09-05
#> 3043                  Greg Roberts           Greg           Roberts 1996-03-21
#> 3044               Branden Jackson        Branden           Jackson 1992-11-11
#> 3045                  Jerel Worthy          Jerel            Worthy 1990-04-26
#> 3046              Jeremiah Valoaga       Jeremiah           Valoaga 1994-11-15
#> 3047                Tomasi Laulile         Tomasi           Laulile 1995-05-22
#> 3048                   Nordly Capi         Nordly              Capi 1992-07-11
#> 3049              Carroll Phillips        Carroll          Phillips 1992-09-02
#> 3050             Anree Saint-Amour          Anree       Saint-Amour 1996-09-18
#> 3051                  David Irving          David            Irving 1993-08-18
#> 3052              Leterrius Walton      Leterrius            Walton 1992-03-31
#> 3053                 Ondre Pipkins          Ondre           Pipkins 1994-02-25
#> 3054          Cornellius Carradine     Cornellius         Carradine 1990-02-18
#> 3055                  Marcus Smith         Marcus             Smith 1992-03-31
#> 3056                 Geneo Grissom          Geneo           Grissom 1992-06-04
#> 3057                     Kony Ealy           Kony              Ealy 1991-12-21
#> 3058                Francis Kallon        Francis            Kallon 1994-02-02
#> 3059                     Dee Liner            Dee             Liner 1993-10-29
#> 3060               Kiante Anderson         Kiante          Anderson       <NA>
#> 3061              Simeyon Robinson        Simeyon          Robinson       <NA>
#> 3062                Julius Peppers         Julius           Peppers 1980-01-18
#> 3063                Anthony Zettel        Anthony            Zettel 1992-08-09
#> 3064                 Pasoni Tasini         Pasoni            Tasini 1993-05-31
#> 3065                  Casey Sayles          Casey            Sayles 1995-09-04
#> 3066               Mitchell Loewen       Mitchell            Loewen 1993-02-14
#> 3067                Hau'oli Kikaha        Hau'oli            Kikaha 1992-07-24
#> 3068             Hercules Mata'afa       Hercules          Mata'afa 1995-09-18
#> 3069                 Destiny Vaeao        Destiny             Vaeao 1994-01-15
#> 3070                 Kevin Wilkins          Kevin           Wilkins 1995-04-10
#> 3071                Derrick Shelby        Derrick            Shelby 1989-03-04
#> 3072                     Peli Anau           Peli              Anau 1993-10-26
#> 3073                Izaah Lunsford          Izaah          Lunsford 1993-10-21
#> 3074               Sterling Bailey       Sterling            Bailey 1992-09-13
#> 3075                 Andrew Ankrah         Andrew            Ankrah 1996-12-31
#> 3076                 Kasim Edebali          Kasim           Edebali 1989-08-17
#> 3077                  Chris McCain          Chris            McCain 1991-11-21
#> 3078                 Ezekiel Ansah        Ezekiel             Ansah 1989-05-29
#> 3079                   Eric Cotton           Eric            Cotton 1995-02-28
#> 3080                   Vinny Curry          Vinny             Curry 1988-06-30
#> 3081                Jacquies Smith       Jacquies             Smith 1990-03-18
#> 3082                  Cameron Wake        Cameron              Wake 1982-01-30
#> 3083                 Winston Craig        Winston             Craig 1995-07-25
#> 3084                 Jabaal Sheard         Jabaal            Sheard 1989-05-10
#> 3085                    Ryan Davis           Ryan             Davis 1989-02-24
#> 3086                     Ade Aruna            Ade             Aruna 1994-04-27
#> 3087                Darius Jackson         Darius           Jackson 1994-11-20
#> 3088                  Myquon Stout         Myquon             Stout 1996-02-22
#> 3089                    Wes Horton            Wes            Horton 1990-01-18
#> 3090                Olivier Vernon        Olivier            Vernon 1990-10-07
#> 3091                    Mat Boesen            Mat            Boesen 1995-01-31
#> 3092                Dare Odeyingbo           Dare         Odeyingbo 1996-11-25
#> 3093                 Durrant Miles        Durrant             Miles 1994-11-20
#> 3094                 Robert McCray         Robert            McCray 1996-03-24
#> 3095                   Shakir Soto         Shakir              Soto 1994-02-12
#> 3096                 Karter Schult         Karter            Schult 1993-12-21
#> 3097                Caleb Brantley          Caleb          Brantley 1994-09-02
#> 3098                  Dante Sawyer          Dante            Sawyer 1994-12-17
#> 3099               Immanuel Turner       Immanuel            Turner 1996-12-16
#> 3100                 Keionta Davis        Keionta             Davis 1994-03-01
#> 3101                   Lenny Jones          Lenny             Jones 1991-08-08
#> 3102                  Owen Obasuyi           Owen           Obasuyi 1996-05-07
#> 3103                  Trent Murphy          Trent            Murphy 1990-12-22
#> 3104                   Dion Jordan           Dion            Jordan 1990-03-05
#> 3105               Michael Bennett        Michael           Bennett 1985-11-13
#> 3106               Jonathan Bonner       Jonathan            Bonner 1996-06-17
#> 3107                 Terrence Fede       Terrence              Fede 1991-11-19
#> 3108              Clinton McDonald        Clinton          McDonald 1987-01-06
#> 3109               Garrett Sickels        Garrett           Sickels 1994-09-24
#> 3110            Muhammad Wilkerson       Muhammad         Wilkerson 1989-10-22
#> 3111                 Brandon Banks        Brandon             Banks 1994-07-13
#> 3112                    Joe Ostman            Joe            Ostman 1995-07-12
#> 3113                  Chuck Harris          Chuck            Harris 1997-11-23
#> 3114                      Eric Lee           Eric               Lee 1994-08-06
#> 3115                  Josh Forrest           Josh           Forrest 1992-02-24
#> 3116                 Jarrell Owens        Jarrell             Owens 1994-10-11
#> 3117               Anthony Winbush        Anthony           Winbush 1994-12-18
#> 3118                  Mitch Unrein          Mitch            Unrein 1987-03-25
#> 3119                  Ronald Ollie         Ronald             Ollie 1996-05-19
#> 3120                Armonty Bryant        Armonty            Bryant 1990-05-20
#> 3121                   Pat Afriyie            Pat           Afriyie 1996-07-20
#> 3122                 Albert Havili         Albert            Havili 1995-08-07
#> 3123                    Avery Moss          Avery              Moss 1994-09-16
#> 3124                 Rodney Gunter         Rodney            Gunter 1992-01-19
#> 3125                Myles Humphrey          Myles          Humphrey 1995-09-07
#> 3126                    David King          David              King 1989-12-27
#> 3127                   Chad Thomas           Chad            Thomas 1995-10-12
#> 3128                    Kerry Wynn          Kerry              Wynn 1991-02-12
#> 3129                   Cam Johnson            Cam           Johnson 1990-05-24
#> 3130            Whitney Richardson        Whitney        Richardson 1992-07-26
#> 3131                   Stacy Keely          Stacy             Keely 1995-05-15
#> 3132                  Allen Bailey          Allen            Bailey 1989-03-25
#> 3133                 Jonathan Wynn       Jonathan              Wynn 1995-09-21
#> 3134               Tyrone Crawford         Tyrone          Crawford 1989-11-22
#> 3135                  Evan Perrizo           Evan           Perrizo 1995-05-26
#> 3136               Adrian Clayborn         Adrian          Clayborn 1988-07-06
#> 3137                   Fadol Brown          Fadol             Brown 1993-04-15
#> 3138                 Brian Robison          Brian           Robison 1983-04-27
#> 3139                Claudy Mathieu         Claudy           Mathieu 1993-01-18
#> 3140                 Mathieu Betts        Mathieu             Betts 1995-03-22
#> 3141               Antonio Simmons        Antonio           Simmons 1996-02-10
#> 3142                  Khairi Clark         Khairi             Clark 1994-10-31
#> 3143             Lawrence Marshall       Lawrence          Marshall 1995-02-12
#> 3144                 Anthony Moten        Anthony             Moten 1995-07-12
#> 3145                Richard Jarvis        Richard            Jarvis 1995-04-20
#> 3146              Justin Alexandre         Justin         Alexandre 1997-11-12
#> 3147                Kingsley Opara       Kingsley             Opara 1994-10-13
#> 3148                  Ricky Walker          Ricky            Walker 1996-04-18
#> 3149                   David Parry          David             Parry 1992-03-07
#> 3150              Johnathan Calvin      Johnathan            Calvin 1993-11-28
#> 3151                   Jay Bromley            Jay           Bromley 1992-05-28
#> 3152                 Deadrin Senat        Deadrin             Senat 1994-07-22
#> 3153                   Deyon Sizer          Deyon             Sizer 1996-08-16
#> 3154                Stefan Charles         Stefan           Charles 1988-06-09
#> 3155            Zaycoven Henderson       Zaycoven         Henderson 1994-12-06
#> 3156                   Tom Johnson            Tom           Johnson 1984-08-30
#> 3157                  Datone Jones         Datone             Jones 1990-07-24
#> 3158                   Dontari Poe        Dontari               Poe 1990-08-18
#> 3159                    Josh Banks           Josh             Banks 1994-06-13
#> 3160                    Lewis Neal          Lewis              Neal 1995-05-17
#> 3161                     Josh Fatu           Josh              Fatu 1996-03-08
#> 3162                   John Atkins           John            Atkins 1992-12-21
#> 3163                  Cavon Walker          Cavon            Walker 1994-07-04
#> 3164                 Earl Mitchell           Earl          Mitchell 1987-09-25
#> 3165                      Joey Mbu           Joey               Mbu 1993-03-28
#> 3166            Kalani Vakameilalo         Kalani       Vakameilalo 1996-04-30
#> 3167                  Ryan Glasgow           Ryan           Glasgow 1993-09-30
#> 3168                Sealver Siliga        Sealver            Siliga 1990-04-25
#> 3169                    Billy Winn          Billy              Winn 1989-04-15
#> 3170               DaVonte Lambert        DaVonte           Lambert 1994-06-23
#> 3171           Ricky Jean-Francois          Ricky     Jean-Francois 1986-11-23
#> 3172                  Haloti Ngata         Haloti             Ngata 1984-01-21
#> 3173                Parker Cothren         Parker           Cothren 1994-01-23
#> 3174               Xavier Williams         Xavier          Williams 1992-01-18
#> 3175               Michael Bennett        Michael           Bennett 1993-02-24
#> 3176                    Abry Jones           Abry             Jones 1991-09-08
#> 3177                Garrison Smith       Garrison             Smith 1991-10-09
#> 3178            Kapron Lewis-Moore         Kapron       Lewis-Moore 1990-01-24
#> 3179                Nigel Williams          Nigel          Williams 1993-12-20
#> 3180                  Nazair Jones         Nazair             Jones 1994-12-13
#> 3181                  Toby Johnson           Toby           Johnson 1991-09-01
#> 3182                 Kyle Williams           Kyle          Williams 1983-06-10
#> 3183            Sylvester Williams      Sylvester          Williams 1988-11-21
#> 3184                   Jamie Meder          Jamie             Meder 1991-04-12
#> 3185            Quindarius Thagard     Quindarius           Thagard 1995-12-05
#> 3186                Timmy Jernigan          Timmy          Jernigan 1992-09-24
#> 3187               Julius Warmsley         Julius          Warmsley 1990-05-16
#> 3188                  Jeremy Faulk         Jeremy             Faulk 1993-09-13
#> 3189                   Chris Jones          Chris             Jones 1990-07-12
#> 3190                Boogie Roberts         Boogie           Roberts 1996-01-19
#> 3191                   Geno Atkins           Geno            Atkins 1988-03-28
#> 3192                  Olsen Pierre          Olsen            Pierre 1991-08-27
#> 3193                   Chris Okoye          Chris             Okoye 1996-06-22
#> 3194                  McKay Murphy          McKay            Murphy 1991-09-05
#> 3195                 Tyrunn Walker         Tyrunn            Walker 1990-03-18
#> 3196                 Nathan Bazata         Nathan            Bazata 1994-07-15
#> 3197                 Lord Hyeamang           Lord          Hyeamang 1996-12-31
#> 3198                     P.J. Hall           P.J.              Hall 1995-04-05
#> 3199                 Rickey Hatley         Rickey            Hatley 1994-03-29
#> 3200               Sterling Shippy       Sterling            Shippy 1995-08-24
#> 3201               Jamiyus Pittman        Jamiyus           Pittman 1994-10-23
#> 3202              Du'Vonta Lampkin       Du'Vonta           Lampkin 1997-01-07
#> 3203                 Tito Odenigbo           Tito          Odenigbo 1996-07-13
#> 3204                   Lavon Hooks          Lavon             Hooks 1992-01-23
#> 3205                Damon Harrison          Damon          Harrison 1988-11-29
#> 3206                     Ray Smith            Ray             Smith 1997-01-18
#> 3207                Tracy Sprinkle          Tracy          Sprinkle 1995-04-18
#> 3208                 Elijah Qualls         Elijah            Qualls 1995-02-11
#> 3209                  Corey Liuget          Corey            Liuget 1990-03-18
#> 3210                  A.J. Francis           A.J.           Francis 1990-05-07
#> 3211             DeQuinton Osborne      DeQuinton           Osborne       <NA>
#> 3212                   Daylon Mack         Daylon              Mack 1997-02-23
#> 3213               Kristjan Sokoli       Kristjan            Sokoli 1991-09-24
#> 3214                  Johnny Maxey         Johnny             Maxey 1993-10-19
#> 3215                 Terry Beckner          Terry           Beckner 1997-03-02
#> 3216                   Aziz Shittu           Aziz            Shittu 1994-07-27
#> 3217              Devaroe Lawrence        Devaroe          Lawrence 1992-10-13
#> 3218                   Domata Peko         Domata              Peko 1984-11-27
#> 3219                  Willie Henry         Willie             Henry 1994-03-20
#> 3220                   Daniel Ross         Daniel              Ross 1993-03-15
#> 3221                  Ahtyba Rubin         Ahtyba             Rubin 1986-07-25
#> 3222               Marcus Hardison         Marcus          Hardison 1992-02-14
#> 3223           Adolphus Washington       Adolphus        Washington 1994-11-24
#> 3224                  Greg Gilmore           Greg           Gilmore 1994-11-28
#> 3225                Jon Cunningham            Jon        Cunningham 1995-08-31
#> 3226              Ra'Shede Hageman       Ra'Shede           Hageman 1990-08-08
#> 3227               Cedric Thornton         Cedric          Thornton 1988-06-21
#> 3228                Jullian Taylor        Jullian            Taylor 1995-01-30
#> 3229                Ricky Ali'ifua          Ricky          Ali'ifua 1991-12-02
#> 3230                   Eddy Wilson           Eddy            Wilson 1997-02-13
#> 3231                Caushaud Lyons       Caushaud             Lyons 1993-01-03
#> 3232                     Joey Ivie           Joey              Ivie 1995-01-22
#> 3233               Terrell McClain        Terrell           McClain 1988-07-20
#> 3234                  Kawann Short         Kawann             Short 1989-02-02
#> 3235                   Brian Price          Brian             Price 1994-06-24
#> 3236                 Xavier Cooper         Xavier            Cooper 1991-11-30
#> 3237                   Stacy McGee          Stacy             McGee 1990-01-17
#> 3238                 Reggie Howard         Reggie            Howard 1996-03-26
#> 3239                 Robert Thomas         Robert            Thomas 1991-02-18
#> 3240                   Kaleb Eulls          Kaleb             Eulls 1991-06-28
#> 3241                Walter Palmore         Walter           Palmore 1996-08-09
#> 3242                   Will Sutton           Will            Sutton 1991-10-03
#> 3243                  Darius Kilgo         Darius             Kilgo 1991-12-14
#> 3244                   T.J. Barnes           T.J.            Barnes 1990-06-14
#> 3245                  Kalil Morris          Kalil            Morris 1995-10-22
#> 3246                 Jurrell Casey        Jurrell             Casey 1989-12-05
#> 3247                Treyvon Hester        Treyvon            Hester 1992-09-21
#> 3248             Steven Richardson         Steven        Richardson 1996-02-28
#> 3249                Fredrick Jones       Fredrick             Jones 1996-08-25
#> 3250                   Cory Thomas           Cory            Thomas 1995-08-02
#> 3251                 Tommy Bohanon          Tommy           Bohanon 1990-09-10
#> 3252                  Kyle Coleman           Kyle           Coleman 1993-09-30
#> 3253                   Ricky Ortiz          Ricky             Ortiz 1994-04-15
#> 3254                   Shane Smith          Shane             Smith 1993-08-21
#> 3255                  Joe Kerridge            Joe          Kerridge 1992-09-17
#> 3256              Glenn Gronkowski          Glenn        Gronkowski 1993-03-25
#> 3257                Algernon Brown       Algernon             Brown 1991-11-26
#> 3258                   Khalid Hill         Khalid              Hill 1995-06-04
#> 3259                Jamize Olawale         Jamize           Olawale 1989-04-17
#> 3260                    Jay Prosch            Jay            Prosch 1992-08-21
#> 3261                    Sam Rogers            Sam            Rogers 1995-04-12
#> 3262                Jalston Fowler        Jalston            Fowler 1990-07-26
#> 3263               Derrick Coleman        Derrick           Coleman 1990-10-18
#> 3264                 James Develin          James           Develin 1988-07-23
#> 3265                  George Aston         George             Aston 1996-02-01
#> 3266                    Alan Cross           Alan             Cross 1993-07-02
#> 3267                   Henry Poggi          Henry             Poggi 1994-08-09
#> 3268                     Zach Line           Zach              Line 1990-04-26
#> 3269                Austin Johnson         Austin           Johnson 1989-06-16
#> 3270                    Dan Vitale            Dan            Vitale 1993-10-26
#> 3271               Aaron Ripkowski          Aaron         Ripkowski 1992-12-20
#> 3272               Dimitri Flowers        Dimitri           Flowers 1996-01-20
#> 3273                 Roosevelt Nix      Roosevelt               Nix 1992-03-30
#> 3274               Patrick DiMarco        Patrick           DiMarco 1989-04-30
#> 3275                Elijah Wellman         Elijah           Wellman 1994-09-20
#> 3276                  Chandler Cox       Chandler               Cox 1996-07-29
#> 3277               Malcolm Johnson        Malcolm           Johnson 1992-08-11
#> 3278                   Daniel Marx         Daniel              Marx 1995-10-07
#> 3279                   Luke McNitt           Luke            McNitt 1994-04-20
#> 3280                 Taniela Tupou        Taniela             Tupou 1992-12-13
#> 3281                     Andre Hal          Andre               Hal 1992-05-30
#> 3282                   Keith Tandy          Keith             Tandy 1989-02-12
#> 3283                   David Jones          David             Jones 1993-12-04
#> 3284                Charlie Miller        Charlie            Miller 1994-05-15
#> 3285                   Chris Conte          Chris             Conte 1989-02-23
#> 3286                  JoJo Tillery           JoJo           Tillery 1997-06-22
#> 3287                     Tim Scott            Tim             Scott 1993-01-25
#> 3288              Terrell Williams        Terrell          Williams 1996-06-29
#> 3289                Kentrell Brice       Kentrell             Brice 1994-08-11
#> 3290                    Jack Tocho           Jack             Tocho 1996-02-08
#> 3291                Dymonte Thomas        Dymonte            Thomas 1993-11-30
#> 3292                Jonathon Mincy       Jonathon             Mincy 1992-09-05
#> 3293                  Marwin Evans         Marwin             Evans 1993-04-10
#> 3294                     Nat Berhe            Nat             Berhe 1991-07-06
#> 3295            Jermaine Whitehead       Jermaine         Whitehead 1993-03-12
#> 3296                Kendrick Lewis       Kendrick             Lewis 1988-06-16
#> 3297              Dominick Sanders       Dominick           Sanders 1995-11-17
#> 3298                Isaiah Johnson         Isaiah           Johnson 1992-10-14
#> 3299                   Colin Jones          Colin             Jones 1987-10-27
#> 3300                  Jeremy Clark         Jeremy             Clark 1994-06-29
#> 3301               Abraham Wallace        Abraham           Wallace 1996-06-09
#> 3302                   Corey Moore          Corey             Moore 1993-01-28
#> 3303                  Kurt Coleman           Kurt           Coleman 1988-07-01
#> 3304               Marqueston Huff     Marqueston              Huff 1992-04-06
#> 3305                  Corey Graham          Corey            Graham 1985-07-25
#> 3306                   Earl Thomas           Earl            Thomas 1989-05-07
#> 3307                 Will Blackmon           Will          Blackmon 1984-10-27
#> 3308                    Mike Adams           Mike             Adams 1981-03-24
#> 3309                 Zedrick Woods        Zedrick             Woods 1997-08-03
#> 3310               Micah Hannemann          Micah         Hannemann 1994-08-15
#> 3311                   Lukas Denis          Lukas             Denis 1997-04-13
#> 3312                Darian Stewart         Darian           Stewart 1988-08-04
#> 3313               Brynden Trawick        Brynden           Trawick 1989-10-23
#> 3314               Derrick Kindred        Derrick           Kindred 1993-12-15
#> 3315                 Fish Smithson           Fish          Smithson 1994-03-18
#> 3316                  Rontez Miles         Rontez             Miles 1988-11-25
#> 3317                Lorenzo Jerome        Lorenzo            Jerome 1995-01-20
#> 3318                 Quin Blanding           Quin          Blanding 1996-05-01
#> 3319                Steven Terrell         Steven           Terrell 1990-09-21
#> 3320                Antoine Bethea        Antoine            Bethea 1984-07-27
#> 3321              Marcus Cromartie         Marcus         Cromartie 1990-12-03
#> 3322                     Don Carey            Don             Carey 1987-02-14
#> 3323                   Glover Quin         Glover              Quin 1986-01-15
#> 3324                 Tray Matthews           Tray          Matthews 1994-10-18
#> 3325                Isaiah Johnson         Isaiah           Johnson 1992-05-16
#> 3326                  D'Cota Dixon         D'Cota             Dixon 1994-11-20
#> 3327                Santos Ramirez         Santos           Ramirez 1996-04-22
#> 3328                 Reggie Nelson         Reggie            Nelson 1983-09-21
#> 3329              Michael Mitchell        Michael          Mitchell 1987-06-10
#> 3330                  Jordan Moore         Jordan             Moore 1993-12-13
#> 3331                 Jordan Sterns         Jordan            Sterns 1994-05-28
#> 3332              Tyrice Beverette         Tyrice         Beverette 1995-01-28
#> 3333                  Reshad Jones         Reshad             Jones 1988-02-25
#> 3334               Micah Abernathy          Micah         Abernathy 1997-02-10
#> 3335                 Austin Exford         Austin            Exford 1996-05-16
#> 3336                  Kamrin Moore         Kamrin             Moore 1996-10-01
#> 3337                Robert Blanton         Robert           Blanton 1989-09-07
#> 3338                 Kameron Kelly        Kameron             Kelly 1996-08-19
#> 3339                  Doyin Jibowu          Doyin            Jibowu 1996-07-01
#> 3340                 Jamar Summers          Jamar           Summers 1995-06-14
#> 3341                    Ron Parker            Ron            Parker 1987-08-17
#> 3342                  Kenny Ladler          Kenny            Ladler 1992-06-23
#> 3343                   Leon McQuay           Leon            McQuay 1994-11-21
#> 3344              Johnathan Alston      Johnathan            Alston 1994-10-17
#> 3345                Afolabi Laguda        Afolabi            Laguda 1995-07-28
#> 3346               Austin Droogsma         Austin          Droogsma 1995-03-04
#> 3347                Jordan Agasiva         Jordan           Agasiva 1997-05-21
#> 3348                   Adam Gettis           Adam            Gettis 1988-12-09
#> 3349               Chris Schleuger          Chris         Schleuger 1995-05-12
#> 3350                Brandon Thomas        Brandon            Thomas 1991-02-18
#> 3351                    J.P. Flynn           J.P.             Flynn 1993-08-30
#> 3352                    Jason King          Jason              King 1993-11-18
#> 3353             Garrett Brumfield        Garrett         Brumfield 1996-06-23
#> 3354                   Cameron Lee        Cameron               Lee 1993-12-28
#> 3355                   Mike Person           Mike            Person 1988-05-17
#> 3356                 Ryan Anderson           Ryan          Anderson 1994-12-30
#> 3357                  Nate Theaker           Nate           Theaker 1993-10-06
#> 3358                 Alex Balducci           Alex          Balducci 1994-03-01
#> 3359                Leonard Wester        Leonard            Wester 1993-01-03
#> 3360                 Cody Wichmann           Cody          Wichmann 1992-03-02
#> 3361                 Josh LeRibeus           Josh          LeRibeus 1989-07-02
#> 3362                 Nico Siragusa           Nico          Siragusa 1994-05-10
#> 3363                  Kofi Amichia           Kofi           Amichia 1994-07-29
#> 3364                  Ronald Leary         Ronald             Leary 1989-04-29
#> 3365                  Taylor Hearn         Taylor             Hearn 1996-01-11
#> 3366                   Mike Iupati           Mike            Iupati 1987-05-12
#> 3367                    Josh Allen           Josh             Allen 1991-12-30
#> 3368                Chance Warmack         Chance           Warmack 1991-09-14
#> 3369                     Greg Pyke           Greg              Pyke 1993-06-04
#> 3370                Jermon Bushrod         Jermon           Bushrod 1984-08-19
#> 3371                  Ramon Foster          Ramon            Foster 1986-01-07
#> 3372                 Avery Gennesy          Avery           Gennesy 1994-02-06
#> 3373                 Jerald Foster         Jerald            Foster 1995-09-14
#> 3374                  Zane Beadles           Zane           Beadles 1986-11-19
#> 3375                Bryan Witzmann          Bryan          Witzmann 1990-06-16
#> 3376                Blake Blackmar          Blake          Blackmar 1995-08-03
#> 3377                Tyler Catalina          Tyler          Catalina 1993-01-24
#> 3378                Menelik Watson        Menelik            Watson 1988-12-22
#> 3379                     Beau Nunn           Beau              Nunn 1995-06-12
#> 3380                  Cole Croston           Cole           Croston 1993-12-25
#> 3381                    Josh James           Josh             James 1993-05-09
#> 3382                    Byron Bell          Byron              Bell 1989-01-17
#> 3383                  J.J. Dielman           J.J.           Dielman 1993-12-16
#> 3384                 Brendan Mahon        Brendan             Mahon 1995-01-17
#> 3385                    Evan Smith           Evan             Smith 1986-07-19
#> 3386                    Tyler Marz          Tyler              Marz 1992-09-09
#> 3387                  Clint Boling          Clint            Boling 1989-05-09
#> 3388                     Ryan Groy           Ryan              Groy 1990-09-30
#> 3389                Amini Silatolu          Amini          Silatolu 1988-09-16
#> 3390                  Cameron Hunt        Cameron              Hunt 1994-12-17
#> 3391                   Damien Mama         Damien              Mama 1995-06-27
#> 3392                 Kaleb Johnson          Kaleb           Johnson 1993-02-22
#> 3393                Connor Hilland         Connor           Hilland 1995-06-18
#> 3394              Vladimir Ducasse       Vladimir           Ducasse 1987-10-15
#> 3395                  Rishard Cook        Rishard              Cook 1997-06-25
#> 3396                 Andrew Tiller         Andrew            Tiller 1989-03-13
#> 3397               Jonathan Cooper       Jonathan            Cooper 1990-01-19
#> 3398                Larry Williams          Larry          Williams 1995-02-22
#> 3399                Dorian Johnson         Dorian           Johnson 1994-10-21
#> 3400                   Chris Brown          Chris             Brown 1996-04-26
#> 3401                  Ryan Crozier           Ryan           Crozier 1995-10-31
#> 3402                  Andy Levitre           Andy           Levitre 1986-05-15
#> 3403                  Matt Slauson           Matt           Slauson 1986-02-18
#> 3404               Jeremiah Sirles       Jeremiah            Sirles 1991-08-08
#> 3405               Denver Kirkland         Denver          Kirkland 1994-03-06
#> 3406                    Oni Omoile            Oni            Omoile 1993-06-24
#> 3407                  C.J. Toogood           C.J.           Toogood 1997-03-29
#> 3408               Michael Liedtke        Michael           Liedtke 1992-01-15
#> 3409                 Ian Silberman            Ian         Silberman 1992-10-10
#> 3410                 Jordan McCray         Jordan            McCray 1992-05-31
#> 3411                   Rick Wagner           Rick            Wagner 1989-10-21
#> 3412                   Jamon Brown          Jamon             Brown 1993-03-15
#> 3413              Micah St. Andrew          Micah        St. Andrew 1996-01-10
#> 3414           Christian Westerman      Christian         Westerman 1993-02-23
#> 3415                Spencer Drango        Spencer            Drango 1992-10-15
#> 3416                Kadeem Edwards         Kadeem           Edwards 1991-01-24
#> 3417                 Brandon Fusco        Brandon             Fusco 1988-07-26
#> 3418                Fisayo Awolaja         Fisayo           Awolaja 1996-08-20
#> 3419                  Isaac Asiata          Isaac            Asiata 1992-12-29
#> 3420                  Darius James         Darius             James 1993-11-30
#> 3421                Kevin Pamphile          Kevin          Pamphile 1990-11-27
#> 3422                    Tariq Cole          Tariq              Cole 1996-02-09
#> 3423                    Josh Kline           Josh             Kline 1989-12-29
#> 3424              Maurquice Shakir      Maurquice            Shakir 1993-10-14
#> 3425                 Landon Turner         Landon            Turner 1993-05-15
#> 3426                 John Montelus           John          Montelus 1995-09-08
#> 3427                Darrell Greene        Darrell            Greene 1992-10-29
#> 3428                     Zac Kerin            Zac             Kerin 1991-08-13
#> 3429                   Fred Lauina           Fred            Lauina 1995-05-17
#> 3430                  Givens Price         Givens             Price 1994-10-03
#> 3431                Parker Ehinger         Parker           Ehinger 1992-12-30
#> 3432                   Aaron Evans          Aaron             Evans 1995-01-07
#> 3433                    Rod Taylor            Rod            Taylor 1994-10-26
#> 3434                 Larry Warford          Larry           Warford 1991-06-18
#> 3435                Malcolm Bunche        Malcolm            Bunche 1991-10-16
#> 3436                   Dejon Allen          Dejon             Allen 1994-05-05
#> 3437                 Jordan Morgan         Jordan            Morgan 1994-05-13
#> 3438                 Zack Golditch           Zack          Golditch 1995-02-22
#> 3439              Darrell Williams        Darrell          Williams 1993-03-24
#> 3440                 Ruben Holcomb          Ruben           Holcomb 1994-11-25
#> 3441                Demetrius Knox      Demetrius              Knox 1995-10-23
#> 3442                      Joe Dahl            Joe              Dahl 1993-04-09
#> 3443                   Tyler Jones          Tyler             Jones 1995-10-27
#> 3444                    Kyle Kalis           Kyle             Kalis 1993-12-21
#> 3445                Arie Kouandjio           Arie         Kouandjio 1992-04-23
#> 3446                    Matt Tobin           Matt             Tobin 1990-06-05
#> 3447                  Joseph Cheek         Joseph             Cheek 1992-12-02
#> 3448                  Kitt O'Brien           Kitt           O'Brien 1990-04-29
#> 3449                Austin Pasztor         Austin           Pasztor 1990-11-26
#> 3450                    Joe Lowery            Joe            Lowery 1996-05-20
#> 3451                  Mason Gentry          Mason            Gentry 1994-02-24
#> 3452                     T.J. Lang           T.J.              Lang 1987-09-20
#> 3453                  Patrick Vahe        Patrick              Vahe 1996-04-03
#> 3454                 Kenny Wiggins          Kenny           Wiggins 1988-08-08
#> 3455                     Sam Jones            Sam             Jones 1996-02-21
#> 3456                 Abdul Beecham          Abdul           Beecham 1997-03-05
#> 3457                 Marshal Yanda        Marshal             Yanda 1984-09-15
#> 3458                Salesi Uhatafe         Salesi           Uhatafe 1994-10-25
#> 3459                    Erick Wren          Erick              Wren       <NA>
#> 3460                  Cedrick Lang        Cedrick              Lang 1992-05-12
#> 3461                    John Greco           John             Greco 1985-03-24
#> 3462                  Leon Johnson           Leon           Johnson 1995-06-04
#> 3463                   Josh Walker           Josh            Walker 1991-06-02
#> 3464                   Josh Sitton           Josh            Sitton 1986-06-16
#> 3465                  Shawn Lauvao          Shawn            Lauvao 1987-10-26
#> 3466                   Don Barclay            Don           Barclay 1989-04-18
#> 3467                Brandon Greene        Brandon            Greene 1994-03-01
#> 3468                    John Jerry           John             Jerry 1986-06-14
#> 3469                  Will Pericak           Will           Pericak 1989-12-30
#> 3470                    Kareem Are         Kareem               Are 1994-03-14
#> 3471                    Will House           Will             House 1995-05-14
#> 3472                    Kyle Bosch           Kyle             Bosch 1994-11-11
#> 3473              Jeremy Vujnovich         Jeremy         Vujnovich 1990-10-12
#> 3474                 Hugh Thornton           Hugh          Thornton 1991-06-28
#> 3475                    Jeff Allen           Jeff             Allen 1990-01-08
#> 3476                   Najee Toran          Najee             Toran 1995-11-15
#> 3477                Nick Callender           Nick         Callender 1994-06-16
#> 3478                Dustin Stanton         Dustin           Stanton 1994-02-20
#> 3479                   Nick Easton           Nick            Easton 1992-06-16
#> 3480                Joshua Garnett         Joshua           Garnett 1994-02-21
#> 3481                Chris Gonzalez          Chris          Gonzalez 1995-07-03
#> 3482               Larry Allen Jr.          Larry         Allen Jr. 1996-07-21
#> 3483                   Chris Scott          Chris             Scott 1987-08-04
#> 3484                Josiah Tauaefa         Josiah           Tauaefa 1997-05-05
#> 3485                 Scooby Wright         Scooby            Wright 1994-08-28
#> 3486             Andrew Motuapuaka         Andrew        Motuapuaka 1995-06-29
#> 3487                   Bam Bradley            Bam           Bradley 1994-06-26
#> 3488                   Kyle Queiro           Kyle            Queiro 1994-12-18
#> 3489                Jameer Thurman         Jameer           Thurman 1995-01-20
#> 3490               DeMarquis Gates      DeMarquis             Gates 1996-03-07
#> 3491        Jerrol Garcia-Williams         Jerrol   Garcia-Williams 1993-12-24
#> 3492                Naashon Hughes        Naashon            Hughes 1995-07-15
#> 3493                   Alvin Jones          Alvin             Jones 1994-12-02
#> 3494                Zaire Anderson          Zaire          Anderson 1992-08-18
#> 3495                  Chris Worley          Chris            Worley 1995-09-15
#> 3496                 Marcus Porter         Marcus            Porter 1996-08-30
#> 3497                 Tre' Crawford           Tre'          Crawford 1996-09-06
#> 3498                   Otha Peters           Otha            Peters 1994-02-27
#> 3499                  Brandon Bell        Brandon              Bell 1995-01-09
#> 3500               Raymond Davison        Raymond           Davison 1995-03-25
#> 3501                    Drew Lewis           Drew             Lewis 1995-09-07
#> 3502                  Ahmad Thomas          Ahmad            Thomas 1994-12-15
#> 3503                 Carl Bradford           Carl          Bradford 1992-08-15
#> 3504                  Gary Johnson           Gary           Johnson 1996-08-02
#> 3505                  Adam Bighill           Adam           Bighill 1988-10-16
#> 3506                 Junior Joseph         Junior            Joseph 1994-09-07
#> 3507                Darnell Sankey        Darnell            Sankey 1994-10-11
#> 3508                  Jeff Allison           Jeff           Allison 1997-03-20
#> 3509                Riley Bullough          Riley          Bullough 1993-11-23
#> 3510                  Nyles Morgan          Nyles            Morgan 1996-08-16
#> 3511                     Tre Lamar            Tre             Lamar 1997-10-08
#> 3512              Kendell Beckwith        Kendell          Beckwith 1994-12-02
#> 3513                  Airius Moore         Airius             Moore 1995-11-14
#> 3514               Marquis Flowers        Marquis           Flowers 1992-02-16
#> 3515                 Matt Galambos           Matt          Galambos 1995-03-21
#> 3516                  Anthony Wint        Anthony              Wint 1995-09-14
#> 3517                 Dedrick Young        Dedrick             Young 1996-11-07
#> 3518                  Nigel Harris          Nigel            Harris 1994-12-07
#> 3519                    B.J. Blunt           B.J.             Blunt 1995-04-21
#> 3520                  Trevor Bates         Trevor             Bates 1993-08-28
#> 3521                    Tre Watson            Tre            Watson 1996-07-05
#> 3522                    Joe Dineen            Joe            Dineen 1996-03-26
#> 3523                 Elijah Norris         Elijah            Norris 1994-07-04
#> 3524                 Emmanuel Beal       Emmanuel              Beal 1995-06-26
#> 3525              Antonio Morrison        Antonio          Morrison 1994-12-06
#> 3526             Kentrell Brothers       Kentrell          Brothers 1993-02-08
#> 3527              Keishawn Bierria       Keishawn           Bierria 1995-07-26
#> 3528                  Keith Kelsey          Keith            Kelsey 1995-03-17
#> 3529          Sebastian Janikowski      Sebastian        Janikowski 1978-03-02
#> 3530                     Nick Rose           Nick              Rose 1994-05-05
#> 3531                    Dan Bailey            Dan            Bailey 1988-01-26
#> 3532                   Phil Dawson           Phil            Dawson 1975-01-23
#> 3533                  Travis Coons         Travis             Coons 1992-02-06
#> 3534                   Mike Nugent           Mike            Nugent 1982-03-02
#> 3535              Stephen Hauschka        Stephen          Hauschka 1985-06-29
#> 3536               Matthew McCrane        Matthew           McCrane 1994-09-08
#> 3537                  David Marvin          David            Marvin 1995-04-05
#> 3538                     Jon Brown            Jon             Brown 1992-12-07
#> 3539                  Cole Hedlund           Cole           Hedlund 1995-03-15
#> 3540             Giorgio Tavecchio        Giorgio         Tavecchio 1990-07-16
#> 3541                    Josh Lambo           Josh             Lambo 1990-11-19
#> 3542                 Caleb Sturgis          Caleb           Sturgis 1989-08-09
#> 3543                Marshall Koehn       Marshall             Koehn 1992-08-29
#> 3544                   Kai Forbath            Kai           Forbath 1987-09-02
#> 3545                Roberto Aguayo        Roberto            Aguayo 1994-05-17
#> 3546                Adam Vinatieri           Adam         Vinatieri 1972-12-28
#> 3547            Chandler Catanzaro       Chandler         Catanzaro 1991-02-26
#> 3548                  Connor Barth         Connor             Barth 1986-04-11
#> 3549                   Cody Parkey           Cody            Parkey 1992-02-19
#> 3550                   Blair Walsh          Blair             Walsh 1990-01-08
#> 3551            Stephen Gostkowski        Stephen        Gostkowski 1984-01-28
#> 3552               Taylor Bertolet         Taylor          Bertolet 1992-10-24
#> 3553                   Matt Bryant           Matt            Bryant 1975-05-29
#> 3554                    Nick Novak           Nick             Novak 1981-08-21
#> 3555                  Kaare Vedvik          Kaare            Vedvik 1994-03-16
#> 3556                 Mark Herzlich           Mark          Herzlich 1987-09-01
#> 3557                 Ryan Anderson           Ryan          Anderson 1994-08-12
#> 3558               Jeremiah George       Jeremiah            George 1992-01-24
#> 3559                 Brady Sheldon          Brady           Sheldon 1993-02-23
#> 3560                 Cameron Lynch        Cameron             Lynch 1993-08-04
#> 3561                    Jack Cichy           Jack             Cichy 1995-05-05
#> 3562                  Luke Kuechly           Luke           Kuechly 1991-04-20
#> 3563               Tahir Whitehead          Tahir         Whitehead 1990-04-02
#> 3564                 Cameron Smith        Cameron             Smith 1997-03-26
#> 3565                   Brock Coyle          Brock             Coyle 1990-10-12
#> 3566                 Paul Worrilow           Paul          Worrilow 1990-05-01
#> 3567                  Bruce Carter          Bruce            Carter 1988-02-19
#> 3568                  Lamin Barrow          Lamin            Barrow 1990-11-27
#> 3569                  Mason Foster          Mason            Foster 1989-03-01
#> 3570              Stephone Anthony       Stephone           Anthony 1992-07-28
#> 3571                   Frank Zombo          Frank             Zombo 1987-03-05
#> 3572               Wesley Woodyard         Wesley          Woodyard 1986-07-21
#> 3573                    Chris Frey          Chris              Frey 1995-06-23
#> 3574                  Ramik Wilson          Ramik            Wilson 1992-08-19
#> 3575                Sam Barrington            Sam        Barrington 1990-10-05
#> 3576                 Nathan Stupar         Nathan            Stupar 1988-03-14
#> 3577                  Brian Peters          Brian            Peters 1988-10-31
#> 3578           Josh Harvey-Clemons           Josh    Harvey-Clemons 1994-02-20
#> 3579                  Juwan Foggie          Juwan            Foggie 1995-11-02
#> 3580           Thurston Armbrister       Thurston        Armbrister 1992-12-25
#> 3581                   Josh Martin           Josh            Martin 1991-11-07
#> 3582                Emmanuel Lamur       Emmanuel             Lamur 1989-06-08
#> 3583                 Jatavis Brown        Jatavis             Brown 1994-02-18
#> 3584                 Reggie Hunter         Reggie            Hunter 1994-01-02
#> 3585                  Ramon Humber          Ramon            Humber 1987-08-10
#> 3586                   Erik Walden           Erik            Walden 1985-08-21
#> 3587                    Zach Brown           Zach             Brown 1989-10-23
#> 3588                   Mark Barron           Mark            Barron 1989-10-27
#> 3589                  Korey Toomer          Korey            Toomer 1988-12-09
#> 3590               Jonathan Freeny       Jonathan            Freeny 1989-06-15
#> 3591                   Kiko Alonso           Kiko            Alonso 1990-08-14
#> 3592                 Preston Brown        Preston             Brown 1992-10-27
#> 3593                    David Bass          David              Bass 1990-09-11
#> 3594                    Josh Smith           Josh             Smith 1997-02-25
#> 3595             Lorenzo Alexander        Lorenzo         Alexander 1983-05-31
#> 3596                    Josh Keyes           Josh             Keyes 1993-01-23
#> 3597                Terence Garvin        Terence            Garvin 1991-01-01
#> 3598             Anthony Chickillo        Anthony         Chickillo 1992-12-10
#> 3599                  Will Compton           Will           Compton 1989-09-19
#> 3600                  Arthur Moats         Arthur             Moats 1988-03-14
#> 3601                  Telvin Smith         Telvin             Smith 1991-04-11
#> 3602              Albert McClellan         Albert         McClellan 1986-06-04
#> 3603                Deone Bucannon          Deone          Bucannon 1992-08-30
#> 3604              Dominique Easley      Dominique            Easley 1992-04-28
#> 3605                  Ahmad Brooks          Ahmad            Brooks 1984-03-14
#> 3606                  Trent Harris          Trent            Harris 1995-09-17
#> 3607                    Ben Jacobs            Ben            Jacobs 1988-04-17
#> 3608                   Otaro Alaka          Otaro             Alaka 1996-05-18
#> 3609                  Quart'e Sapp        Quart'e              Sapp 1997-03-08
#> 3610                 Reuben Foster         Reuben            Foster 1994-04-04
#> 3611               Shaquem Griffin        Shaquem           Griffin 1995-07-20
#> 3612              Barkevious Mingo     Barkevious             Mingo 1990-10-04
#> 3613                  Eric Pinkins           Eric           Pinkins 1991-08-07
#> 3614                     Mike Hull           Mike              Hull 1991-05-25
#> 3615                  Jeff Holland           Jeff           Holland 1995-09-27
#> 3616                     Shane Ray          Shane               Ray 1993-05-18
#> 3617                    Darron Lee         Darron               Lee 1994-10-18
#> 3618               Pita Taumoepenu           Pita        Taumoepenu 1994-03-09
#> 3619                Derrick Morgan        Derrick            Morgan 1989-01-06
#> 3620              Brandon Marshall        Brandon          Marshall 1989-09-10
#> 3621                   Nate Palmer           Nate            Palmer 1989-09-23
#> 3622                 Dekoda Watson         Dekoda            Watson 1988-03-03
#> 3623                   Vincent Rey        Vincent               Rey 1987-09-06
#> 3624                Vince Williams          Vince          Williams 1989-12-27
#> 3625                Reggie Gilbert         Reggie           Gilbert 1993-04-01
#> 3626                  Mike Needham           Mike           Needham       <NA>
#> 3627             Ray-Ray Armstrong        Ray-Ray         Armstrong 1991-03-05
#> 3628                  James Hearns          James            Hearns 1993-09-20
#> 3629                  Corey Nelson          Corey            Nelson 1992-04-22
#> 3630                  Andre Branch          Andre            Branch 1989-07-14
#> 3631                   Najee Goode          Najee             Goode 1989-06-04
#> 3632                 Hayes Pullard          Hayes           Pullard 1992-04-18
#> 3633               Lorenzo Mauldin        Lorenzo           Mauldin 1992-10-01
#> 3634        Jamell Garcia-Williams         Jamell   Garcia-Williams 1997-01-24
#> 3635                  Aaron Adeoye          Aaron            Adeoye 1993-08-26
#> 3636               Vontaze Burfict        Vontaze           Burfict 1990-09-24
#> 3637                  Nathan Gerry         Nathan             Gerry 1995-02-23
#> 3638                  Ahmad Gooden          Ahmad            Gooden 1995-10-27
#> 3639                Kamalei Correa        Kamalei            Correa 1994-04-27
#> 3640                 Connor Barwin         Connor            Barwin 1986-10-15
#> 3641                D'Andre Walker        D'Andre            Walker 1997-01-23
#> 3642                  Te'von Coney         Te'von             Coney 1997-06-10
#> 3643                    Zach Vigil           Zach             Vigil 1991-03-28
#> 3644              Christian Miller      Christian            Miller 1996-06-19
#> 3645                Shareef Miller        Shareef            Miller 1997-03-14
#> 3646                  Trevon Young         Trevon             Young 1995-04-01
#> 3647                    Ben Gedeon            Ben            Gedeon 1994-10-16
#> 3648                Emmanuel Smith       Emmanuel             Smith 1995-07-25
#> 3649                     Jake Ryan           Jake              Ryan 1992-02-27
#> 3650               Derrick Johnson        Derrick           Johnson 1982-11-22
#> 3651             Maurice Alexander        Maurice         Alexander 1991-02-16
#> 3652                 Terrell Suggs        Terrell             Suggs 1982-10-11
#> 3653              Martrell Spaight       Martrell           Spaight 1993-08-05
#> 3654               Carlos Thompson         Carlos          Thompson 1992-02-16
#> 3655                     John Timu           John              Timu 1992-08-27
#> 3656                 Devante Downs        Devante             Downs 1995-10-18
#> 3657                    Nick Perry           Nick             Perry 1990-04-12
#> 3658            Ro'Derrick Hoskins     Ro'Derrick           Hoskins 1994-08-23
#> 3659                 Isaiah Irving         Isaiah            Irving 1994-06-09
#> 3660                  Elijah Zeise         Elijah             Zeise 1995-11-28
#> 3661                 Davin Bellamy          Davin           Bellamy 1994-12-27
#> 3662               Kelvin Sheppard         Kelvin          Sheppard 1988-01-02
#> 3663                 Kareem Martin         Kareem            Martin 1992-02-19
#> 3664              Avery Williamson          Avery        Williamson 1992-03-09
#> 3665                 Nigel Bradham          Nigel           Bradham 1989-09-04
#> 3666                 Clay Matthews           Clay          Matthews 1986-05-14
#> 3667                   Leon Jacobs           Leon            Jacobs 1995-10-03
#> 3668                Terrance Smith       Terrance             Smith 1993-05-03
#> 3669                 Mark McLaurin           Mark          McLaurin 1997-04-11
#> 3670               Justin Phillips         Justin          Phillips 1995-10-10
#> 3671                 Gerald Hodges         Gerald            Hodges 1991-01-17
#> 3672                    Ben Heeney            Ben            Heeney 1992-05-13
#> 3673                  B.J. Goodson           B.J.           Goodson 1993-05-29
#> 3674              Mychal Kendricks         Mychal         Kendricks 1990-09-28
#> 3675                  Thomas Davis         Thomas             Davis 1983-03-22
#> 3676                      Sean Lee           Sean               Lee 1986-07-22
#> 3677                James Crawford          James          Crawford 1994-12-02
#> 3678                D.J. Alexander           D.J.         Alexander 1991-09-30
#> 3679               Craig Robertson          Craig         Robertson 1988-02-11
#> 3680               Jordan Williams         Jordan          Williams 1993-03-23
#> 3681                   Brooks Reed         Brooks              Reed 1987-02-28
#> 3682                 James Burgess          James           Burgess 1994-03-09
#> 3683                  Tim Williams            Tim          Williams 1993-11-12
#> 3684                  Brett Taylor          Brett            Taylor 1994-08-08
#> 3685               Chase Middleton          Chase         Middleton 1997-03-24
#> 3686                  Donald Payne         Donald             Payne 1994-07-12
#> 3687                Jermaine Grace       Jermaine             Grace 1993-11-08
#> 3688               Chris Covington          Chris         Covington 1996-01-03
#> 3689                   Bryce Hager          Bryce             Hager 1992-05-04
#> 3690             Jonathan Anderson       Jonathan          Anderson 1991-10-27
#> 3691                  Obum Gwacham           Obum           Gwacham 1991-03-20
#> 3692                    Manti Te'o          Manti              Te'o 1991-01-26
#> 3693                  Brian Orakpo          Brian            Orakpo 1986-07-31
#> 3694             Jonathan Celestin       Jonathan          Celestin 1995-11-21
#> 3695                  Jake Carlock           Jake           Carlock 1996-10-02
#> 3696                   Ketner Kupp         Ketner              Kupp 1996-11-15
#> 3697                    Eli Harold            Eli            Harold 1994-01-20
#> 3698                      Sam Acho            Sam              Acho 1988-09-06
#> 3699                    Todd Davis           Todd             Davis 1992-05-17
#> 3700               Deiontrez Mount      Deiontrez             Mount 1993-02-26
#> 3701                  Ukeme Eligwe          Ukeme            Eligwe 1994-04-27
#> 3702                 Matt Longacre           Matt          Longacre 1991-09-21
#> 3703                   Akeem Ayers          Akeem             Ayers 1989-07-10
#> 3704               Jayrone Elliott        Jayrone           Elliott 1991-11-11
#> 3705                    Deon Lacey           Deon             Lacey 1990-07-18
#> 3706                  Kyle Emanuel           Kyle           Emanuel 1991-08-16
#> 3707                 James Onwualu          James           Onwualu 1994-09-04
#> 3708                  Ryan Shazier           Ryan           Shazier 1992-09-06
#> 3709                   Aaron Lynch          Aaron             Lynch 1993-03-08
#> 3710                     Jon Condo            Jon             Condo 1981-08-26
#> 3711                L.P. LaDouceur           L.P.         LaDouceur 1981-03-13
#> 3712                   John Denney           John            Denney 1978-12-13
#> 3713                    Kyle Vasey           Kyle             Vasey 1996-04-20
#> 3714                    Mike Windt           Mike             Windt 1986-05-29
#> 3715                   Zak DeOssie            Zak           DeOssie 1984-05-25
#> 3716                 Nick Sundberg           Nick          Sundberg 1987-07-29
#> 3717                Hunter Bradley         Hunter           Bradley 1994-05-21
#> 3718                    Dan Godsil            Dan            Godsil 1996-08-19
#> 3719                Austin Cutting         Austin           Cutting 1996-10-27
#> 3720                    Cole Mazza           Cole             Mazza 1995-02-14
#> 3721               Kevin McDermott          Kevin         McDermott 1990-01-12
#> 3722                  Tanner Carew         Tanner             Carew 1995-10-04
#> 3723                   Drew Ferris           Drew            Ferris 1992-03-07
#> 3724                   John Wirtel           John            Wirtel 1995-08-24
#> 3725                Wes Farnsworth            Wes        Farnsworth 1997-04-10
#> 3726                Jeff Overbaugh           Jeff         Overbaugh 1993-11-24
#> 3727               Kameron Canaday        Kameron           Canaday 1993-08-20
#> 3728                   Kyle Nelson           Kyle            Nelson 1986-10-03
#> 3729                  Don Muhlbach            Don          Muhlbach 1981-08-17
#> 3730             Vincent Valentine        Vincent         Valentine 1994-02-23
#> 3731              Ira Savage-Lewis            Ira      Savage-Lewis 1996-02-06
#> 3732                    Deon Simon           Deon             Simon 1990-07-06
#> 3733                Joshua Frazier         Joshua           Frazier 1995-11-06
#> 3734                Phillip Taylor        Phillip            Taylor 1988-04-07
#> 3735                 Gerald Willis         Gerald            Willis 1995-08-23
#> 3736                   Mike Hughes           Mike            Hughes 1996-04-03
#> 3737                  Conor Sheehy          Conor            Sheehy 1996-07-24
#> 3738                  Bryant Jones         Bryant             Jones 1997-04-15
#> 3739               Daryle Banfield         Daryle          Banfield 1997-12-10
#> 3740                 Johnny Dwight         Johnny            Dwight 1995-03-22
#> 3741             Iseoluwapo Jegede     Iseoluwapo            Jegede 1994-05-24
#> 3742                   Mike Ramsay           Mike            Ramsay 1995-03-16
#> 3743                 Dylan Bradley          Dylan           Bradley 1995-02-04
#> 3744           Stevie Tu'ikolovatu         Stevie      Tu'ikolovatu 1991-06-28
#> 3745                Javier Edwards         Javier           Edwards 1996-10-27
#> 3746                Lyndon Johnson         Lyndon           Johnson 1994-05-23
#> 3747           Christian LaCouture      Christian         LaCouture 1994-09-04
#> 3748                 Jay-Tee Tiuli        Jay-Tee             Tiuli 1996-01-14
#> 3749                  Brandon Dunn        Brandon              Dunn 1992-09-05
#> 3750                Austin Maloata         Austin           Maloata 1996-02-11
#> 3751                    Beau Allen           Beau             Allen 1991-11-14
#> 3752               Chunky Clements         Chunky          Clements 1994-12-03
#> 3753                Omarius Bryant        Omarius            Bryant 1994-10-26
#> 3754                 Tyrell Chavis         Tyrell            Chavis 1994-06-15
#> 3755                Brandon Mebane        Brandon            Mebane 1985-01-15
#> 3756                Bijhon Jackson         Bijhon           Jackson 1995-11-06
#> 3757                     Kyle Love           Kyle              Love 1986-11-18
#> 3758             Dontavius Russell      Dontavius           Russell 1995-09-18
#> 3759                Curtis Cothran         Curtis           Cothran 1995-02-24
#> 3760                Trevon Sanders         Trevon           Sanders 1997-04-25
#> 3761                   Miles Brown          Miles             Brown 1997-09-04
#> 3762                  Bennie Logan         Bennie             Logan 1989-12-28
#> 3763               Kendrick Norton       Kendrick            Norton 1997-06-07
#> 3764                    Chad Slade           Chad             Slade 1992-05-04
#> 3765                   R.J. Prince           R.J.            Prince 1995-04-19
#> 3766                   J.R. Sweezy           J.R.            Sweezy 1989-04-08
#> 3767               Kelechi Osemele        Kelechi           Osemele 1989-06-24
#> 3768                   Ben Garland            Ben           Garland 1988-04-06
#> 3769                 Ross Reynolds           Ross          Reynolds 1995-09-14
#> 3770             Stefen Wisniewski         Stefen        Wisniewski 1989-03-22
#> 3771                   John Wetzel           John            Wetzel 1991-07-18
#> 3772                    Joe Looney            Joe            Looney 1990-08-31
#> 3773                David DeCastro          David          DeCastro 1990-01-11
#> 3774                    Ted Larsen            Ted            Larsen 1987-06-13
#> 3775                Corbin Kaufusi         Corbin           Kaufusi 1993-04-12
#> 3776               Javon Patterson          Javon         Patterson 1997-07-08
#> 3777             Marshall Newhouse       Marshall          Newhouse 1988-09-29
#> 3778                    Alex Lewis           Alex             Lewis 1992-04-21
#> 3779                Patrick Omameh        Patrick            Omameh 1989-12-29
#> 3780                 Brian Winters          Brian           Winters 1991-07-10
#> 3781                  Earl Watford           Earl           Watford 1990-06-24
#> 3782              Leo Koloamatangi            Leo      Koloamatangi 1994-05-09
#> 3783                  Jarron Jones         Jarron             Jones 1994-03-11
#> 3784                 Willie Wright         Willie            Wright 1996-02-25
#> 3785                   Zach Fulton           Zach            Fulton 1991-09-23
#> 3786                  Jordan Devey         Jordan             Devey 1988-01-11
#> 3787                     Eric Kush           Eric              Kush 1989-09-09
#> 3788                 Tyrell Crosby         Tyrell            Crosby 1995-09-05
#> 3789                 Dylan Donahue          Dylan           Donahue 1992-08-20
#> 3790                Cayson Collins         Cayson           Collins 1995-11-10
#> 3791                     Jeff Knox           Jeff              Knox 1992-02-22
#> 3792                 Tobenna Okeke        Tobenna             Okeke 1996-07-17
#> 3793                   Steve Longa          Steve             Longa 1994-09-29
#> 3794                   Blair Brown          Blair             Brown 1994-05-27
#> 3795                  James Cowser          James            Cowser 1990-09-13
#> 3796                Kahzin Daniels         Kahzin           Daniels 1995-10-26
#> 3797                 Christian Sam      Christian               Sam 1996-06-07
#> 3798                  Markus Jones         Markus             Jones 1996-01-10
#> 3799                   Chris Peace          Chris             Peace 1996-02-08
#> 3800             Cassanova McKinzy      Cassanova           McKinzy 1992-11-17
#> 3801                Manase Hungalu         Manase           Hungalu 1995-01-04
#> 3802                 Ufomba Kamalu         Ufomba            Kamalu 1992-11-02
#> 3803               Gimel President          Gimel         President 1993-06-04
#> 3804                 Silas Stewart          Silas           Stewart 1995-09-28
#> 3805                  Malik Carney          Malik            Carney 1995-09-21
#> 3806                Xavier Woodson         Xavier           Woodson 1995-08-06
#> 3807                 Chad Meredith           Chad          Meredith 1994-06-21
#> 3808               Bryson Albright         Bryson          Albright 1994-03-15
#> 3809                   Frank Ginda          Frank             Ginda 1997-05-26
#> 3810               Tre'von Johnson        Tre'von           Johnson 1995-02-10
#> 3811                   Marcus Rush         Marcus              Rush 1991-06-19
#> 3812                 Josh Carraway           Josh          Carraway 1994-04-13
#> 3813                   Jeremy Cash         Jeremy              Cash 1992-12-09
#> 3814                KeShun Freeman         KeShun           Freeman 1995-11-10
#> 3815                  Dante Booker          Dante            Booker 1995-10-02
#> 3816                  Curtis Akins         Curtis             Akins 1995-09-28
#> 3817                   Brian Womac          Brian             Womac 1995-01-19
#> 3818                  LaTroy Lewis         LaTroy             Lewis 1993-11-09
#> 3819              Matthew Oplinger        Matthew          Oplinger 1996-02-23
#> 3820                  Richie Brown         Richie             Brown 1994-04-15
#> 3821                Matthew Thomas        Matthew            Thomas 1995-07-21
#> 3822                      JT Jones             JT             Jones 1993-11-12
#> 3823                   Ejuan Price          Ejuan             Price 1993-01-30
#> 3824                    Chris Odom          Chris              Odom 1994-09-16
#> 3825                    E.J. Ejiya           E.J.             Ejiya 1995-10-06
#> 3826                     Deon King           Deon              King 1993-07-02
#> 3827              Kennan Gilchrist         Kennan         Gilchrist 1994-09-16
#> 3828            Sterling Sheffield       Sterling         Sheffield 1996-11-30
#> 3829                 Colton Jumper         Colton            Jumper 1994-11-26
#> 3830               Jesse Aniebonam          Jesse         Aniebonam 1996-01-05
#> 3831                  Jamey Mosley          Jamey            Mosley 1996-03-28
#> 3832                  Joey Alfieri           Joey           Alfieri 1996-03-06
#> 3833                 Garret Dooley         Garret            Dooley 1994-12-01
#> 3834              Jaboree Williams        Jaboree          Williams 1996-01-29
#> 3835         Bryson Allen-Williams         Bryson    Allen-Williams 1996-10-15
#> 3836                    Koa Farmer            Koa            Farmer 1996-02-21
#> 3837                 Brandon Chubb        Brandon             Chubb 1993-10-21
#> 3838                 Landis Durham         Landis            Durham 1997-08-31
#> 3839               Danny Ezechukwu          Danny         Ezechukwu 1994-12-07
#> 3840                 Josh Corcoran           Josh          Corcoran 1997-04-05
#> 3841                Michael Onuoha        Michael            Onuoha 1993-06-29
#> 3842                   Gabe Martin           Gabe            Martin 1992-06-05
#> 3843                 Aaron Wallace          Aaron           Wallace 1993-07-08
#> 3844                  Vontae Diggs         Vontae             Diggs 1995-11-07
#> 3845                  D'Juan Hines         D'Juan             Hines 1994-09-13
#> 3846                Anthony Stubbs        Anthony            Stubbs 1996-08-09
#> 3847                   Kyle Wilson           Kyle            Wilson 1995-11-02
#> 3848                 Hunter Dimick         Hunter            Dimick 1993-10-29
#> 3849                 Greer Martini          Greer           Martini 1995-06-06
#> 3850                   Warren Long         Warren              Long 1995-03-11
#> 3851                  David Kenney          David            Kenney 1995-02-06
#> 3852                  Azeem Victor          Azeem            Victor 1995-09-19
#> 3853                 Sione Teuhema          Sione           Teuhema 1995-09-28
#> 3854                Freddie Bishop        Freddie            Bishop 1990-02-25
#> 3855                  Dadi Nicolas           Dadi           Nicolas 1992-09-29
#> 3856                 Asantay Brown        Asantay             Brown 1995-02-03
#> 3857             Antwione Williams       Antwione          Williams 1993-05-26
#> 3858                    Nick Usher           Nick             Usher 1995-01-22
#> 3859                 Terrill Hanks        Terrill             Hanks 1995-12-07
#> 3860           Farrington Huguenin     Farrington          Huguenin 1992-05-08
#> 3861                    Davis Tull          Davis              Tull 1991-11-12
#> 3862                Reshard Cliett        Reshard            Cliett 1992-04-29
#> 3863                   Chase Allen          Chase             Allen 1993-08-29
#> 3864                 Deshaun Davis        Deshaun             Davis 1995-12-31
#> 3865                 Vosean Joseph         Vosean            Joseph 1997-12-15
#> 3866                Corey Thompson          Corey          Thompson 1993-12-23
#> 3867               Jerod Fernandez          Jerod         Fernandez 1994-05-26
#> 3868                Pete Robertson           Pete         Robertson 1992-12-12
#> 3869                  Eric Nzeocha           Eric           Nzeocha 1993-04-01
#> 3870               Vontarrius Dora     Vontarrius              Dora 1992-09-07
#> 3871                 Chris Landrum          Chris           Landrum 1992-09-14
#> 3872                   Keion Adams          Keion             Adams 1995-06-08
#> 3873                   Alex Bazzie           Alex            Bazzie 1990-08-05
#> 3874               Tony Washington           Tony        Washington 1992-06-01
#> 3875              Nicholas Grigsby       Nicholas           Grigsby 1992-07-02
#> 3876                    Jason Hall          Jason              Hall 1996-05-16
#> 3877                    Jacob Pugh          Jacob              Pugh 1995-09-22
#> 3878                  Joel Lanning           Joel           Lanning 1994-11-18
#> 3879                Antonio Garcia        Antonio            Garcia 1993-12-10
#> 3880                   Brent Qvale          Brent             Qvale 1991-03-11
#> 3881                  Kyle Meadows           Kyle           Meadows 1994-11-03
#> 3882                  Austin Fleer         Austin             Fleer 1995-06-01
#> 3883               Roubbens Joseph       Roubbens            Joseph 1994-12-21
#> 3884                     Dino Boyd           Dino              Boyd 1996-09-02
#> 3885                Garrett McGhin        Garrett            McGhin 1994-10-13
#> 3886                 Dillon Gordon         Dillon            Gordon 1993-09-02
#> 3887                 Brandon Smith        Brandon             Smith 1994-09-12
#> 3888                     Mo Porter             Mo            Porter 1995-03-29
#> 3889                Donnell Greene        Donnell            Greene 1995-11-09
#> 3890                  Chris Durant          Chris            Durant 1995-12-19
#> 3891                   Jake Campos           Jake            Campos 1994-10-18
#> 3892                William Poehls        William            Poehls 1991-11-27
#> 3893                    John Kling           John             Kling 1993-07-09
#> 3894                 Justin Senior         Justin            Senior 1994-07-08
#> 3895                   Brant Weiss          Brant             Weiss 1995-06-08
#> 3896               Travis Vornkahl         Travis          Vornkahl 1995-11-05
#> 3897                    Jylan Ware          Jylan              Ware 1993-10-16
#> 3898               Toby Weathersby           Toby        Weathersby 1996-09-19
#> 3899               Blaine Clausell         Blaine          Clausell 1992-01-31
#> 3900                     Matt Diaz           Matt              Diaz 1994-09-20
#> 3901            Quinterrius Eatmon    Quinterrius            Eatmon 1991-12-04
#> 3902                 Ryker Mathews          Ryker           Mathews 1992-11-28
#> 3903              Randin Crecelius         Randin         Crecelius 1996-08-05
#> 3904                     Ryan Pope           Ryan              Pope 1996-10-17
#> 3905                   Zach Sterup           Zach            Sterup 1992-05-14
#> 3906                   Tommy Doles          Tommy             Doles 1995-12-25
#> 3907                Riley Mayfield          Riley          Mayfield 1995-04-01
#> 3908               Vinston Painter        Vinston           Painter 1989-10-11
#> 3909                Andreas Knappe        Andreas            Knappe 1991-06-02
#> 3910               Laurence Gibson       Laurence            Gibson 1991-03-19
#> 3911                     A.T. Hall           A.T.              Hall 1996-01-26
#> 3912                  Justin Evans         Justin             Evans 1995-08-19
#> 3913                 Brian Wallace          Brian           Wallace 1996-02-03
#> 3914                   Brock Ruble          Brock             Ruble 1996-01-07
#> 3915               Jamar McGloster          Jamar         McGloster 1995-06-04
#> 3916            Brian Fineanganofo          Brian      Fineanganofo 1995-05-03
#> 3917                   Brad Seaton           Brad            Seaton 1993-11-23
#> 3918                Adam Bisnowaty           Adam         Bisnowaty 1993-12-14
#> 3919                 Damian Prince         Damian            Prince 1996-04-16
#> 3920                   Martez Ivey         Martez              Ivey 1995-07-25
#> 3921                  Kent Perkins           Kent           Perkins 1994-11-19
#> 3922             Andrew Lauderdale         Andrew        Lauderdale 1993-11-22
#> 3923               Kendall Calhoun        Kendall           Calhoun 1994-12-27
#> 3924         Juwann Bushell-Beatty         Juwann    Bushell-Beatty 1996-06-18
#> 3925                Marcus Gilbert         Marcus           Gilbert 1988-02-15
#> 3926                  Cole Gardner           Cole           Gardner 1993-11-11
#> 3927               Martinas Rankin       Martinas            Rankin 1994-10-20
#> 3928                 Bentley Spain        Bentley             Spain 1995-05-02
#> 3929                Jared Machorro          Jared          Machorro 1996-02-24
#> 3930                   Brett Boyko          Brett             Boyko 1992-08-04
#> 3931            George Asafo-Adjei         George       Asafo-Adjei 1997-01-12
#> 3932                    Paul Adams           Paul             Adams 1995-05-17
#> 3933                  Derrick Puni        Derrick              Puni 1994-12-13
#> 3934                 Russell Okung        Russell             Okung 1988-10-07
#> 3935                  Blake Camper          Blake            Camper 1996-12-17
#> 3936                   Chidi Okeke          Chidi             Okeke 1996-12-26
#> 3937                  Demar Dotson          Demar            Dotson 1985-10-11
#> 3938                  Steven Moore         Steven             Moore 1993-09-28
#> 3939                Tyler Gauthier          Tyler          Gauthier 1997-06-29
#> 3940               Jaelin Robinson         Jaelin          Robinson 1995-01-08
#> 3941                   Donald Penn         Donald              Penn 1983-04-27
#> 3942              Zachary Crabtree        Zachary          Crabtree 1994-09-16
#> 3943                Marquez Tucker        Marquez            Tucker 1996-09-19
#> 3944                  Tyler Roemer          Tyler            Roemer 1998-03-06
#> 3945                   Matt Kaskey           Matt            Kaskey 1997-03-17
#> 3946                Lukayus McNeil        Lukayus            McNeil 1995-10-13
#> 3947                   Pace Murphy           Pace            Murphy 1994-03-02
#> 3948               Tyree St. Louis          Tyree         St. Louis 1997-08-05
#> 3949                     Sam Young            Sam             Young 1987-06-24
#> 3950                 J'Marcus Webb       J'Marcus              Webb 1988-08-08
#> 3951              Desmond Harrison        Desmond          Harrison 1993-10-08
#> 3952                Dieugot Joseph        Dieugot            Joseph 1994-03-21
#> 3953               Gerhard de Beer        Gerhard           de Beer 1994-07-05
#> 3954                 Rees Odhiambo           Rees          Odhiambo 1992-09-23
#> 3955                  Norman Price         Norman             Price 1994-08-25
#> 3956             Marcus Applefield         Marcus        Applefield 1995-12-15
#> 3957                  Jerry Ugokwe          Jerry            Ugokwe 1994-02-24
#> 3958                 Brian Mihalik          Brian           Mihalik 1992-08-21
#> 3959                Jared Veldheer          Jared          Veldheer 1987-06-14
#> 3960                Brandon Hitner        Brandon            Hitner 1995-05-15
#> 3961               Johnny Townsend         Johnny          Townsend 1995-02-14
#> 3962                    Drew Kaser           Drew             Kaser 1993-02-11
#> 3963                  Brock Miller          Brock            Miller 1991-02-14
#> 3964                Austin Barnard         Austin           Barnard 1995-06-22
#> 3965                 Shane Lechler          Shane           Lechler 1976-08-07
#> 3966                Shane Tripucka          Shane          Tripucka 1995-04-10
#> 3967                 Trevor Daniel         Trevor            Daniel 1994-12-08
#> 3968                Sam Irwin-Hill            Sam        Irwin-Hill 1990-10-10
#> 3969                Colton Schmidt         Colton           Schmidt 1990-10-27
#> 3970              Britton Colquitt        Britton          Colquitt 1985-03-20
#> 3971                  Justin Vogel         Justin             Vogel 1993-10-14
#> 3972                  Donnie Jones         Donnie             Jones 1980-07-05
#> 3973                 Tyler Newsome          Tyler           Newsome 1995-07-14
#> 3974                      Jon Ryan            Jon              Ryan 1981-11-26
#> 3975                 Kasey Redfern          Kasey           Redfern 1991-09-26
#> 3976                   Cory Carter           Cory            Carter 1994-03-05
#> 3977                Marquette King      Marquette              King 1988-10-26
#> 3978                  Ryan Quigley           Ryan           Quigley 1990-01-26
#> 3979                     Matt Darr           Matt              Darr 1992-07-02
#> 3980                   Matt Bosher           Matt            Bosher 1987-10-18
#> 3981                   Hayden Hunt         Hayden              Hunt 1993-06-09
#> 3982                  Colby Wadman          Colby            Wadman 1995-04-19
#> 3983                   Chris Jones          Chris             Jones 1989-07-21
#> 3984                     Matt Wile           Matt              Wile 1992-06-20
#> 3985                  Ian Berryman            Ian          Berryman 1996-06-01
#> 3986                    Jeff Locke           Jeff             Locke 1989-09-27
#> 3987                    Ryan Allen           Ryan             Allen 1990-02-28
#> 3988                 Manny Wilkins          Manny           Wilkins 1995-11-05
#> 3989                 Cardale Jones        Cardale             Jones 1992-09-29
#> 3990                  Kyle Shurmur           Kyle           Shurmur 1996-11-06
#> 3991                 Connor Jessop         Connor            Jessop       <NA>
#> 3992                  Austin Davis         Austin             Davis 1989-06-02
#> 3993                Brock Osweiler          Brock          Osweiler 1990-11-22
#> 3994                   Bryce Petty          Bryce             Petty 1991-05-31
#> 3995                  Landry Jones         Landry             Jones 1989-04-04
#> 3996                   Jake Rudock           Jake            Rudock 1993-01-21
#> 3997                 Devlin Hodges         Devlin            Hodges 1996-04-12
#> 3998               Quinton Flowers        Quinton           Flowers 1994-12-02
#> 3999               Brandon Silvers        Brandon           Silvers 1994-05-09
#>      height weight                        college
#> 1        71    190                     Washington
#> 2        72    189                           Duke
#> 3        72    188           South Carolina State
#> 4        71    185                        Arizona
#> 5        71    197                        Clemson
#> 6        71    179                 Oklahoma State
#> 7        71    187                        Florida
#> 8        70    186         Southeastern Louisiana
#> 9        71    205                     Cincinnati
#> 10       72    192                    North Texas
#> 11       71    190               Washington State
#> 12       70    192                   Fresno State
#> 13       72    215                           Ohio
#> 14       73    195                        Alabama
#> 15       70    207                            SMU
#> 16       70    195                     Washington
#> 17       76    281                 Boston College
#> 18       78    341                       Oklahoma
#> 19       77    288                      Wisconsin
#> 20       79    280                       Marshall
#> 21       76    280                        Georgia
#> 22       75    295                         Temple
#> 23       78    282                       Stanford
#> 24       77    292                           UCLA
#> 25       75    335                       Kentucky
#> 26       77    330                           Utah
#> 27       74    308                            LSU
#> 28       77    288                     Penn State
#> 29       70    201                Central Florida
#> 30       72    232                    Sioux Falls
#> 31       75    256                            USC
#> 32       74    214                     Washington
#> 33       74    265                           Duke
#> 34       76    260                           Utah
#> 35       73    236                          Texas
#> 36       73    210               Georgia Southern
#> 37       73    230                    Boise State
#> 38       75    260                       Missouri
#> 39       77    265                       Syracuse
#> 40       76    260                          Tulsa
#> 41       74    236                         Oregon
#> 42       76    238                        Clemson
#> 43       77    232                San Diego State
#> 44       79    319                        Houston
#> 45       74    303                    Boise State
#> 46       74    315                  Florida State
#> 47       75    308                            SMU
#> 48       77    314                   Morgan State
#> 49       77    315                     Cincinnati
#> 50       76    284                   Oregon State
#> 51       77    311                       Syracuse
#> 52       79    300                       Syracuse
#> 53       76    309                        Florida
#> 54       75    306                     Miami (FL)
#> 55       77    307                        Florida
#> 56       75    202                       Syracuse
#> 57       73    185                     Pittsburgh
#> 58       73    212                          Texas
#> 59       70    207                       Oklahoma
#> 60       72    202                     Penn State
#> 61       72    225           North Carolina State
#> 62       69    210                        Fordham
#> 63       69    207                  Arizona State
#> 64       73    233                     Pittsburgh
#> 65       72    221                 South Carolina
#> 66       72    202               Central Michigan
#> 67       76    321                       Virginia
#> 68       77    250                       Stanford
#> 69       76    255               Western Kentucky
#> 70       75    256                     Washington
#> 71       78    260                San Diego State
#> 72       77    262                           <NA>
#> 73       76    252                      Minnesota
#> 74       76    240                      Tennessee
#> 75       79    230                      Milwaukee
#> 76       76    207                        Georgia
#> 77       67    173                    Wake Forest
#> 78       76    206                     Texas Tech
#> 79       74    204            Southern California
#> 80       70    175                     Washington
#> 81       67    180                         Purdue
#> 82       69    188                  Massachusetts
#> 83       73    212                        Clemson
#> 84       71    200                      Texas A&M
#> 85     <NA>     NA                     New Mexico
#> 86       74    298                   Oregon State
#> 87       72    190                San Diego State
#> 88       72    204                           UCLA
#> 89       69    195                    Boise State
#> 90     5-10    190                           None
#> 91       73    195                        Clemson
#> 92       72    210                       Colorado
#> 93       72    191                  Washburn (KS)
#> 94       70    196                     Pittsburgh
#> 95       72    205                        Rutgers
#> 96       72    211                        Georgia
#> 97       70    212                     Ohio State
#> 98       74    225                California (PA)
#> 99       71    185                  Southern Miss
#> 100      72    200                            UCF
#> 101      71    175                  Tusculum (TN)
#> 102      74    195                 Illinois State
#> 103      76    305                        Houston
#> 104      75    290                        Florida
#> 105      77    285                Charleston (WV)
#> 106      75    303                         Auburn
#> 107      75    252                 Oklahoma State
#> 108      77    350                            UAB
#> 109      72    305                        Clemson
#> 110      76    332                     CSU-Pueblo
#> 111      74    309                   Fresno State
#> 112      76    294                          Texas
#> 113      73    230                   Northwestern
#> 114      72    240                 San Jose State
#> 115      75    307                 Boston College
#> 116      69    185               Georgia Southern
#> 117      75    230                   Fresno State
#> 118      75    263                        Buffalo
#> 119      75    230                     Louisville
#> 120      75    255                        Florida
#> 121      73    227                            LSU
#> 122      74    254                       Stanford
#> 123      73    220               Florida Atlantic
#> 124      71    225                         Auburn
#> 125      75    275                    Wake Forest
#> 126      76    268                     Notre Dame
#> 127      76    253               Prairie View A&M
#> 128      73    235                           Rice
#> 129      74    215                           Yale
#> 130      75    263                   Pennsylvania
#> 131      73    224                         Auburn
#> 132      75    300                       Stanford
#> 133      77    320                   Old Dominion
#> 134      78    301                        Indiana
#> 135      77    320                       Michigan
#> 136      77    324               Western Michigan
#> 137      75    301              Appalachian State
#> 138      77    311              Appalachian State
#> 139      75    307                         Temple
#> 140      79    311                  Florida State
#> 141      76    305                         Wesley
#> 142      75    190                    Wake Forest
#> 143      76    235                            SMU
#> 144      76    217                 Boston College
#> 145      74    227                            USC
#> 146      78    234                       Arkansas
#> 147      75    220                        Alabama
#> 148      76    226                           UCLA
#> 149      70    229                     Ball State
#> 150      69    220                 South Carolina
#> 151      74    220                      Tennessee
#> 152      73    232                     Pittsburgh
#> 153      73    208                     California
#> 154      77    309                      Texas A&M
#> 155      78    306                     Washington
#> 156      78    246                        Florida
#> 157      76    251                           Duke
#> 158      75    261                           Iowa
#> 159      77    220                     New Mexico
#> 160      77    248                            SMU
#> 161      76    260                 South Carolina
#> 162      76    250                           Yale
#> 163      78    265                       Marshall
#> 164      73    190                        Alabama
#> 165      68    193                       Virginia
#> 166      74    194                  Massachusetts
#> 167      73    202                     California
#> 168     6-3    210                        Georgia
#> 169      73    200                  Arizona State
#> 170      73    181              Northern Illinois
#> 171      72    184                            LSU
#> 172      70    185                           Rice
#> 173      78    290                        Harvard
#> 174      75    313                       Missouri
#> 175      72    197                     Washington
#> 176      73    202                           UNLV
#> 177      69    185                         Temple
#> 178      74    210                       Colorado
#> 179      73    205                  West Virginia
#> 180      69    170               Northern Arizona
#> 181      74    199                            LSU
#> 182      73    210                            USC
#> 183      72    197                        Alabama
#> 184      72    185                            USC
#> 185      71    178                        Alabama
#> 186      76    199                       Kentucky
#> 187      71    212                       Oklahoma
#> 188      68    176                            TCU
#> 189      73    215                            SMU
#> 190      72    191                  South Florida
#> 191      71    210                       Stanford
#> 192      71    207                Tennessee State
#> 193      73    210                          Texas
#> 194      72    205                  Virginia Tech
#> 195      70    209                           Iowa
#> 196      80    300                     Miami (FL)
#> 197      77    285                     Cincinnati
#> 198      75    293                      Texas A&M
#> 199      75    304                     Texas Tech
#> 200      73    299                    Chattanooga
#> 201      75    314                      Tennessee
#> 202      77    311                       Arkansas
#> 203      73    336              Missouri Southern
#> 204      74    350                 Louisiana Tech
#> 205      75    311                          Maine
#> 206      75    256                       Michigan
#> 207     6-1    196                     New Mexico
#> 208      76    310                       Oklahoma
#> 209      77    344              Mississippi State
#> 210      78    357                        Georgia
#> 211      73    183                          Texas
#> 212      77    251                     Penn State
#> 213      75    270                     Notre Dame
#> 214      73    227           South Carolina State
#> 215      75    240                           Iowa
#> 216      75    265              Mississippi State
#> 217      72    232                            LSU
#> 218      75    270                        Georgia
#> 219      73    240                         Auburn
#> 220      77    275                 Louisiana Tech
#> 221      75    242                        Houston
#> 222      75    247                     Ohio State
#> 223      72    232                  Northern Iowa
#> 224      74    229             North Dakota State
#> 225      74    248                        Georgia
#> 226      76    315                      Wisconsin
#> 227      76    308                     California
#> 228      77    304                     Holy Cross
#> 229      77    325                        Alabama
#> 230      81    277                           Army
#> 231      78    315                      Tennessee
#> 232      73    222                       Nebraska
#> 233     6-1    206               Western Michigan
#> 234      74    201                      San Diego
#> 235      73    196                           Utah
#> 236      74    212                     Louisville
#> 237     6-1    230                  Northern Iowa
#> 238      68    206                  Florida State
#> 239      74    231                  Florida State
#> 240      72    220                            BYU
#> 241      73    238                        Rutgers
#> 242      70    214                     Ohio State
#> 243      70    200                 Oklahoma State
#> 244      72    213           Saginaw Valley State
#> 245      75    230                            UCF
#> 246      78    315                     Notre Dame
#> 247      79    320                     Pittsburgh
#> 248      78    343                        Florida
#> 249      77    256                       Oklahoma
#> 250      79    251                       Virginia
#> 251      77    249                 San Jose State
#> 252      78    263                           UTEP
#> 253      76    270                       Delaware
#> 254     6-4    250              Appalachian State
#> 255      76    220                     Notre Dame
#> 256      73    211                        Clemson
#> 257      71    193                            SMU
#> 258      69    180                       Oklahoma
#> 259      71    191               Tennessee-Martin
#> 260      71    195                 Oklahoma State
#> 261      76    199                     Ohio State
#> 262      74    210                      Minnesota
#> 263      71    210                          Texas
#> 264      78    305                       Missouri
#> 265      71    192                Louisiana State
#> 266      73    205                       Virginia
#> 267      71    180                     Pittsburgh
#> 268      72    193                     Notre Dame
#> 269      69    183                        Buffalo
#> 270      72    179                        Alabama
#> 271      72    206             Jacksonville State
#> 272      72    175                            USC
#> 273      71    192                    Weber State
#> 274      72    200                     Pittsburgh
#> 275      70    191                     Miami (FL)
#> 276      72    197                           Iowa
#> 277      72    191                   Oregon State
#> 278      72    205              Appalachian State
#> 279      75    281                    Wake Forest
#> 280      74    254                Texas Christian
#> 281      78    266                     Miami (FL)
#> 282      78    260                           Iowa
#> 283      75    255                  South Florida
#> 284      75    260                           Troy
#> 285      75    270                        Florida
#> 286      78    265                     No College
#> 287      74    315                           Utah
#> 288      75    325                           UCLA
#> 289      75    307                       Stanford
#> 290      74    305               Florida Atlantic
#> 291      76    330                 Louisiana Tech
#> 292      75    300                   Ferris State
#> 293      73    287                        Houston
#> 294      72    244                         Toledo
#> 295      70    183               Georgia Southern
#> 296      77    250                  Virginia Tech
#> 297      72    240                 North Carolina
#> 298      74    240                           Duke
#> 299      72    237                      Texas A&M
#> 300      73    240                     Iowa State
#> 301      73    235                         Temple
#> 302      72    223                 Boston College
#> 303      74    235                            LSU
#> 304      76    325                     Miami (FL)
#> 305      78    313                           Iowa
#> 306      75    329                       Oklahoma
#> 307      77    300                San Diego State
#> 308      78    330                       Oklahoma
#> 309      76    302                     Penn State
#> 310      78    310                        Buffalo
#> 311      77    320                         Temple
#> 312      81    311                  Northern Iowa
#> 313      80    320                     Miami (OH)
#> 314      72    205                  Arizona State
#> 315      74    220                 North Carolina
#> 316      77    237                        Wyoming
#> 317      69    205                           Utah
#> 318      70    195               Georgia Southern
#> 319      72    195             Eastern Washington
#> 320      67    203               Florida Atlantic
#> 321      77    310                  Florida State
#> 322      76    254                    Mississippi
#> 323      74    252                  Bowling Green
#> 324      77    251                 Boston College
#> 325      68    173                        Georgia
#> 326      76    209                  UW-Whitewater
#> 327      72    191                       Maryland
#> 328      72    190                        Houston
#> 329      74    209                        Wyoming
#> 330      68    174                            SMU
#> 331      71    180                            SMU
#> 332      74    210                            UCF
#> 333      75    201                   Oregon State
#> 334      75    300                    Boise State
#> 335      76    310                         Baylor
#> 336      73    200                 South Carolina
#> 337      70    180                            LSU
#> 338      74    195              Northern Illinois
#> 339      72    190                 South Carolina
#> 340      75    195                     Washington
#> 341      73    195              Southern Illinois
#> 342      73    205                        Florida
#> 343      71    194                     Notre Dame
#> 344      72    190          Florida International
#> 345      72    191                            UCF
#> 346      75    210                         Temple
#> 347      74    200                  West Virginia
#> 348      72    210           North Carolina State
#> 349      71    210                       Ole Miss
#> 350      70    200                         Temple
#> 351      70    195                 South Carolina
#> 352      75    220              Southern Illinois
#> 353      75    260          Colorado State-Pueblo
#> 354      78    250             North Carolina A&T
#> 355      76    285                     Miami (FL)
#> 356      74    235                       Ole Miss
#> 357      76    235                         Kansas
#> 358      75    265                         Purdue
#> 359      77    265                     Penn State
#> 360      77    275                            LSU
#> 361      77    250                  Florida State
#> 362      74    248             Southeast Missouri
#> 363      77    250                      Texas A&M
#> 364      76    320                     Penn State
#> 365      77    315                       Kentucky
#> 366      77    320                         Auburn
#> 367      75    305                           Iowa
#> 368      73    330                         Baylor
#> 369      74    239                      Wisconsin
#> 370      75    240               Western Michigan
#> 371      76    350                        Alabama
#> 372      75    315                     Louisville
#> 373      75    303                     Ohio State
#> 374      78    315                     Ohio State
#> 375      76    325                         Auburn
#> 376      78    325                 South Carolina
#> 377      71    205          Western Ontario (CAN)
#> 378      72    202                  Arizona State
#> 379      75    190                     Pittsburgh
#> 380      73    235                         Temple
#> 381      74    260                           UCLA
#> 382      75    235               Washington State
#> 383      75    245                      Minnesota
#> 384      73    230                         Wagner
#> 385      72    230                     Washington
#> 386      73    225                       Maryland
#> 387      74    235                     Notre Dame
#> 388      73    235                        Alabama
#> 389      79    330                           Ohio
#> 390      78    315                 Boston College
#> 391      76    210              Sam Houston State
#> 392      77    245                         Auburn
#> 393      71    210                         Temple
#> 394      75    225                            USC
#> 395      73    210                 Oklahoma State
#> 396      69    196                       Nebraska
#> 397      72    235                         Tulane
#> 398      72    220                  South Florida
#> 399      71    205                       Stanford
#> 400      77    320                Grambling State
#> 401      77    325               Western Michigan
#> 402      77    315                  Florida State
#> 403      78    300                            BYU
#> 404      76    260                        Indiana
#> 405      76    255                         Temple
#> 406      77    245                            LSU
#> 407     6-5    255                     Utah State
#> 408      76    250                     Notre Dame
#> 409      70    190                     Ohio State
#> 410      74    200                            LSU
#> 411      74    215                 Concordia (MN)
#> 412      70    190                 South Carolina
#> 413      75    190                         Temple
#> 414      72    195                      Wisconsin
#> 415      72    210                       Maryland
#> 416      75    205                   Rhode Island
#> 417      75    210                         Temple
#> 418      71    195                     Ball State
#> 419      73    195                  Brigham Young
#> 420      73    202                         Tulane
#> 421      74    208                       Nebraska
#> 422      72    194                        Dubuque
#> 423      69    176                   Kansas State
#> 424      72    206                        Alabama
#> 425      71    185               Central Michigan
#> 426      73    207                        Wyoming
#> 427      72    196                           Utah
#> 428      72    197                     Miami (FL)
#> 429      72    187                     Miami (FL)
#> 430      71    195          Midwestern State (TX)
#> 431      72    202                 William & Mary
#> 432      71    189               Georgia Southern
#> 433      72    193                        Florida
#> 434      70    195                         Oregon
#> 435      76    315                         Auburn
#> 436      75    280                  Florida State
#> 437      80    295                            SMU
#> 438      75    302                       Delaware
#> 439      75    325                  Florida State
#> 440      76    338                            BYU
#> 441      76    335                   Regina (CAN)
#> 442      76    320                   West Georgia
#> 443      77    316               Western Illinois
#> 444      68    175                         Tulane
#> 445      73    237                        Buffalo
#> 446      75    250                        Georgia
#> 447      76    254                           UCLA
#> 448      73    232                        Georgia
#> 449      76    263                          Tulsa
#> 450      73    235               Western Kentucky
#> 451      74    227                Houston Baptist
#> 452      73    235                        Citadel
#> 453      72    234                       Kentucky
#> 454      79    245                       Virginia
#> 455      74    275                    Stony Brook
#> 456      75    267                        Buffalo
#> 457      75    262                   Georgia Tech
#> 458      76    245                 North Carolina
#> 459      75    245                  Florida State
#> 460      75    248                  West Virginia
#> 461      76    237                       Missouri
#> 462      75    226                     Utah State
#> 463      76    327                           Iowa
#> 464      76    322                           Yale
#> 465      77    333                       Missouri
#> 466      77    344                      Texas A&M
#> 467      75    316                   Kansas State
#> 468      77    319                Tennessee State
#> 469      78    322                  Massachusetts
#> 470      76    328                       Arkansas
#> 471      78    326                    Stony Brook
#> 472      77    334                     Notre Dame
#> 473      74    332                     Notre Dame
#> 474      78    320                 Oklahoma State
#> 475      77    217                     Pittsburgh
#> 476      76    223                     Miami (FL)
#> 477      74    219                            TCU
#> 478      78    262                        Arizona
#> 479      76    211                  Virginia Tech
#> 480      75    228                     Ohio State
#> 481      74    239                   Oregon State
#> 482      69    212                  Virginia Tech
#> 483      71    225                       Oklahoma
#> 484      66    191             North Carolina A&T
#> 485      71    224                     Iowa State
#> 486     6-6    247                     Ball State
#> 487      75    246                     Pittsburgh
#> 488      79    251                     Penn State
#> 489      78    260                     Notre Dame
#> 490      76    241                      Princeton
#> 491      79    259                     Miami (FL)
#> 492     6-2    170                   West Georgia
#> 493      69    180                          Texas
#> 494      69    175                 South Carolina
#> 495      75    190                   Rhode Island
#> 496      67    172                     Texas Tech
#> 497      71    173                         Tulane
#> 498      76    218                        Colgate
#> 499      70    180             Eastern Washington
#> 500      70    184                 North Carolina
#> 501      74    220                     Penn State
#> 502      75    316                          Texas
#> 503      75    305                        Georgia
#> 504      76    320                        Georgia
#> 505      72    190                 Michigan State
#> 506      72    202                       Colorado
#> 507      70    190               Western Michigan
#> 508      69    184                    Mississippi
#> 509      72    190               Western Carolina
#> 510      75    203                 Oklahoma State
#> 511      70    185                     Utah State
#> 512      73    199                     Ohio State
#> 513      71    182                       Stanford
#> 514      70    204                        Florida
#> 515      70    200                        Houston
#> 516      71    205                     Ohio State
#> 517      69    186                         Purdue
#> 518      72    205                         Hawaii
#> 519      73    200                    Wake Forest
#> 520      76    253                          Texas
#> 521      76    270               Florida Atlantic
#> 522      77    265                     Ohio State
#> 523      74    251               Eastern Kentucky
#> 524      74    335                       Delaware
#> 525      75    250                 Boston College
#> 526      75    270                   Kansas State
#> 527      76    265                     Notre Dame
#> 528      75    274                         Tulane
#> 529      75    345                       Colorado
#> 530      75    303           North Carolina State
#> 531      75    347                        Clemson
#> 532      72    310                           Iowa
#> 533      75    346                            LSU
#> 534      74    295                     Miami (OH)
#> 535      74    293                        Alabama
#> 536      76    305                      Charlotte
#> 537      76    330                  West Virginia
#> 538      76    302                         Kansas
#> 539      77    330                        Clemson
#> 540      77    294                  East Carolina
#> 541      77    316                      Texas A&M
#> 542      76    312                           UCLA
#> 543      70    195                        Florida
#> 544      72    170                 South Carolina
#> 545      74    215              Appalachian State
#> 546      74    245           North Carolina State
#> 547      72    235                         Purdue
#> 548      73    232                         Baylor
#> 549      72    240                      Villanova
#> 550      75    220                       Maryland
#> 551      75    242                       Oklahoma
#> 552      74    231                 Michigan State
#> 553      74    241                        Wyoming
#> 554      77    250                        Rutgers
#> 555      76    248                     Louisville
#> 556      74    222                     Ohio State
#> 557      73    210                     Cincinnati
#> 558      74    210                     Washington
#> 559      76    221                            LSU
#> 560      74    209                       Arkansas
#> 561      69    175                         Kansas
#> 562      68    206                      Texas A&M
#> 563      71    240                       Oklahoma
#> 564      70    215                        Georgia
#> 565      73    220                       Oklahoma
#> 566      71    211                       Michigan
#> 567      79    305                     Ohio State
#> 568      76    305                        Alabama
#> 569      77    313                           Iowa
#> 570      79    326                        Florida
#> 571      77    252                        Buffalo
#> 572      75    249                            LSU
#> 573      78    260                         Auburn
#> 574      76    258                     Washington
#> 575      76    247                  South Florida
#> 576      68    178                 Louisiana Tech
#> 577      72    205                       Nebraska
#> 578      77    228                  Florida State
#> 579      77    247                    Wake Forest
#> 580      76    215                        Clemson
#> 581      73    200                            LSU
#> 582      74    203                     Pittsburgh
#> 583      73    189                  Southern Miss
#> 584      74    207                       Stanford
#> 585      76    307                        Cornell
#> 586      73    293                     Washington
#> 587      72    192                   Northwestern
#> 588      74    185                            LSU
#> 589      71    183                         Oregon
#> 590      75    215                           Utah
#> 591      73    201               Florida Atlantic
#> 592      71    190                     Ohio State
#> 593      74    198                 Oklahoma State
#> 594      75    208                            LSU
#> 595      72    209                 Boston College
#> 596      71    189                           UCLA
#> 597      74    205                     Miami (FL)
#> 598      75    214                        Alabama
#> 599      72    204                       Colorado
#> 600      71    196                        Georgia
#> 601      71    200                 North Carolina
#> 602      75    258                   Northwestern
#> 603      77    257                            USC
#> 604      77    255                 South Carolina
#> 605      74    265                    Boise State
#> 606      76    272                      Texas A&M
#> 607      74    260                           UCLA
#> 608      78    295                 Michigan State
#> 609      76    303                       Missouri
#> 610      73    293                     Notre Dame
#> 611      77    285                      Tennessee
#> 612      74    296                     Ohio State
#> 613      74    240                           UNLV
#> 614      73    238                       Nebraska
#> 615      77    310                       Arkansas
#> 616      76    314                  Virginia Tech
#> 617      74    320                      Grambling
#> 618      72    180                       Illinois
#> 619      69    195                     Pittsburgh
#> 620      72    222                  West Virginia
#> 621      73    233                        Alabama
#> 622      72    225                            USC
#> 623      75    230                   Kansas State
#> 624      74    215                Grambling State
#> 625      76    233                            LSU
#> 626      73    235                   Northwestern
#> 627      71    230                     Iowa State
#> 628      74    221                     Notre Dame
#> 629      73    238                            BYU
#> 630      76    248                            UCF
#> 631      76    320                         Nevada
#> 632      78    310                   Northwestern
#> 633      77    315                       Maryland
#> 634      77    305       Southeast Missouri State
#> 635      73    328                         Toledo
#> 636      77    313                     Cincinnati
#> 637      76    307                        Alabama
#> 638      78    308                 Michigan State
#> 639      77    190                 South Carolina
#> 640      75    210                      Tennessee
#> 641      73    215                        Houston
#> 642      73    215                       Oklahoma
#> 643      73    187                  Southern Miss
#> 644      69    189                           UCLA
#> 645      70    208                      Tennessee
#> 646      71    212                     Notre Dame
#> 647      71    208                   Oregon State
#> 648      71    218                      Charlotte
#> 649      71    227                        Georgia
#> 650      70    208                  South Florida
#> 651      68    220                      Charlotte
#> 652      71    216                         Toledo
#> 653      76    295                            UAB
#> 654      80    301           South Carolina State
#> 655      77    231                St. Thomas (MN)
#> 656      77    230               Florida Atlantic
#> 657      76    255                       Stanford
#> 658      76    240                      Princeton
#> 659      77    245                        Alabama
#> 660      76    246                     Miami (FL)
#> 661      68    185                 North Carolina
#> 662      71    196                Louisiana State
#> 663      74    204                       Michigan
#> 664      73    198                 Colorado State
#> 665      72    186                         Auburn
#> 666      72    198            Louisiana-Lafayette
#> 667      75    316                      Wisconsin
#> 668      75    301                        Houston
#> 669      73    193                       Virginia
#> 670      73    195                          Akron
#> 671      74    195                        Alabama
#> 672      71    196                         Purdue
#> 673      73    192                       Kentucky
#> 674      76    185                   Oregon State
#> 675      75    190                California (PA)
#> 676      70    195                       Michigan
#> 677     6-0    187                  Alabama State
#> 678      73    197                          Tulsa
#> 679      76    205                 South Carolina
#> 680      71    174                San Diego State
#> 681      76    215                        Clemson
#> 682      73    209                         Purdue
#> 683      74    211                    Boise State
#> 684      72    204                      Texas A&M
#> 685      74    212                     Ohio State
#> 686      77    268                           Iowa
#> 687      76    266                           Ohio
#> 688      75    265                    Boise State
#> 689      75    305                        Clemson
#> 690      77    255                       Nebraska
#> 691      79    295                       Virginia
#> 692      76    255                         Kansas
#> 693      76    360                       Kentucky
#> 694      75    308                            UCF
#> 695      75    292                         Oregon
#> 696      74    280                           UCLA
#> 697      75    300                     Washington
#> 698      74    302                       Oklahoma
#> 699      75    240                            TCU
#> 700      76    315                     Notre Dame
#> 701      77    311                       Nebraska
#> 702      77    308                     Penn State
#> 703      77    298                          Texas
#> 704      71    193                            SMU
#> 705      72    191               Missouri Western
#> 706      76    256                    Boise State
#> 707      75    243                       Nebraska
#> 708      73    235                           Utah
#> 709      75    245                     Penn State
#> 710      73    236                       Oklahoma
#> 711      72    211                        Florida
#> 712      75    233                            LSU
#> 713      74    247                     Ohio State
#> 714      77    305                        Clemson
#> 715      80    304                       Marshall
#> 716      79    320                           <NA>
#> 717      77    243                   Northwestern
#> 718      75    202                     California
#> 719      75    225               Central Michigan
#> 720      75    210                  James Madison
#> 721      74    238              Mississippi State
#> 722      73    220                  West Virginia
#> 723      72    209                        Memphis
#> 724      72    237            Louisiana-Lafayette
#> 725      70    225                    Tiffin (OH)
#> 726      72    215                 South Carolina
#> 727      72    228                     Ohio State
#> 728      69    195                  Southern Miss
#> 729      70    220                      Wisconsin
#> 730      76    292                            TCU
#> 731      77    320                            USC
#> 732      76    320                            LSU
#> 733      78    310                     Texas Tech
#> 734      80    325                    Texas State
#> 735      79    255                     California
#> 736      77    252                       Arkansas
#> 737      77    260                 Oklahoma State
#> 738      77    244                       Stanford
#> 739      77    246                       Michigan
#> 740      74    200                       Illinois
#> 741      74    200                    Boise State
#> 742      74    225                     Ohio State
#> 743      73    210                        Alabama
#> 744      75    220                       Stanford
#> 745      73    198                 Colorado State
#> 746      74    220                           Iowa
#> 747      74    189                       Oklahoma
#> 748      77    206              Mississippi State
#> 749      77    210                     Texas Tech
#> 750      74    196                        Alabama
#> 751      75    312                            LSU
#> 752      74    315                   Regina, Can.
#> 753      71    193                  Florida State
#> 754      69    188                           Rice
#> 755      71    190                  Virginia Tech
#> 756      70    190                    Wake Forest
#> 757      73    200                           Iowa
#> 758      72    185                         Temple
#> 759      74    202                        Alabama
#> 760      70    198                        Florida
#> 761      73    208                        Alabama
#> 762      70    202                          Texas
#> 763      73    180                         Hawaii
#> 764      70    183                        Alabama
#> 765      74    202                 Boston College
#> 766      72    194       Southeast Missouri State
#> 767      73    207                          Texas
#> 768      73    197                        Indiana
#> 769      76    245               Eastern Kentucky
#> 770      75    281                     Ohio State
#> 771      74    290                 Illinois State
#> 772      76    295              Mississippi State
#> 773      77    254                      Tennessee
#> 774      73    292                        Clemson
#> 775      77    295                     Lindenwood
#> 776      77    310                    Connecticut
#> 777      74    311            Louisiana-Lafayette
#> 778      73    307                       Illinois
#> 779      75    309                       Arkansas
#> 780      75    255                          Texas
#> 781      75    315                   Fresno State
#> 782      78    300                            TCU
#> 783      77    312                   Kansas State
#> 784      78    310                       Michigan
#> 785      77    310                            BYU
#> 786      75    201                         Temple
#> 787      73    234                           UCLA
#> 788      75    240                     Ohio State
#> 789      72    244                       Virginia
#> 790      74    235                         Nevada
#> 791      75    238                    Wake Forest
#> 792      77    265                     Vanderbilt
#> 793      75    242                        Georgia
#> 794      75    249                     Vanderbilt
#> 795      73    236                           Iowa
#> 796      76    250                  Indiana State
#> 797      76    275           North Carolina State
#> 798      73    232                           Iowa
#> 799      74    255                      Tennessee
#> 800      75    254                     Ohio State
#> 801      74    235              Northern Colorado
#> 802      75    328                        Wyoming
#> 803      78    296                       Syracuse
#> 804      78    301             North Dakota State
#> 805      75    320           Wisconsin-Whitewater
#> 806     6-3    239                       Nebraska
#> 807      81    317                 Illinois State
#> 808      78    323                  Arizona State
#> 809      77    300                           Utah
#> 810      73    211              Appalachian State
#> 811      74    210                  South Alabama
#> 812      74    201               Washington State
#> 813      74    215                     Louisville
#> 814      76    228                       Missouri
#> 815      74    200                    Boise State
#> 816      71    225                       Missouri
#> 817      68    164                            UCF
#> 818      73    215                      Wisconsin
#> 819      70    220                 North Carolina
#> 820      70    205                     Cincinnati
#> 821      78    315                  Arizona State
#> 822      78    325                       Stanford
#> 823      78    316                       Ole Miss
#> 824      77    300                          Texas
#> 825      77    253                          Drake
#> 826      77    248                           Iowa
#> 827      76    249                           Iowa
#> 828      77    258                       Missouri
#> 829      76    240                           UCLA
#> 830      76    216                            SMU
#> 831      73    193                        Alabama
#> 832      74    215                   Old Dominion
#> 833      73    206                     Penn State
#> 834      76    212                           Utah
#> 835      72    195                    Wake Forest
#> 836      74    209                        Florida
#> 837      69    178                     Penn State
#> 838      75    211                         Auburn
#> 839      68    170                  McNeese State
#> 840      75    320                            SMU
#> 841      77    311                       Arkansas
#> 842      77    300                      Texas A&M
#> 843      74    205                     Penn State
#> 844      73    202                     Ohio State
#> 845      72    180                       Oklahoma
#> 846      73    200                        Alabama
#> 847      71    178                   Kansas State
#> 848      75    210                       Syracuse
#> 849      72    175                           Duke
#> 850      71    203                       Arkansas
#> 851      75    208                  Norfolk State
#> 852      71    188                   Fresno State
#> 853      72    206                     Notre Dame
#> 854      73    185                       Virginia
#> 855      73    206            Louisiana-Lafayette
#> 856      73    206                 Boston College
#> 857      71    197                       Ole Miss
#> 858      73    203                  James Madison
#> 859      72    200                         Oregon
#> 860      78    300                 Michigan State
#> 861      77    297                            LSU
#> 862      77    274                           UTSA
#> 863      75    295                     Washington
#> 864      74    296                  South Florida
#> 865      76    310                        Samford
#> 866      75    285                     Ohio State
#> 867      73    240                     Penn State
#> 868      76    308                     Ohio State
#> 869      78    325                            TCU
#> 870      78    319                     Notre Dame
#> 871      78    315                       Kentucky
#> 872      70    190                        Memphis
#> 873      69    211                       Oklahoma
#> 874      74    221                Southern Oregon
#> 875      76    245                     Notre Dame
#> 876      74    240                        Liberty
#> 877      75    240               Wayne State (MI)
#> 878      72    228                       Oklahoma
#> 879      72    238                         Purdue
#> 880      73    230                      Tennessee
#> 881      71    220                       Marshall
#> 882      72    235                        Alabama
#> 883      75    252                       Missouri
#> 884      73    204                       Maryland
#> 885      77    260                        Clemson
#> 886      76    255                     Notre Dame
#> 887      75    237                        Florida
#> 888      74    265                       Arkansas
#> 889      76    255                     Ohio State
#> 890      73    245                     Notre Dame
#> 891      74    330           North Carolina State
#> 892      74    335                           Utah
#> 893      74    215                           Rice
#> 894      76    233               Eastern Kentucky
#> 895      77    235                       Colorado
#> 896      73    205                         Purdue
#> 897      76    217                     California
#> 898      71    224                     Cincinnati
#> 899      69    211                        Georgia
#> 900      72    224                            BYU
#> 901      71    215                       Kutztown
#> 902      70    212                   Oregon State
#> 903      72    212                   Northwestern
#> 904      81    330                       Arkansas
#> 905      77    331                         Oregon
#> 906      79    312                     Vanderbilt
#> 907      79    316                           Iowa
#> 908      79    318                     Ohio State
#> 909      77    280              Mississippi State
#> 910      77    259                     Notre Dame
#> 911      76    260                     Vanderbilt
#> 912      74    239                     Washington
#> 913      76    230        Minnesota State-Mankato
#> 914      77    255                 Michigan State
#> 915      77    248                           Iowa
#> 916      74    216                     Notre Dame
#> 917      70    195                         Bryant
#> 918      72    197                            USC
#> 919      71    183               Prairie View A&M
#> 920      73    208                      Wisconsin
#> 921      72    180              East Central (OK)
#> 922      75    192                      Texas A&M
#> 923      68    182                     Holy Cross
#> 924      76    296                         Oregon
#> 925      71    189                  Georgia State
#> 926      72    194                        Georgia
#> 927      73    190                 Boston College
#> 928      75    200                     Washington
#> 929      74    209                  West Virginia
#> 930      70    184              Appalachian State
#> 931      72    186                   Kansas State
#> 932      70    196                     Louisville
#> 933      73    187                       Colorado
#> 934      73    202                            TCU
#> 935      71    198                       Maryland
#> 936      72    214                     Penn State
#> 937      72    204                         Baylor
#> 938      74    202                            TCU
#> 939      71    202                        Florida
#> 940      78    296                   Northwestern
#> 941      75    314                           UCLA
#> 942      75    303                       Bucknell
#> 943     6-4    280                        Arizona
#> 944      76    330                        Florida
#> 945      75    304                           Iowa
#> 946      75    313                   Northwestern
#> 947      78    329                       Michigan
#> 948      77    311              Mississippi State
#> 949      75    313                           Duke
#> 950      76    307                       Michigan
#> 951      74    190                     Utah State
#> 952      73    207                       Colorado
#> 953      71    180                           UCLA
#> 954      77    265              Mississippi State
#> 955      77    277                       Michigan
#> 956      75    230                     Ball State
#> 957      74    259              Mississippi State
#> 958      75    252                       Stanford
#> 959      76    257                     Miami (FL)
#> 960      75    233                     Vanderbilt
#> 961      73    241                            TCU
#> 962      76    261                       Illinois
#> 963      76    272                       Kentucky
#> 964      75    232                      Minnesota
#> 965      77    229                     Utah State
#> 966      74    229                           UCLA
#> 967      73    227                 Boston College
#> 968      75    238                       Arkansas
#> 969      74    261                    North Texas
#> 970      76    228                     Iowa State
#> 971      76    301                     Penn State
#> 972      76    305                      Wisconsin
#> 973      77    310                       Ole Miss
#> 974      77    310             North Dakota State
#> 975      77    310                     Ohio State
#> 976      76    310                       Colorado
#> 977      72    217                     New Mexico
#> 978      74    225                     California
#> 979      76    219                     Utah State
#> 980      75    218                       Virginia
#> 981      75    222                            LSU
#> 982      74    217                        Memphis
#> 983      69    208                           UTEP
#> 984      72    247                 Boston College
#> 985      70    204               Florida Atlantic
#> 986      70    214              Mississippi State
#> 987      80    321                         Purdue
#> 988      79    314                  Virginia Tech
#> 989      78    267                           UCLA
#> 990      74    243                  Indiana State
#> 991      77    247                     Notre Dame
#> 992      74    238                     Cincinnati
#> 993      75    246                        Georgia
#> 994      76    252                   Georgia Tech
#> 995      78    270                            BYU
#> 996      77    237                  Indiana State
#> 997      70    195                       Kentucky
#> 998      73    215                   Fresno State
#> 999      71    188                     Penn State
#> 1000     73    220                   Ferris State
#> 1001     74    198                   Alcorn State
#> 1002     77    214                     Notre Dame
#> 1003     69    212                        Clemson
#> 1004     72    219              East Central (OK)
#> 1005     77    227                     Iowa State
#> 1006     76    206                  South Florida
#> 1007     70    184                        Wyoming
#> 1008     73    210                       Colorado
#> 1009     71    182                  James Madison
#> 1010     71    199                      Minnesota
#> 1011     70    200                           Iowa
#> 1012     71    210               Missouri Western
#> 1013     71    190               Central Arkansas
#> 1014     74    205                        Clemson
#> 1015     71    191                         Oregon
#> 1016     73    203                       Stanford
#> 1017     70    190                         Baylor
#> 1018     74    213                       Kentucky
#> 1019     71    205                  Florida State
#> 1020     71    202                       Ole Miss
#> 1021     70    205                   Ferris State
#> 1022     77    250               Youngstown State
#> 1023     74    242                         Temple
#> 1024     75    260                        Georgia
#> 1025     76    272                        Buffalo
#> 1026     76    280                  Florida State
#> 1027     75    263                        Florida
#> 1028     73    266                       Arkansas
#> 1029     75    288                      Texas A&M
#> 1030     74    318                        Arizona
#> 1031     75    290                            TCU
#> 1032     73    296                        Rutgers
#> 1033     75    311                 Oklahoma State
#> 1034     75    316                           Iowa
#> 1035     74    310                       Nebraska
#> 1036     74    305                      Merrimack
#> 1037     72    183                           UCLA
#> 1038     74    230                            TCU
#> 1039     72    235                       Illinois
#> 1040     74    234                       Marshall
#> 1041     74    230               Eastern Illinois
#> 1042     75    269                  James Madison
#> 1043     73    230                     Cincinnati
#> 1044     74    240                 Colorado State
#> 1045     72    230                 Boston College
#> 1046     72    231                 Boston College
#> 1047     73    224                    Chattanooga
#> 1048     74    235                           Iowa
#> 1049     74    223                  Arizona State
#> 1050     70    242                         Baylor
#> 1051     77    322                  Alabama State
#> 1052     75    324                 Oklahoma State
#> 1053     78    315                     Louisville
#> 1054     78    315                       Missouri
#> 1055     75    303                     Pittsburgh
#> 1056     78    327              Northern Illinois
#> 1057     77    313                    Mississippi
#> 1058     78    320                      Texas A&M
#> 1059     79    300                        Harvard
#> 1060     78    335                            TCU
#> 1061     75    315                            UCF
#> 1062     77    300                     Washington
#> 1063     77    305              Northern Illinois
#> 1064     71    194                     Ohio State
#> 1065     76    225                       Stanford
#> 1066     74    215                        Clemson
#> 1067     73    217                  Virginia Tech
#> 1068     76    235                 Louisiana Tech
#> 1069     71    195                            TCU
#> 1070     70    215                       Nebraska
#> 1071     73    224                  Northern Iowa
#> 1072     72    238                         Oregon
#> 1073     68    209                       Ole Miss
#> 1074     80    315                 North Carolina
#> 1075     78    256                    Laval (CAN)
#> 1076     76    243                            UCF
#> 1077     75    245                     Miami (FL)
#> 1078     78    258                         Oregon
#> 1079     74    251                           Navy
#> 1080     73    200                     Cincinnati
#> 1081     71    185                     Texas Tech
#> 1082     75    221                     California
#> 1083     76    215                       Michigan
#> 1084     70    192                     Miami (FL)
#> 1085     75    205                        Georgia
#> 1086     70    183                   Oregon State
#> 1087     71    190              Sam Houston State
#> 1088     74    220                   Georgia Tech
#> 1089     75    215                       Missouri
#> 1090     76    307                        Alabama
#> 1091     72    204                           Ohio
#> 1092     71    192                        Houston
#> 1093     72    190                         Temple
#> 1094     71    205                      Wisconsin
#> 1095     74    195                            BYU
#> 1096     73    218                  Florida State
#> 1097     72    190               Coastal Carolina
#> 1098     69    213                        Florida
#> 1099     70    170                  Massachusetts
#> 1100     69    190                 Valdosta State
#> 1101     74    195                            USC
#> 1102     71    213                 Michigan State
#> 1103     71    210                   Northwestern
#> 1104     70    195               Central Michigan
#> 1105     72    187                           Utah
#> 1106     73    202               Central Arkansas
#> 1107     70    200                         Toledo
#> 1108     72    186              Mississippi State
#> 1109     73    210                           Rice
#> 1110     70    208                 South Carolina
#> 1111     74    261                       Michigan
#> 1112     75    277                     Ohio State
#> 1113     77    248                        Rutgers
#> 1114     76    283                   South Dakota
#> 1115     75    280                     Notre Dame
#> 1116     76    250                     Miami (FL)
#> 1117     78    276                     Vanderbilt
#> 1118     75    252                            TCU
#> 1119     74    302                         Wagner
#> 1120     76    286                     Miami (FL)
#> 1121     73    310                            USC
#> 1122     74    305                 South Carolina
#> 1123     76    315              Albany State (GA)
#> 1124     77    290                     Penn State
#> 1125     79    295                         Oregon
#> 1126     76    310                  West Virginia
#> 1127     78    309                     Penn State
#> 1128     76    306                     Ball State
#> 1129     77    300        Minnesota State-Mankato
#> 1130     73    184                        Georgia
#> 1131     70    183                     Miami (FL)
#> 1132     74    197                  East Carolina
#> 1133     74    241                          Texas
#> 1134     74    230           South Carolina State
#> 1135     72    229                        Houston
#> 1136     74    225                 South Carolina
#> 1137     73    235                       Stanford
#> 1138     73    226                       Michigan
#> 1139     75    224                 Tarleton State
#> 1140     72    235                       Syracuse
#> 1141     74    238                 William & Mary
#> 1142     77    330                     Notre Dame
#> 1143     78    315                         Auburn
#> 1144     77    315                           Utah
#> 1145     79    315               Central Michigan
#> 1146     78    310                         Auburn
#> 1147     72    195                         Hawaii
#> 1148     75    225                          Texas
#> 1149     76    229          Florida International
#> 1150     75    226                           UCLA
#> 1151     76    226                   Prairie View
#> 1152     77    237             North Dakota State
#> 1153     72    218                           Duke
#> 1154     69    196           North Carolina State
#> 1155     70    226                      Wisconsin
#> 1156     72    210                  South Florida
#> 1157     79    315                       Bucknell
#> 1158     77    313                  Alberta (CAN)
#> 1159     79    332                Texas Christian
#> 1160     81    325                    North Texas
#> 1161     74    242                            SMU
#> 1162     77    256                     York (CAN)
#> 1163     78    262               Western Kentucky
#> 1164     77    267                            VCU
#> 1165     76    238                        Georgia
#> 1166     79    244                     Iowa State
#> 1167     75    245              Mississippi State
#> 1168     76    220               Washington State
#> 1169     72    208                     Ohio State
#> 1170     68    178                  Southern Miss
#> 1171     73    200                      Texas A&M
#> 1172     71    180                     Texas Tech
#> 1173     77    224                Charleston (WV)
#> 1174     70    160                            UAB
#> 1175   5-10    212                   LA-Lafayette
#> 1176     73    215                    Malone (OH)
#> 1177     74    214                   Old Dominion
#> 1178     70    183          Florida International
#> 1179     76    223                            USC
#> 1180     72    198                            UCF
#> 1181     74    201            Louisiana-Lafayette
#> 1182     70    175                        Arizona
#> 1183     71    198                       Michigan
#> 1184     69    192                     Utah State
#> 1185     73    195                        Georgia
#> 1186     71    185                     Vanderbilt
#> 1187     70    215                         Auburn
#> 1188     72    204                         Auburn
#> 1189     72    209                        Wyoming
#> 1190     72    209                       Syracuse
#> 1191     73    215                         Kansas
#> 1192     69    179                        Memphis
#> 1193     73    220                     Miami (FL)
#> 1194     75    295                       Arkansas
#> 1195     77    287                       Illinois
#> 1196     77    291                        Florida
#> 1197     76    287                   Georgia Tech
#> 1198     78    255                            UAB
#> 1199     77    262                       Kentucky
#> 1200     77    298                           UTEP
#> 1201     75    264                       Illinois
#> 1202     75    249                        Florida
#> 1203     76    305                 Michigan State
#> 1204     74    320                          Texas
#> 1205     76    320                     Ohio State
#> 1206     75    305                            USC
#> 1207     77    325                      Texas A&M
#> 1208     71    174                            UCF
#> 1209     74    236                         Temple
#> 1210     72    234                     Miami (FL)
#> 1211     73    232                     Texas Tech
#> 1212     72    243                      Minnesota
#> 1213     74    228                   West Georgia
#> 1214     75    240                        Alabama
#> 1215     75    254                            LSU
#> 1216     72    215                   Kansas State
#> 1217     75    255                     Notre Dame
#> 1218     73    244                           UCLA
#> 1219     72    235                         Baylor
#> 1220     75    310                        Clemson
#> 1221     78    309                St. John's (MN)
#> 1222     75    315                 South Carolina
#> 1223     78    325                     Ohio State
#> 1224     78    315                     Miami (FL)
#> 1225     77    311                     Miami (FL)
#> 1226     78    306           North Carolina State
#> 1227     77    330                       Missouri
#> 1228     78    320                        Alabama
#> 1229     77    312                        Florida
#> 1230     77    230              Mississippi State
#> 1231     78    208                        Alabama
#> 1232     78    224                   Oregon State
#> 1233     78    213                        Clemson
#> 1234     74    215                           Iowa
#> 1235     71    220                         Temple
#> 1236     71    193                   Georgia Tech
#> 1237     72    229                     Ohio State
#> 1238     70    210                        Clemson
#> 1239     69    219                 Illinois State
#> 1240     68    208                           Iowa
#> 1241     70    205                      Wisconsin
#> 1242     79    309                       Stanford
#> 1243     76    318                           Iowa
#> 1244     79    320                            LSU
#> 1245     76    245                 Illinois State
#> 1246     77    258                     Ohio State
#> 1247     78    255                       Canisius
#> 1248     78    220          Wisconsin-Platteville
#> 1249     77    252                San Diego State
#> 1250     76    239                        Wyoming
#> 1251     71    170                     Washington
#> 1252     70    190                      San Diego
#> 1253     71    185                        Georgia
#> 1254     74    199                     California
#> 1255     74    206                          Idaho
#> 1256     72    194                        Florida
#> 1257     74    215                    Mississippi
#> 1258     68    179                  West Virginia
#> 1259     73    227                       Colorado
#> 1260     76    198                            LSU
#> 1261     73    210                  Southern Miss
#> 1262     70    186                            UCF
#> 1263     72    189                 Louisiana Tech
#> 1264     71    188                 South Carolina
#> 1265     70    182                 South Carolina
#> 1266     73    195               Middle Tennessee
#> 1267     71    186                        Georgia
#> 1268     72    208               Western Kentucky
#> 1269     72    203                       Virginia
#> 1270     71    205                      Texas A&M
#> 1271     71    183               Missouri Western
#> 1272     74    200                            BYU
#> 1273     74    205                            BYU
#> 1274     70    182                       Nebraska
#> 1275     69    190                            LSU
#> 1276     72    196                           Iowa
#> 1277     76    261                          Texas
#> 1278     77    262                  Florida State
#> 1279     75    261                       Michigan
#> 1280     78    271               Central Arkansas
#> 1281     74    255                       Michigan
#> 1282     75    280                        Georgia
#> 1283     77    280                   Ferris State
#> 1284     72    324               Western Illinois
#> 1285     73    311                         Baylor
#> 1286     76    278                   Missouri S&T
#> 1287     75    313                        Alabama
#> 1288     74    293                     Cincinnati
#> 1289     73    317                  Florida State
#> 1290     78    298              Mississippi State
#> 1291     72    243                        Rutgers
#> 1292     78    310               Eastern Michigan
#> 1293     76    315                       Illinois
#> 1294     76    196                   Georgia Tech
#> 1295     73    217                        Clemson
#> 1296     77    251                 Michigan State
#> 1297     74    235              Mississippi State
#> 1298     74    247                 South Carolina
#> 1299     72    231                           Iowa
#> 1300     74    233                           Iowa
#> 1301     74    238               Middle Tennessee
#> 1302     72    237                       Missouri
#> 1303     75    242                       Oklahoma
#> 1304     73    209                   Kansas State
#> 1305     78    332                         Oregon
#> 1306     77    309                       Oklahoma
#> 1307     78    339                            TCU
#> 1308     77    329                      Tennessee
#> 1309     74    280                           Iowa
#> 1310     77    304           North Carolina State
#> 1311     74    304              Mississippi State
#> 1312     73    194                        Florida
#> 1313     75    227                     Texas Tech
#> 1314     75    215                       Michigan
#> 1315     72    210                            SMU
#> 1316     69    201               Georgia Southern
#> 1317     70    214            Louisiana-Lafayette
#> 1318     70    212               Louisiana-Monroe
#> 1319     71    219                            LSU
#> 1320     68    209                            LSU
#> 1321     77    301                   Oregon State
#> 1322     78    300                  Florida State
#> 1323     80    363                       Oklahoma
#> 1324     77    309                         Auburn
#> 1325     77    235               Louisiana-Monroe
#> 1326     77    245                            BYU
#> 1327     76    240                           Duke
#> 1328     77    256                     Cincinnati
#> 1329     78    230                 Valdosta State
#> 1330     77    260                     Pittsburgh
#> 1331     78    260                       Oklahoma
#> 1332     77    250                         Baylor
#> 1333     73    202                        Florida
#> 1334     72    205                        Clemson
#> 1335     70    187                        Georgia
#> 1336     73    212                  Northern Iowa
#> 1337    6-6    230                 Valdosta State
#> 1338     75    208                        Alabama
#> 1339     75    225                         Baylor
#> 1340     73    201                   Kansas State
#> 1341     70    185                   West Alabama
#> 1342     76    208                         Hawaii
#> 1343     75    215                   Pennsylvania
#> 1344     71    196                       Michigan
#> 1345     69    159                    Boise State
#> 1346     73    208                  Florida State
#> 1347     69    187                            UAB
#> 1348     71    200                  Brigham Young
#> 1349     74    195               Central Arkansas
#> 1350     73    210                      Merrimack
#> 1351     71    201                     Penn State
#> 1352     74    203                     Ohio State
#> 1353     71    213               Florida Atlantic
#> 1354     72    208                     Washington
#> 1355     69    190                     Penn State
#> 1356     71    210                       Maryland
#> 1357     73    212                           Iowa
#> 1358     70    190                        Wyoming
#> 1359     69    184                         Auburn
#> 1360     71    202                           Utah
#> 1361     71    195                    Chattanooga
#> 1362     77    275                    Weber State
#> 1363     77    270                   Northwestern
#> 1364     73    312                     Washington
#> 1365     76    310                        Rutgers
#> 1366     73    280                     Pittsburgh
#> 1367     76    330                        Alabama
#> 1368     76    235                      Texas A&M
#> 1369     76    310                          Brown
#> 1370     74    287                     Cincinnati
#> 1371     71    200                           Utah
#> 1372    6-1    308               New Mexico State
#> 1373     77    258                      Minnesota
#> 1374     72    232                           Utah
#> 1375     76    245        Concordia-St. Paul (MN)
#> 1376     75    245                       Delaware
#> 1377     74    230                 South Carolina
#> 1378     74    253                       Oklahoma
#> 1379     77    240                        Georgia
#> 1380     75    250                      Texas A&M
#> 1381     77    248                         Oregon
#> 1382     74    230             South Dakota State
#> 1383     75    226                      Texas A&M
#> 1384     77    262                        Alabama
#> 1385     73    219                            TCU
#> 1386     75    245                  Azusa Pacific
#> 1387     72    233                        Alabama
#> 1388     77    321                          Maine
#> 1389     75    316                 San Jose State
#> 1390     77    321                            TCU
#> 1391     80    330                      Wisconsin
#> 1392     78    320               Middle Tennessee
#> 1393     78    308                      Wisconsin
#> 1394     79    300                           <NA>
#> 1395     76    306                         Nevada
#> 1396     74    315                        Clemson
#> 1397     79    330                            LSU
#> 1398     76    299                     Washington
#> 1399     76    312                       Oklahoma
#> 1400     79    285                           Iowa
#> 1401     74    303                 Michigan State
#> 1402     70    182                  Georgia State
#> 1403     77    241                   Oregon State
#> 1404     73    200                    Wake Forest
#> 1405     75    220                        Georgia
#> 1406     75    214                       Virginia
#> 1407     71    215                        Georgia
#> 1408     71    212                  Florida State
#> 1409     73    225               Florida Atlantic
#> 1410     68    188            Louisiana-Lafayette
#> 1411     68    208                        Memphis
#> 1412     69    196                     Louisville
#> 1413     70    205                       Maryland
#> 1414     76    245                         Purdue
#> 1415     77    211                            UCF
#> 1416     78    255               Western Kentucky
#> 1417     76    250                 South Carolina
#> 1418     78    262                       Missouri
#> 1419     76    233                         Oregon
#> 1420     72    195                            USC
#> 1421     72    191                     Iowa State
#> 1422     75    224                     Notre Dame
#> 1423     71    198                            LSU
#> 1424     78    219                 Colorado State
#> 1425     73    200                        Florida
#> 1426     73    195                       Cal Poly
#> 1427     74    208             Eastern Washington
#> 1428     68    181                        Florida
#> 1429     69    165                     Louisville
#> 1430     75    301                     Ohio State
#> 1431     71    190                    North Texas
#> 1432     72    200                   Regina (CAN)
#> 1433     70    180                  Florida State
#> 1434     71    190         North Carolina Central
#> 1435     74    196                            BYU
#> 1436     71    200                 Illinois State
#> 1437     70    199                         Kansas
#> 1438     72    206                       Delaware
#> 1439     73    202                      Charlotte
#> 1440     70    201                     Notre Dame
#> 1441     73    207                        Georgia
#> 1442     72    207                  Florida State
#> 1443     74    215                  Florida State
#> 1444     76    240                          Akron
#> 1445     76    280                   Northwestern
#> 1446     78    295                     Notre Dame
#> 1447     76    329                  East Carolina
#> 1448     74    289                           Rice
#> 1449     72    322                 Arkansas State
#> 1450     75    309           North Carolina State
#> 1451     74    305                      Princeton
#> 1452     75    296                       Virginia
#> 1453     75    235                  Florida State
#> 1454     77    308                       Virginia
#> 1455     78    330                Bloomsburg (PA)
#> 1456     75    316                  Bowling Green
#> 1457     74    193                  Florida State
#> 1458     74    205                     Washington
#> 1459     74    234                     Notre Dame
#> 1460     74    244                           Duke
#> 1461     77    280                     Ohio State
#> 1462     72    231                 Oklahoma State
#> 1463     74    216                  West Virginia
#> 1464     74    241                       Oklahoma
#> 1465     72    235                   Indiana (PA)
#> 1466     74    251                            USC
#> 1467     73    230                           Army
#> 1468     74    245                        Houston
#> 1469     75    244                           Iowa
#> 1470     77    245                     Utah State
#> 1471     73    254             Western Washington
#> 1472     75    300                            LSU
#> 1473     75    310                           UCLA
#> 1474     75    301                     Washington
#> 1475     77    298                       Nebraska
#> 1476     74    205                            UAB
#> 1477     72    218                       Missouri
#> 1478     73    224             North Dakota State
#> 1479     78    237                         Oregon
#> 1480     71    212                           UCLA
#> 1481     70    200          Western Colorado (CO)
#> 1482     70    211                       Missouri
#> 1483     72    200                   Northwestern
#> 1484     75    315                   Northwestern
#> 1485     78    322                       Stanford
#> 1486     78    307               Sioux Falls (SD)
#> 1487     79    317                         Toledo
#> 1488     77    314                           Iowa
#> 1489     78    301                       Michigan
#> 1490     76    243                         Oregon
#> 1491     76    246                        Georgia
#> 1492     80    237                        Stetson
#> 1493     77    246                 South Carolina
#> 1494     75    230                     California
#> 1495     71    200                     Pittsburgh
#> 1496     75    215                        Findlay
#> 1497     74    211                     California
#> 1498     72    196                     Ohio State
#> 1499     73    210                      Tennessee
#> 1500     70    190                      San Diego
#> 1501     72    224                       Virginia
#> 1502     73    212                    North Texas
#> 1503     76    218                        Clemson
#> 1504     71    195                        Citadel
#> 1505     76    300                           UCLA
#> 1506     76    295                     Notre Dame
#> 1507     76    310                        Florida
#> 1508     70    200                 South Carolina
#> 1509     73    195                       Illinois
#> 1510     74    197                  Virginia Tech
#> 1511     68    187                 Louisiana Tech
#> 1512     74    200                        Clemson
#> 1513     71    192                     Vanderbilt
#> 1514     72    190                     Washington
#> 1515     69    180                     Notre Dame
#> 1516     72    205                         Tulane
#> 1517     72    220               Central Michigan
#> 1518     74    202                            TCU
#> 1519     72    207                       Missouri
#> 1520     72    198                        Alabama
#> 1521     70    195                     Utah State
#> 1522     72    197             South Dakota State
#> 1523     72    205              Mississippi State
#> 1524     70    190               Florida Atlantic
#> 1525     71    201                      Wisconsin
#> 1526     79    275                     Penn State
#> 1527     75    295                        Alabama
#> 1528     76    265                        Clemson
#> 1529     74    250                        Buffalo
#> 1530     74    246                       Maryland
#> 1531     75    295                      Tennessee
#> 1532     77    255               Eastern Michigan
#> 1533     76    250              Mississippi State
#> 1534     76    291                       Maryland
#> 1535     73    286                       Arkansas
#> 1536     75    340                     Ohio State
#> 1537     75    280                       Stanford
#> 1538     76    334                        Arizona
#> 1539     76    295                       Oklahoma
#> 1540     72    235              Northern Illinois
#> 1541     73    240                      Wisconsin
#> 1542     77    340                 Mars Hill (NC)
#> 1543    6-3    311                       Oklahoma
#> 1544     76    322                       Nebraska
#> 1545     76    335                        Alabama
#> 1546     76    339                            USC
#> 1547     76    321                        Clemson
#> 1548     77    215                         Auburn
#> 1549     72    222                          Akron
#> 1550     72    225                     Greenville
#> 1551     72    217                 Portland State
#> 1552     74    242                  West Virginia
#> 1553     75    228                     Washington
#> 1554     76    240                    Wake Forest
#> 1555     71    240                     Miami (FL)
#> 1556     75    226                  Virginia Tech
#> 1557     75    235                    Wake Forest
#> 1558     76    246              Mississippi State
#> 1559     75    240                 Colorado State
#> 1560     78    313                 North Carolina
#> 1561     77    335                           Utah
#> 1562     75    300               Western Kentucky
#> 1563     76    245                      Texas A&M
#> 1564     75    300                         Oregon
#> 1565     78    305                        Rutgers
#> 1566     76    220           North Carolina State
#> 1567     75    210                   Fresno State
#> 1568     74    225                     Pittsburgh
#> 1569     76    222                         Oregon
#> 1570     70    220                        Alabama
#> 1571     73    211                        Alabama
#> 1572     68    207                  Southern Miss
#> 1573     70    214            Louisiana-Lafayette
#> 1574     71    225                         Auburn
#> 1575     80    320             North Carolina A&T
#> 1576     79    302                           Utah
#> 1577     77    312                        Alabama
#> 1578     80    325                           UCLA
#> 1579     76    265                     Penn State
#> 1580     78    255                   Georgia Tech
#> 1581     75    240                         Beloit
#> 1582     76    250                Louisiana State
#> 1583     73    193                 Oklahoma State
#> 1584     76    215                        Georgia
#> 1585     69    206                     Pittsburgh
#> 1586     74    200                  East Carolina
#> 1587     70    185                        Clemson
#> 1588     70    175                     California
#> 1589     75    212                 South Carolina
#> 1590     72    194                 Oklahoma State
#> 1591     76    311                     Vanderbilt
#> 1592     76    300                  Southern Miss
#> 1593     70    182                     Iowa State
#> 1594     73    205                       Syracuse
#> 1595     73    194                    Connecticut
#> 1596     68    183                         Auburn
#> 1597     71    197                         Auburn
#> 1598     72    195                     Ohio State
#> 1599     73    196                           UTEP
#> 1600     74    193                        Florida
#> 1601     73    203                         Baylor
#> 1602     71    190                      Tennessee
#> 1603     73    196                         Oregon
#> 1604     73    191                          Texas
#> 1605     69    190                     New Mexico
#> 1606     73    205                       Illinois
#> 1607     73    205                           Utah
#> 1608     71    195                        Rutgers
#> 1609     71    190                   Georgia Tech
#> 1610     71    190                  Northern Iowa
#> 1611     72    195                     Miami (FL)
#> 1612     73    245                       Marshall
#> 1613     76    275                 Oklahoma State
#> 1614     77    265                      Texas A&M
#> 1615     78    297                   Ferris State
#> 1616     73    318                       Ole Miss
#> 1617     75    335                        Georgia
#> 1618     76    310                        Clemson
#> 1619     77    295                     Vanderbilt
#> 1620     79    330                        Alabama
#> 1621     76    330                           <NA>
#> 1622     76    322               Middle Tennessee
#> 1623     76    335                        Georgia
#> 1624     71    197                     New Mexico
#> 1625     76    242                      Wisconsin
#> 1626     75    246                      Wisconsin
#> 1627     73    230                            LSU
#> 1628     73    225                        Memphis
#> 1629     73    235                San Diego State
#> 1630     73    236                     Texas Tech
#> 1631     74    225                     Ohio State
#> 1632     73    238                        Houston
#> 1633     77    266                     Miami (FL)
#> 1634     76    263                       Stanford
#> 1635     75    237                            LSU
#> 1636     78    327            Louisiana-Lafayette
#> 1637     76    302                         Toledo
#> 1638     78    318                          Idaho
#> 1639     78    315                      Wisconsin
#> 1640     71    200                      Tennessee
#> 1641     76    235           North Carolina State
#> 1642     75    225                      Princeton
#> 1643     73    217                        Alabama
#> 1644     73    216                   South Dakota
#> 1645     73    197                     California
#> 1646     71    197                     Washington
#> 1647     70    194                     Washington
#> 1648     68    190                       Colorado
#> 1649     71    228                     Cincinnati
#> 1650     71    200                        Florida
#> 1651     71    225                          Texas
#> 1652     69    210                     Miami (FL)
#> 1653     77    310                       Ole Miss
#> 1654     77    295             Fayetteville State
#> 1655     77    313                  West Virginia
#> 1656     78    313                  Massachusetts
#> 1657     77    325            Southern California
#> 1658     77    310                     Notre Dame
#> 1659     75    248                       Nebraska
#> 1660     77    255                Grambling State
#> 1661     77    228                         Auburn
#> 1662     78    246                     Notre Dame
#> 1663     79    257                   Ashland (OH)
#> 1664     78    247                     Penn State
#> 1665     77    253                 Boston College
#> 1666     69    195                  Georgia State
#> 1667     70    182                        Alabama
#> 1668     76    221                 North Carolina
#> 1669     75    219                     Louisville
#> 1670     75    195                     Miami (FL)
#> 1671     67    168              Northern Illinois
#> 1672     70    200                 William & Mary
#> 1673     71    197                       Kentucky
#> 1674     72    198               Washington State
#> 1675     75    205                       Ole Miss
#> 1676     73    184                     Notre Dame
#> 1677     74    201                  Virginia Tech
#> 1678     77    220                 Colorado State
#> 1679     75    300           North Carolina State
#> 1680     74    190              Mississippi State
#> 1681     70    179                         Tulane
#> 1682     73    180                    Wake Forest
#> 1683     73    184         North Carolina Central
#> 1684     71    185                         Temple
#> 1685     70    192                        Clemson
#> 1686     72    190                         Towson
#> 1687     73    198                            LSU
#> 1688     71    195                          Texas
#> 1689     72    200                     California
#> 1690     71    204                 Louisiana Tech
#> 1691     74    210                 North Carolina
#> 1692     71    207                       Michigan
#> 1693     74    211                     Notre Dame
#> 1694     77    263                            LSU
#> 1695     77    260                  Florida State
#> 1696     76    264                     Pittsburgh
#> 1697     76    264                     Pittsburgh
#> 1698     75    259                        Wyoming
#> 1699     75    264                 Michigan State
#> 1700     77    258                 South Carolina
#> 1701     75    273                            USC
#> 1702     76    250                            LSU
#> 1703     76    295                         Baylor
#> 1704     74    290                     Pittsburgh
#> 1705     75    325                        Alabama
#> 1706     75    290                       Missouri
#> 1707     75    303                       Arkansas
#> 1708     72    340                        Samford
#> 1709     73    326                         Oregon
#> 1710     72    299           North Carolina State
#> 1711     77    307                       Arkansas
#> 1712     74    245                 North Carolina
#> 1713     71    250                 Augustana (SD)
#> 1714     76    315                     Ohio State
#> 1715     78    320                           Elon
#> 1716     76    298                           Iowa
#> 1717     76    305                         Furman
#> 1718     78    312                    Boise State
#> 1719     74    315                  Washburn (KS)
#> 1720     72    206               Florida Atlantic
#> 1721     74    233                 North Carolina
#> 1722     72    232                           UCLA
#> 1723     73    233                     Ohio State
#> 1724     75    233                         Baylor
#> 1725     74    230                     Utah State
#> 1726     74    234                      Wisconsin
#> 1727     77    257                           UCLA
#> 1728     75    225                         Oregon
#> 1729     73    229                        Rutgers
#> 1730     77    298                       Michigan
#> 1731     77    195               Eastern Kentucky
#> 1732     75    205                 Michigan State
#> 1733     78    230                   Oregon State
#> 1734     75    212                      Texas A&M
#> 1735     73    211                       Kentucky
#> 1736     72    210                        Clemson
#> 1737     70    210                  Florida State
#> 1738     71    215                    Boise State
#> 1739     73    210                     Iowa State
#> 1740     78    310                  Southern Miss
#> 1741     79    310                     Pittsburgh
#> 1742     77    315                  Virginia Tech
#> 1743     78    330                    Stony Brook
#> 1744     79    315                   Oregon State
#> 1745     77    253                      Tennessee
#> 1746     76    253                     Miami (FL)
#> 1747     74    240                        Alabama
#> 1748     75    250             North Dakota State
#> 1749     75    248               Central Michigan
#> 1750     79    251               Central Missouri
#> 1751     73    185                           Iowa
#> 1752     71    203                     Miami (FL)
#> 1753     74    200        Minnesota State-Mankato
#> 1754     73    185                            UAB
#> 1755     73    191                       Syracuse
#> 1756     72    203                 Colorado State
#> 1757     72    178                       Oklahoma
#> 1758     75    203                     Penn State
#> 1759     73    195                            LSU
#> 1760     75    300                        Georgia
#> 1761     73    177           Pittsburg State (KS)
#> 1762     75    212                     Vanderbilt
#> 1763     72    191                            LSU
#> 1764     73    191                     Ohio State
#> 1765     72    185                        Georgia
#> 1766     72    200                   Presbyterian
#> 1767     74    220              Lenoir-Rhyne (NC)
#> 1768     69    185                     Washington
#> 1769     74    203                     Texas Tech
#> 1770     70    190                         Auburn
#> 1771     70    195                        Rutgers
#> 1772     71    210                          Texas
#> 1773     72    200                       Missouri
#> 1774     73    198                       Maryland
#> 1775     73    202                       Maryland
#> 1776     77    275                       Arkansas
#> 1777     75    250                       Michigan
#> 1778     78    300                       Stanford
#> 1779     75    305               Washington State
#> 1780     76    310                        Alabama
#> 1781     77    320                           Iowa
#> 1782     76    265                 William & Mary
#> 1783     76    315                  Arizona State
#> 1784     75    311                            LSU
#> 1785     75    300                       Maryland
#> 1786     75    255                      Tennessee
#> 1787     79    330                       Missouri
#> 1788     73    222                        Arizona
#> 1789     73    189                       Michigan
#> 1790     74    235                       Missouri
#> 1791     73    243                       Virginia
#> 1792     75    259                        Alabama
#> 1793     74    220                         Auburn
#> 1794     75    245                       Michigan
#> 1795     75    250                  Brigham Young
#> 1796     73    236                       Michigan
#> 1797     74    250                         Hawaii
#> 1798     74    242                     Ohio State
#> 1799     75    255                  Southern Miss
#> 1800     74    250                            BYU
#> 1801     74    255                         Purdue
#> 1802     75    260                        Alabama
#> 1803     75    247                       Oklahoma
#> 1804     75    275             Grand Valley State
#> 1805     75    245                           Navy
#> 1806     77    294                           UCLA
#> 1807     77    305                    Wake Forest
#> 1808     74    300                           Iowa
#> 1809     73    310                   Georgia Tech
#> 1810     77    310                  West Virginia
#> 1811     75    350                       Michigan
#> 1812     80    380                        Florida
#> 1813     74    213                  Windsor (CAN)
#> 1814     76    305                       Illinois
#> 1815     77    315                       Colorado
#> 1816     74    310                        Georgia
#> 1817     74    205                       Stanford
#> 1818     74    216                 Michigan State
#> 1819     75    217                        Alabama
#> 1820     75    214                         Auburn
#> 1821     74    225                       Nebraska
#> 1822     70    205                      Wisconsin
#> 1823     71    213                        Alabama
#> 1824     72    228                       Oklahoma
#> 1825     71    220                       Ole Miss
#> 1826     66    185                        Arizona
#> 1827     76    300                       Colorado
#> 1828     77    250                       Arkansas
#> 1829     78    248                      Wisconsin
#> 1830     76    251                  Virginia Tech
#> 1831     75    248          Florida International
#> 1832     78    255                       Illinois
#> 1833     75    257                           UCLA
#> 1834     73    203             Eastern Washington
#> 1835     72    187                            UCF
#> 1836     69    190                           Navy
#> 1837     74    200           North Carolina State
#> 1838     72    190                  Bemidji State
#> 1839     73    214       Southeast Missouri State
#> 1840     72    198                            USC
#> 1841     72    205                           UCLA
#> 1842     74    227                     Louisville
#> 1843     76    225                  Arizona State
#> 1844     77    311                            LSU
#> 1845     77    300                  Arizona State
#> 1846     72    196                  Florida State
#> 1847     73    192                       Stanford
#> 1848     69    180                   Truman State
#> 1849     73    196                        Fordham
#> 1850     71    190                      Tennessee
#> 1851     71    194                     Ohio State
#> 1852     72    192                     Ohio State
#> 1853     73    180                       Colorado
#> 1854     72    202              Mississippi State
#> 1855     73    212           Saginaw Valley State
#> 1856     74    190                     Washington
#> 1857     73    195                           Utah
#> 1858     71    194                     Notre Dame
#> 1859     71    210                        Florida
#> 1860     75    205                  Virginia Tech
#> 1861     78    270                        Houston
#> 1862     76    287                     California
#> 1863     78    265              Texas-San Antonio
#> 1864     77    261                        Wyoming
#> 1865     77    283                     Ohio State
#> 1866     79    289                      Villanova
#> 1867     75    290                          Texas
#> 1868     75    300                      Tennessee
#> 1869     74    302              Mississippi State
#> 1870     77    288                 North Carolina
#> 1871     75    305                        Clemson
#> 1872     76    287                 West Texas A&M
#> 1873     76    300                 Manitoba (CAN)
#> 1874     73    300            Louisiana-Lafayette
#> 1875     72    245                 South Carolina
#> 1876     71    184                  Georgia State
#> 1877     73    185                       Nebraska
#> 1878     75    222                           Utah
#> 1879     74    248                 Arkansas State
#> 1880     75    225                      Wisconsin
#> 1881     75    242                     Ohio State
#> 1882     75    238                          Idaho
#> 1883     73    227                            LSU
#> 1884     73    225                 Michigan State
#> 1885     73    235                           Ohio
#> 1886     76    250                         Temple
#> 1887     75    255                            SMU
#> 1888     76    335                      Villanova
#> 1889     77    309                         Oregon
#> 1890     75    345                  West Virginia
#> 1891     79    316                       Stanford
#> 1892     76    316                       Michigan
#> 1893     77    310                 North Carolina
#> 1894     76    303                      Texas A&M
#> 1895     76    310               Western Kentucky
#> 1896     77    305                           UCLA
#> 1897     78    305                            LSU
#> 1898     78    305                       Stanford
#> 1899     74    196                     Penn State
#> 1900     76    231                  Florida State
#> 1901     77    236                            UCF
#> 1902     72    206                     Notre Dame
#> 1903     74    221                            BYU
#> 1904     75    220                   Northwestern
#> 1905     69    215                        Alabama
#> 1906     71    224                     Notre Dame
#> 1907     70    215                      Tennessee
#> 1908     73    223                     Washington
#> 1909     74    225                     Notre Dame
#> 1910     72    204                     Ohio State
#> 1911     77    316                 Louisiana Tech
#> 1912     77    321                        Alabama
#> 1913     79    321                       Kentucky
#> 1914     78    314                      Wisconsin
#> 1915     77    304            Arkansas-Pine Bluff
#> 1916     77    253                         Dayton
#> 1917     78    261                     Ohio State
#> 1918     79    272                     Iowa State
#> 1919     76    231                         Oregon
#> 1920     78    252                      Tennessee
#> 1921     76    240                      Air Force
#> 1922     75    212                     Ohio State
#> 1923     72    208                 Arkansas State
#> 1924     72    192               Washington State
#> 1925     72    216                       Stanford
#> 1926     74    210                            UCF
#> 1927     70    178                         Tulane
#> 1928     66    170                     Assumption
#> 1929    6-2    210                           UCLA
#> 1930     75    216                  West Virginia
#> 1931     76    225                          Texas
#> 1932     73    202                       Oklahoma
#> 1933     74    204                      Tennessee
#> 1934     73    215                  South Alabama
#> 1935   <NA>     NA                  Florida State
#> 1936     77    307                       Nebraska
#> 1937     75    305                           Duke
#> 1938    6-0    200                      Texas A&M
#> 1939     72    195                 Oklahoma State
#> 1940     71    190                         Albany
#> 1941     73    193                            UCF
#> 1942     70    195                           UCLA
#> 1943     73    212                        Samford
#> 1944     73    207                San Diego State
#> 1945     72    203                       Nebraska
#> 1946     71    215                       Michigan
#> 1947     71    195                     Notre Dame
#> 1948     73    210                       Oklahoma
#> 1949     72    215                     Ohio State
#> 1950     73    194                        Georgia
#> 1951     71    195                        Rutgers
#> 1952     70    185               Western Carolina
#> 1953     71    185                            USC
#> 1954     72    201                        Alabama
#> 1955     77    302                            USC
#> 1956     75    270               Georgia Southern
#> 1957     77    270                      Dartmouth
#> 1958     75    315                       Ole Miss
#> 1959     76    314                     Penn State
#> 1960     75    296                    Boise State
#> 1961     76    342                        Clemson
#> 1962     74    345                     Washington
#> 1963     74    235                      Texas A&M
#> 1964     77    315                       Michigan
#> 1965     75    315                        Indiana
#> 1966     74    327                           UTEP
#> 1967     74    202                  Florida State
#> 1968     79    255                  Northern Iowa
#> 1969     76    257              Mississippi State
#> 1970     77    233                     Penn State
#> 1971     74    240                     Notre Dame
#> 1972     77    255                        Georgia
#> 1973     75    235                        Georgia
#> 1974     75    245                     Miami (FL)
#> 1975     74    249                        Georgia
#> 1976     74    252                        Alabama
#> 1977     75    236                      Minnesota
#> 1978     76    254                   Old Dominion
#> 1979     73    231                     Ohio State
#> 1980     76    223                       Marshall
#> 1981     74    237                       Stanford
#> 1982     73    230                 South Carolina
#> 1983     73    250                           Iowa
#> 1984     77    320                  Florida State
#> 1985     76    310                         Oregon
#> 1986     76    302                   Rhode Island
#> 1987     76    300                        Florida
#> 1988     76    308                     Ohio State
#> 1989     76    221                       Syracuse
#> 1990     73    207            Arkansas-Pine Bluff
#> 1991     77    221                           Duke
#> 1992     75    216                 Michigan State
#> 1993     74    215                        Georgia
#> 1994     77    225                     California
#> 1995     79    225           North Carolina State
#> 1996     76    222                   Northwestern
#> 1997     71    219                           Utah
#> 1998     74    234                          Idaho
#> 1999     72    210                           <NA>
#> 2000     69    192                       Virginia
#> 2001     71    215                        Arizona
#> 2002     71    233                     Penn State
#> 2003     71    215                 North Carolina
#> 2004     79    318                    Connecticut
#> 2005     77    315                        Georgia
#> 2006     78    311                     Cincinnati
#> 2007     78    311                           Duke
#> 2008     80    325                       Colorado
#> 2009     78    265                     Notre Dame
#> 2010     75    240                       Ole Miss
#> 2011     76    255                     Ohio State
#> 2012     77    249                       Stanford
#> 2013     77    255                         Temple
#> 2014     79    220             Simon Fraser (CAN)
#> 2015     80    268                       Stanford
#> 2016     77    235              Mississippi State
#> 2017     71    186                Louisiana State
#> 2018     76    212                   North Dakota
#> 2019     71    207                 South Carolina
#> 2020     72    193                        Florida
#> 2021     73    181                    Chattanooga
#> 2022     73    217                   Jacksonville
#> 2023     70    175                 North Carolina
#> 2024     73    190                         Auburn
#> 2025     72    190                    Wake Forest
#> 2026     75    211                  West Virginia
#> 2027     73    195                     Washington
#> 2028     70    201                       Oklahoma
#> 2029     71    194                     Washington
#> 2030     76    213              Northern Illinois
#> 2031     78    222                          Texas
#> 2032     73    190                      Air Force
#> 2033     73    202                       Virginia
#> 2034     71    202                       Ole Miss
#> 2035     72    205                     Pittsburgh
#> 2036     70    184                           Duke
#> 2037     70    175                       Kentucky
#> 2038     69    191                           Utah
#> 2039     70    191                      Wisconsin
#> 2040     73    200                       Illinois
#> 2041     71    213               Middle Tennessee
#> 2042     72    200                        Arizona
#> 2043     68    185                  Florida State
#> 2044     72    205                           Army
#> 2045     72    207                        Florida
#> 2046     73    200                     California
#> 2047     72    205                            BYU
#> 2048     72    193                   Oregon State
#> 2049     74    265                         Auburn
#> 2050     75    286                       Nebraska
#> 2051     78    255                   Old Dominion
#> 2052     75    264                        Florida
#> 2053     75    255                        Memphis
#> 2054     74    251                   Oregon State
#> 2055     75    260                           Utah
#> 2056     75    270              Appalachian State
#> 2057     76    318                    Connecticut
#> 2058     76    277                      Tennessee
#> 2059     76    288              Stephen F. Austin
#> 2060     73    295                         Tulane
#> 2061     75    303                        Alabama
#> 2062     75    310                       Arkansas
#> 2063     74    305                     Louisville
#> 2064     76    315           Fort Hays State (KS)
#> 2065     74    245                San Diego State
#> 2066     69    195                 Oklahoma State
#> 2067     72    185                        Florida
#> 2068     75    215                  Florida State
#> 2069     74    250                        Alabama
#> 2070     74    230                       Illinois
#> 2071     74    211                           UNLV
#> 2072     73    237                      Minnesota
#> 2073     71    225                   Murray State
#> 2074     73    245                        Florida
#> 2075     74    220                        Rutgers
#> 2076     74    216                         Auburn
#> 2077     74    246                           Duke
#> 2078     75    305                   Pennsylvania
#> 2079     77    306                      Air Force
#> 2080     79    300                         Purdue
#> 2081     76    310                        Indiana
#> 2082     76    306                       Missouri
#> 2083     77    308                            USC
#> 2084     77    321                   McGill (CAN)
#> 2085     77    308                       Oklahoma
#> 2086     80    305                           UCLA
#> 2087     78    318                       Virginia
#> 2088     75    295                          Akron
#> 2089     76    315                        Alabama
#> 2090     76    308                      Charlotte
#> 2091     77    322               Western Kentucky
#> 2092     79    363                     Louisville
#> 2093     75    308                            USC
#> 2094     71    198                      Texas A&M
#> 2095     76    218               Western Kentucky
#> 2096     78    245                       Delaware
#> 2097     74    214                            BYU
#> 2098     70    210                       Maryland
#> 2099     68    201                 North Carolina
#> 2100     71    216                        Florida
#> 2101     68    202                           Rice
#> 2102     73    210                        Indiana
#> 2103     78    305                         Wagner
#> 2104     77    250                    Marian (IN)
#> 2105     75    223                     Washington
#> 2106     78    252                        Rutgers
#> 2107     75    267                  West Virginia
#> 2108     77    247                  James Madison
#> 2109     78    255                    Connecticut
#> 2110     75    250                       Ole Miss
#> 2111     75    209               Western Michigan
#> 2112     69    177                           Duke
#> 2113     73    194              Kentucky Wesleyan
#> 2114     69    190                     Miami (FL)
#> 2115     73    201                    Austin Peay
#> 2116     73    195                 Boston College
#> 2117     75    207                         Baylor
#> 2118     73    189                  South Florida
#> 2119     70    178                       Ole Miss
#> 2120     77    220                        Georgia
#> 2121    6-0    182                 Louisiana Tech
#> 2122     75    213                          Texas
#> 2123     75    295                     Cincinnati
#> 2124     70    185                            LSU
#> 2125     72    190              Mississippi State
#> 2126     72    175             North Carolina A&T
#> 2127     70    175                 Michigan State
#> 2128     71    191                     Texas Tech
#> 2129     70    194                   Oregon State
#> 2130     70    195              Southern Illinois
#> 2131     73    186                            UCF
#> 2132     69    184                     Pittsburgh
#> 2133     72    200                 San Jose State
#> 2134     72    198                        Wyoming
#> 2135     72    205                        Alabama
#> 2136     73    202                       Virginia
#> 2137     70    195                       Virginia
#> 2138     71    205                        Clemson
#> 2139     77    276                        Houston
#> 2140     77    265                  Florida State
#> 2141     74    265                       Michigan
#> 2142     74    254               Coastal Carolina
#> 2143     79    280                     Iowa State
#> 2144     76    267                         Purdue
#> 2145     75    259                      Tennessee
#> 2146     76    303                  Florida State
#> 2147     77    315                  Arizona State
#> 2148     76    310              Mississippi State
#> 2149     74    305           South Carolina State
#> 2150    6-2    310                       Oklahoma
#> 2151     74    307                            USC
#> 2152     75    305                          Texas
#> 2153     75    290                 Louisiana Tech
#> 2154     76    303                   Oregon State
#> 2155     77    335                     Miami (OH)
#> 2156     76    314                     Texas Tech
#> 2157     76    334                       Stanford
#> 2158     76    305                    Weber State
#> 2159     69    167                        Memphis
#> 2160     72    250                        Memphis
#> 2161     73    242                      Wisconsin
#> 2162     73    240                         Temple
#> 2163     75    233                          Idaho
#> 2164     74    240                  Montana State
#> 2165     73    230                       Colorado
#> 2166     73    222                            LSU
#> 2167     74    248                         Tulane
#> 2168     74    249                   Old Dominion
#> 2169     78    333                        Alabama
#> 2170     78    304                           Army
#> 2171     75    312                        Buffalo
#> 2172     74    212                         Auburn
#> 2173     73    223                       Oklahoma
#> 2174     76    225                      San Diego
#> 2175     73    225               Washington State
#> 2176     72    222                        Indiana
#> 2177     69    200                        Memphis
#> 2178     71    211                     Penn State
#> 2179     66    203                 Louisiana Tech
#> 2180     69    193               New Mexico State
#> 2181     78    325                       Oklahoma
#> 2182     77    319                     Texas Tech
#> 2183     80    365                           <NA>
#> 2184     77    296                         Auburn
#> 2185     77    315               Washington State
#> 2186     76    247                       Nebraska
#> 2187     79    249                        Buffalo
#> 2188     77    246                      Tennessee
#> 2189     77    256             South Dakota State
#> 2190     76    246                   Oregon State
#> 2191     76    257                     California
#> 2192     71    190                        Houston
#> 2193     71    197                            TCU
#> 2194     72    193                  Southern Miss
#> 2195     74    202                        Clemson
#> 2196     74    225                       Stanford
#> 2197     74    190                    Boise State
#> 2198     72    170                        Alabama
#> 2199     76    315                       Illinois
#> 2200     74    295                        Alabama
#> 2201     74    195                       Colorado
#> 2202     74    192                 Michigan State
#> 2203     71    188                      Tennessee
#> 2204     71    195                        Florida
#> 2205     74    210                        Houston
#> 2206     70    190                        Memphis
#> 2207     74    185               Florida Atlantic
#> 2208     74    222                  Southern Utah
#> 2209     72    194                       Oklahoma
#> 2210     73    217                  Virginia Tech
#> 2211     74    210                        Florida
#> 2212     73    207                        Alabama
#> 2213     70    200                  West Virginia
#> 2214     72    193                     Cincinnati
#> 2215     78    270                       Michigan
#> 2216     76    280                         Oregon
#> 2217     75    245                      Miami, O.
#> 2218     79    249                      Wisconsin
#> 2219     75    304                     California
#> 2220     78    303                     Notre Dame
#> 2221     77    300                       Michigan
#> 2222     77    295                     Ohio State
#> 2223     74    320                       Nebraska
#> 2224     75    302                  Florida State
#> 2225     75    304                         Auburn
#> 2226     78    307                         Temple
#> 2227     73    308                       Nebraska
#> 2228     74    234                      Wisconsin
#> 2229     76    310                    Wake Forest
#> 2230     75    315                Louisiana State
#> 2231     79    310                     Ohio State
#> 2232     74    185                           Rice
#> 2233     68    205                     Miami (OH)
#> 2234     73    240                      Wisconsin
#> 2235     77    246                            SMU
#> 2236     74    260                     Ohio State
#> 2237     74    240                      Texas A&M
#> 2238     73    229               Western Michigan
#> 2239     72    227                        Indiana
#> 2240     71    234                       Michigan
#> 2241     76    252                      Wisconsin
#> 2242     77    246             North Dakota State
#> 2243     76    242                      Charlotte
#> 2244     74    215                     Penn State
#> 2245     72    230                          Akron
#> 2246     78    242                  West Virginia
#> 2247     73    228                       Duquesne
#> 2248     76    321            Louisiana-Lafayette
#> 2249     76    318                   Kansas State
#> 2250     78    320               Western Michigan
#> 2251     77    258                      Texas A&M
#> 2252     79    310                         Tulane
#> 2253     74    200                        Georgia
#> 2254     72    255                   Georgia Tech
#> 2255     75    216                      Tennessee
#> 2256     77    240                     Miami (OH)
#> 2257     77    235                 Oklahoma State
#> 2258     76    230                     Ohio State
#> 2259    6-3    200                        Clemson
#> 2260     69    198                       Maryland
#> 2261     70    224                       Kentucky
#> 2262     74    223                       Maryland
#> 2263     74    231                  Arizona State
#> 2264     73    232                        Alabama
#> 2265     80    358                            USC
#> 2266     77    318                        Florida
#> 2267     78    298             North Dakota State
#> 2268     76    251                      Texas A&M
#> 2269     76    253                 North Carolina
#> 2270     77    258                     Penn State
#> 2271     76    250               Youngstown State
#> 2272     80    265                       Michigan
#> 2273     76    245                     Utah State
#> 2274     76    238                     Notre Dame
#> 2275     70    183                         Toledo
#> 2276     74    190                         Hawaii
#> 2277     71    213                 Oklahoma State
#> 2278     75    215                 Michigan State
#> 2279     70    176                         Kansas
#> 2280     69    190                        Clemson
#> 2281     71    199                        Memphis
#> 2282     73    215                            USC
#> 2283     74    184                            USC
#> 2284     77    290                      UBC (CAN)
#> 2285     72    197                    Stony Brook
#> 2286     72    181                     Washington
#> 2287     70    187                     Penn State
#> 2288     73    210                     Miami (FL)
#> 2289     69    193                   Kansas State
#> 2290     70    186                       Oklahoma
#> 2291     73    196                           Utah
#> 2292     71    187                      Tennessee
#> 2293     69    197                          Texas
#> 2294     69    201                         Oregon
#> 2295     73    198                        Rutgers
#> 2296     73    220           North Carolina State
#> 2297     75    279                           Troy
#> 2298     76    267                      Tennessee
#> 2299     75    259                       Syracuse
#> 2300     76    279            Southern California
#> 2301     74    291                            TCU
#> 2302     75    252                          Idaho
#> 2303     74    275                     Texas Tech
#> 2304     78    285                        Florida
#> 2305     76    330                            LSU
#> 2306     74    290                           Rice
#> 2307     75    345                       Michigan
#> 2308     73    290                  Virginia Tech
#> 2309     75    280                Frostburg State
#> 2310     75    296                    Mississippi
#> 2311     71    310                          Texas
#> 2312     73    250               Central Michigan
#> 2313     74    327                            LSU
#> 2314     75    335              Mississippi State
#> 2315     70    190                         Marist
#> 2316     72    230                     Washington
#> 2317     72    240                     Texas Tech
#> 2318     74    237                           Utah
#> 2319     71    220                       Syracuse
#> 2320     73    240                 Arkansas State
#> 2321     74    227                        Clemson
#> 2322     72    242                     Utah State
#> 2323     72    236                           Army
#> 2324     75    245                       Colorado
#> 2325     75    245                  Newberry (SC)
#> 2326   <NA>    230                        Memphis
#> 2327     75    253                        Harvard
#> 2328     76    322                    Wake Forest
#> 2329     75    312                 Montreal (CAN)
#> 2330     78    320                            LSU
#> 2331     77    320                         Baylor
#> 2332     80    321              Mississippi State
#> 2333     74    208                          Texas
#> 2334   5-11    209                  West Virginia
#> 2335     75    221                  West Virginia
#> 2336     78    231                     Washington
#> 2337     71    215                      Wisconsin
#> 2338     71    220                San Diego State
#> 2339     70    210                       Arkansas
#> 2340     68    200                     Utah State
#> 2341     73    217                       Oklahoma
#> 2342     70    214                     Miami (FL)
#> 2343     69    209               Louisiana-Monroe
#> 2344     70    202                     Miami (FL)
#> 2345     71    222                 Oklahoma State
#> 2346     75    200              Southern Illinois
#> 2347     73    213                            LSU
#> 2348     76    293                     Ohio State
#> 2349     80    307                        Florida
#> 2350     76    315                  Virginia Tech
#> 2351     77    324                 South Carolina
#> 2352     78    316                     California
#> 2353     75    240                  South Alabama
#> 2354     75    247                       Maryland
#> 2355     79    251                       Stanford
#> 2356     76    265                     Washington
#> 2357     70    182                   Kansas State
#> 2358     69    182                         Hawaii
#> 2359     71    188                     Washington
#> 2360     70    197                 McKendree (IL)
#> 2361     72    199                        Florida
#> 2362     68    180                  Georgia State
#> 2363     76    235                    Mississippi
#> 2364     74    205                         Toledo
#> 2365     69    190               Western Michigan
#> 2366     70    184             South Dakota State
#> 2367     76    311                     California
#> 2368     72    200               Coastal Carolina
#> 2369     70    190                       Michigan
#> 2370     71    190                      Tennessee
#> 2371     71    202                 Michigan State
#> 2372     73    175                San Diego State
#> 2373     69    185                     Pittsburgh
#> 2374     70    188                            TCU
#> 2375     70    192                        Clemson
#> 2376     72    190                       Michigan
#> 2377     74    200           North Carolina State
#> 2378     73    209                       Michigan
#> 2379     72    208                       Illinois
#> 2380     74    200                  Southern Miss
#> 2381     73    215                        Samford
#> 2382     70    200                         Oregon
#> 2383     72    200                            USC
#> 2384     72    210              Appalachian State
#> 2385     72    196                         Toledo
#> 2386     71    195              Northern Illinois
#> 2387     77    280                          Texas
#> 2388     76    270                   Kansas State
#> 2389     79    290                         Oregon
#> 2390     74    250                San Diego State
#> 2391     77    240                            LSU
#> 2392     76    266                     Ohio State
#> 2393     75    245             Eastern Washington
#> 2394     74    252                         Auburn
#> 2395     76    316                       Syracuse
#> 2396     77    319                 South Carolina
#> 2397     74    287           North Carolina State
#> 2398     74    291                       Michigan
#> 2399     75    311                       Nebraska
#> 2400     72    305                    Mississippi
#> 2401     75    315                           UCLA
#> 2402     73    285                     Penn State
#> 2403     73    225                   Fresno State
#> 2404     73    235                        Harvard
#> 2405     74    315                        Florida
#> 2406     72    190                     Penn State
#> 2407     75    235                        Wyoming
#> 2408     72    215                        Florida
#> 2409     74    223                        Arizona
#> 2410     75    230                            BYU
#> 2411     75    235                       Stanford
#> 2412     74    228               Florida Atlantic
#> 2413     72    230                       Arkansas
#> 2414     76    245                 Michigan State
#> 2415     75    315                           Duke
#> 2416     77    325                     Notre Dame
#> 2417     76    311               Western Michigan
#> 2418     76    299                           UCLA
#> 2419     78    315                   South Dakota
#> 2420     78    301                  West Virginia
#> 2421     81    332 Tecnologico de Monterrey (MEX)
#> 2422     77    300                San Diego State
#> 2423     78    318                     Vanderbilt
#> 2424     77    302                            UCF
#> 2425     74    220                           Utah
#> 2426     78    227                        Indiana
#> 2427     74    225               Eastern Illinois
#> 2428     76    224             North Dakota State
#> 2429    6-0    209                        Alabama
#> 2430     70    200            Louisiana-Lafayette
#> 2431     72    194                    North Texas
#> 2432     71    185                 Virginia State
#> 2433     73    219                        Wyoming
#> 2434     70    205                         Purdue
#> 2435     72    215                     Ohio State
#> 2436     68    205                         Baylor
#> 2437     77    320                       Oklahoma
#> 2438     80    310                     Notre Dame
#> 2439     77    235                      San Diego
#> 2440     75    236                     Vanderbilt
#> 2441     77    241                        Georgia
#> 2442     77    239              Southern Arkansas
#> 2443     76    250                           Iowa
#> 2444     72    204                       Stanford
#> 2445     73    201                   Fresno State
#> 2446     74    210                        Rutgers
#> 2447     72    215                 South Carolina
#> 2448     75    212                      Tennessee
#> 2449     70    175                     Miami (FL)
#> 2450     74    215                     Ohio State
#> 2451     69    185               Middle Tennessee
#> 2452     72    200                  Arizona State
#> 2453     73    219                     Vanderbilt
#> 2454     76    319          Colorado State-Pueblo
#> 2455     75    195                       Stanford
#> 2456     73    192                     Lindenwood
#> 2457     72    195               Central Michigan
#> 2458     71    200                     Miami (FL)
#> 2459     73    206                         Auburn
#> 2460     73    177                            LSU
#> 2461     73    206                         Auburn
#> 2462     72    191                           Duke
#> 2463     73    198                    Connecticut
#> 2464     70    198                     Pittsburgh
#> 2465     73    200                            BYU
#> 2466     72    210                    Stony Brook
#> 2467     70    200                    Stony Brook
#> 2468     71    205                    Connecticut
#> 2469     70    205                       Kentucky
#> 2470     69    203                      Minnesota
#> 2471     76    270               Eastern Michigan
#> 2472     78    281                 Michigan State
#> 2473     75    290                     Washington
#> 2474     77    287                        Rutgers
#> 2475     75    310                           Troy
#> 2476     76    313                       Nebraska
#> 2477     74    300                 South Carolina
#> 2478     76    347                     Washington
#> 2479     74    307                  Southern Miss
#> 2480     77    309                    Boise State
#> 2481     75    312                  James Madison
#> 2482     76    307                         Hobart
#> 2483     76    310                           Rice
#> 2484     78    305                 Humboldt State
#> 2485     70    206                     Miami (FL)
#> 2486     74    218                 South Carolina
#> 2487     71    230                        Houston
#> 2488     72    235                         Auburn
#> 2489     72    246                Louisiana State
#> 2490     75    275                     Cincinnati
#> 2491     79    271                           Iowa
#> 2492     74    250                 Colorado State
#> 2493     75    240                         Wagner
#> 2494     72    237                Louisiana State
#> 2495     73    233                       Nebraska
#> 2496     77    259                     Washington
#> 2497     77    275                  South Florida
#> 2498     73    240                  Florida State
#> 2499     75    245                Assumption (MA)
#> 2500     75    321                 South Carolina
#> 2501    6-5    295                     Utah State
#> 2502     76    306                     Notre Dame
#> 2503     76    313        Northwestern State (LA)
#> 2504     77    300               Florida Atlantic
#> 2505    793    330                    Florida A&M
#> 2506     77    229                        Clemson
#> 2507     70    196                       Syracuse
#> 2508     76    218                         Tulane
#> 2509     77    235                       Missouri
#> 2510     76    225                       Michigan
#> 2511     77    236                        Florida
#> 2512     71    208            Southern California
#> 2513     70    214                     Vanderbilt
#> 2514     69    205                 North Carolina
#> 2515     72    228                            LSU
#> 2516     69    195                         Oregon
#> 2517     73    225                 Michigan State
#> 2518     78    338                     Penn State
#> 2519     78    306                  James Madison
#> 2520     77    320                           Iowa
#> 2521     78    251                        Alabama
#> 2522     77    245                        Harvard
#> 2523     78    265                        Arizona
#> 2524     78    258          Southeastern Oklahoma
#> 2525     79    281              California-Irvine
#> 2526     74    190                   West Georgia
#> 2527     69    183                            LSU
#> 2528     73    208                     Penn State
#> 2529     71    178           Pittsburg State (KS)
#> 2530     75    202                 Limestone (SC)
#> 2531     75    210                            UAB
#> 2532     76    211                  Montana State
#> 2533     73    206                      Minnesota
#> 2534     74    215                            UCF
#> 2535     77    231                      Texas A&M
#> 2536     68    174                    North Texas
#> 2537     69    174                  Bowling Green
#> 2538   <NA>     NA                           <NA>
#> 2539     75    308                        Georgia
#> 2540     73    305                       Colorado
#> 2541     74    200                           Iowa
#> 2542     72    205                      Minnesota
#> 2543     71    197                            LSU
#> 2544     70    190                  North Alabama
#> 2545     69    193                      Minnesota
#> 2546     73    209                       Stanford
#> 2547     72    200                       Nebraska
#> 2548     74    197                  Virginia Tech
#> 2549     70    192                     Washington
#> 2550     71    209                     Notre Dame
#> 2551     69    187                    Chattanooga
#> 2552     71    210                           Iowa
#> 2553     72    194                        Alabama
#> 2554     73    215                     Miami (FL)
#> 2555     70    193                       Marshall
#> 2556     72    209                            SMU
#> 2557     73    209                        Arizona
#> 2558     71    212               Middle Tennessee
#> 2559     77    285              Mississippi State
#> 2560     76    295                           UTSA
#> 2561     76    280                       Oklahoma
#> 2562     73    300               Florida Atlantic
#> 2563    6-0    339                  Alabama State
#> 2564     75    313                 Michigan State
#> 2565     76    305              Mississippi State
#> 2566     74    304          Florida International
#> 2567     75    297                        Alabama
#> 2568     73    305                   Oregon State
#> 2569     74    297           North Carolina State
#> 2570     72    233                     Vanderbilt
#> 2571     72    229                            LSU
#> 2572     76    307                    Chattanooga
#> 2573     77    325                        Indiana
#> 2574     75    316                      Charlotte
#> 2575     75    302                         Purdue
#> 2576     73    192                     Penn State
#> 2577     69    210                      Texas A&M
#> 2578     72    237                 Missouri State
#> 2579     75    250              Sam Houston State
#> 2580     73    240                       Cal Poly
#> 2581     73    248                         Toledo
#> 2582     76    259                     Pittsburgh
#> 2583     74    231                   Northwestern
#> 2584     72    233                        Georgia
#> 2585     75    230                     Vanderbilt
#> 2586     76    269                       Kentucky
#> 2587     74    252                 Boston College
#> 2588     76    265                            SMU
#> 2589     72    240                   Northwestern
#> 2590     75    246                         Toledo
#> 2591     74    232                        Alabama
#> 2592     72    226                           UCLA
#> 2593     71    227                  West Virginia
#> 2594     75    229                 Illinois State
#> 2595     76    260              Mississippi State
#> 2596     76    233                      Tennessee
#> 2597     77    310                 San Jose State
#> 2598     78    301             North Dakota State
#> 2599     73    274                    Texas State
#> 2600     79    309                       Michigan
#> 2601     77    310              Appalachian State
#> 2602     74    214                         Toledo
#> 2603     76    217                      Texas A&M
#> 2604     75    218                       Stanford
#> 2605     73    213                         Toledo
#> 2606     71    200              Appalachian State
#> 2607     71    202                         Tulane
#> 2608     73    216                       Ole Miss
#> 2609     69    205                    Boise State
#> 2610     75    247                        Alabama
#> 2611     73    236                          Texas
#> 2612     79    310                 Valdosta State
#> 2613     78    300                       Illinois
#> 2614     76    320                       Maryland
#> 2615     74    245              Southern Illinois
#> 2616     76    260                          Texas
#> 2617     76    250                   Kansas State
#> 2618     74    246                        Harvard
#> 2619     74    237               Western Michigan
#> 2620     77    255                  Arizona State
#> 2621     76    244                        Wyoming
#> 2622     77    255                  Florida State
#> 2623     68    175                     Texas Tech
#> 2624     75    208                      Tennessee
#> 2625     74    203                     Vanderbilt
#> 2626     75    220                        Alabama
#> 2627     72    184                Grambling State
#> 2628     73    226                       Ole Miss
#> 2629     73    207                          Texas
#> 2630     74    215                        Indiana
#> 2631     75    217                            LSU
#> 2632     76    216                       Arkansas
#> 2633     74    208                     Louisville
#> 2634     70    198                     Berry (GA)
#> 2635     77    308                       Kentucky
#> 2636     76    312                        Wyoming
#> 2637     75    310                San Diego State
#> 2638     76    335                     Utah State
#> 2639     69    196                        Memphis
#> 2640     71    190                        Houston
#> 2641     72    190                       Marshall
#> 2642     71    188                           UNLV
#> 2643     72    189                        Houston
#> 2644     70    185                     Miami (FL)
#> 2645     69    190            Southern University
#> 2646     71    198                  Virginia Tech
#> 2647     72    218                        Alabama
#> 2648     72    200                     Cincinnati
#> 2649     72    203                      Texas A&M
#> 2650     74    198                       Arkansas
#> 2651     75    200                      Minnesota
#> 2652     71    200                  South Alabama
#> 2653     73    206                     Penn State
#> 2654     75    273                   Old Dominion
#> 2655     76    265           North Carolina State
#> 2656     78    262              Mississippi State
#> 2657     77    254                       Stanford
#> 2658     75    254                         Baylor
#> 2659     77    264                     Ohio State
#> 2660     77    256                         Oregon
#> 2661     74    238                     Penn State
#> 2662     76    251                           Utah
#> 2663     75    310                         Temple
#> 2664     76    293                           <NA>
#> 2665     75    320                        Alabama
#> 2666     76    300                        Georgia
#> 2667     75    285                         Kansas
#> 2668     75    308                  Virginia Tech
#> 2669     75    305                         Auburn
#> 2670     75    300                        Alabama
#> 2671     73    255                   West Georgia
#> 2672     75    212                      Air Force
#> 2673     77    299                 South Carolina
#> 2674     75    310              Mississippi State
#> 2675     76    300                 San Jose State
#> 2676     78    300                      Wisconsin
#> 2677     77    315                           Iowa
#> 2678     71    213                  Virginia Tech
#> 2679     73    185                  Virginia Tech
#> 2680     73    245                        Florida
#> 2681     74    240                    Texas State
#> 2682     72    245                       Arkansas
#> 2683     75    234                       Kentucky
#> 2684     73    238                           Utah
#> 2685     75    235                     California
#> 2686     74    225                       Illinois
#> 2687     72    220                       Michigan
#> 2688     73    240                 North Carolina
#> 2689     76    237                       Michigan
#> 2690     78    309                          Texas
#> 2691     76    310                  Arizona State
#> 2692     77    275                         Temple
#> 2693     73    220                       Oklahoma
#> 2694     73    210                   Old Dominion
#> 2695     75    210                        Houston
#> 2696     74    221                        Harvard
#> 2697     76    221                            SMU
#> 2698     70    195                 Arkansas State
#> 2699     72    215                     Louisville
#> 2700     70    208                  West Virginia
#> 2701     72    217                       Arkansas
#> 2702     74    220                        Memphis
#> 2703     68    195                        Buffalo
#> 2704     75    302                    Boise State
#> 2705     76    322                            LSU
#> 2706     78    330                     Miami (FL)
#> 2707     80    321                         Purdue
#> 2708     80    327                   Kansas State
#> 2709     77    260                    Loyola (NO)
#> 2710     77    243                      Texas A&M
#> 2711     78    250                  Virginia Tech
#> 2712     75    226                     Texas Tech
#> 2713     78    259                    Boise State
#> 2714     77    245           South Carolina State
#> 2715     76    223                        Liberty
#> 2716     68    188               Sacramento State
#> 2717     72    190                            BYU
#> 2718     71    195                     Ohio State
#> 2719     72    210                     Ohio State
#> 2720     77    220                        Alabama
#> 2721     74    215           North Carolina State
#> 2722     71    195                        Clemson
#> 2723     72    195                 North Carolina
#> 2724     71    191                  Massachusetts
#> 2725     77    298                        Florida
#> 2726     74    305                Tennessee State
#> 2727     78    300                       Michigan
#> 2728     76    301             Eastern Washington
#> 2729     74    305                         Temple
#> 2730     74    300                            USC
#> 2731     75    312                 Portland State
#> 2732     77    310                           Utah
#> 2733     73    307                     Penn State
#> 2734     76    292                         Auburn
#> 2735     75    292            Southern California
#> 2736     74    324                       Kentucky
#> 2737     76    290                 Colorado State
#> 2738     76    304                        Florida
#> 2739     75    295             South Dakota State
#> 2740     75    300                Texas Christian
#> 2741     76    300               Youngstown State
#> 2742     75    300                       Delaware
#> 2743     76    320                      Wisconsin
#> 2744     75    315           Wisconsin-Whitewater
#> 2745    6-3    291                      Tennessee
#> 2746     76    301                            USC
#> 2747    6-4    300                 South Carolina
#> 2748     77    308               Washington State
#> 2749     74    230                     Vanderbilt
#> 2750     75    291              Appalachian State
#> 2751     75    297                          Tulsa
#> 2752     75    330            Southern California
#> 2753     76    310                     Notre Dame
#> 2754     77    309                     Vanderbilt
#> 2755     72    224                Texas Christian
#> 2756     77    304                       Arkansas
#> 2757     74    299                            TCU
#> 2758     74    312           North Carolina State
#> 2759     74    310                       Missouri
#> 2760     74    300                         Purdue
#> 2761     76    299              Mississippi State
#> 2762     74    315                    Idaho State
#> 2763     76    303                        Harvard
#> 2764     77    318                       Nebraska
#> 2765     73    299                     Cincinnati
#> 2766     75    300               Western Michigan
#> 2767     76    307                           Iowa
#> 2768     75    295                 Oklahoma State
#> 2769     75    325                   Indiana, Pa.
#> 2770     76    303             North Dakota State
#> 2771     75    318                     California
#> 2772     76    295               Central Michigan
#> 2773     75    295              Appalachian State
#> 2774     72    290                  Brigham Young
#> 2775     74    300                      Texas A&M
#> 2776     78    300                       Virginia
#> 2777     75    300                  South Florida
#> 2778     73    300                        Buffalo
#> 2779     76    290                           Duke
#> 2780     77    305                         Oregon
#> 2781     75    308                 North Carolina
#> 2782     73    172                  Florida State
#> 2783     72    195               New Mexico State
#> 2784     70    178                           Utah
#> 2785     74    197                        Rutgers
#> 2786     71    193               Western Kentucky
#> 2787     71    199           Southern Mississippi
#> 2788     74    207                        Georgia
#> 2789     70    199                Central Florida
#> 2790     72    195                         Tulane
#> 2791     73    205           North Carolina State
#> 2792     74    188                    Mississippi
#> 2793     70    175                      Minnesota
#> 2794    6-2    208                      Wisconsin
#> 2795     72    200                      Villanova
#> 2796     71    187                        Clemson
#> 2797   5-10    190                San Diego State
#> 2798     72    191                       Oklahoma
#> 2799     71    207                       Illinois
#> 2800    5-9    198                  Texas-El Paso
#> 2801     69    175              Appalachian State
#> 2802     72    198                       Stanford
#> 2803     75    192                         Furman
#> 2804     71    191                  Florida State
#> 2805    6-1    200                         Kansas
#> 2806     70    174               Western Michigan
#> 2807   5-10    186                    Chattanooga
#> 2808     70    189                  East Carolina
#> 2809     72    190                 Valdosta State
#> 2810     71    170                      Villanova
#> 2811     70    185             Southeastern, Fla.
#> 2812     74    212                 Portland State
#> 2813     72    190          Florida International
#> 2814     71    190                 Portland State
#> 2815     71    188                Pittsburg State
#> 2816     70    185                   Shippensburg
#> 2817     71    190                   West Alabama
#> 2818     70    187                         Tulane
#> 2819     73    195                     Washington
#> 2820     74    192                 Michigan State
#> 2821     72    180                          Akron
#> 2822     70    196                    Boise State
#> 2823     72    210             Grand Valley State
#> 2824     72    180               New Mexico State
#> 2825     71    200                       Delaware
#> 2826   5-10    183                       Oklahoma
#> 2827     71    191                     Penn State
#> 2828     73    215                 San Jose State
#> 2829     74    188                       Michigan
#> 2830     71    184                          Texas
#> 2831     71    182                  Northern Iowa
#> 2832     71    188                   West Chester
#> 2833     74    201                        Florida
#> 2834     70    190                       Arkansas
#> 2835     72    205                 Illinois State
#> 2836     70    195           Southern Mississippi
#> 2837     71    188                 Louisiana Tech
#> 2838     73    194                     Penn State
#> 2839    6-0    195             Southern Methodist
#> 2840     71    196             North Dakota State
#> 2841     74    205                   Kansas State
#> 2842     70    186             Jacksonville State
#> 2843     71    192                Louisiana State
#> 2844    6-0    205                  West Virginia
#> 2845     71    180                  Virginia Tech
#> 2846     72    188                       Belhaven
#> 2847     75    205                      Limestone
#> 2848     72    193                  West Virginia
#> 2849    6-1    198                        Clemson
#> 2850     71    194          Florida International
#> 2851     71    195                         Auburn
#> 2852     72    190                       Arkansas
#> 2853     71    193                   Georgia Tech
#> 2854     74    205                  Florida State
#> 2855     73    185                  East Carolina
#> 2856   5-10    197                   Kansas State
#> 2857     71    188             North Dakota State
#> 2858     71    191                 San Jose State
#> 2859     71    192                    Boise State
#> 2860     74    206                   Oregon State
#> 2861     71    175                         Kansas
#> 2862     74    205                          Texas
#> 2863     74    185               Youngstown State
#> 2864   5-10    202             Southern Methodist
#> 2865     70    186                         Toledo
#> 2866     73    177               Western Michigan
#> 2867     73    188              Mississippi State
#> 2868     72    193                       Marshall
#> 2869     77    240                 Fairmont State
#> 2870     73    180               Youngstown State
#> 2871     71    200                      Minnesota
#> 2872     71    170           South Carolina State
#> 2873     71    194                   Georgia Tech
#> 2874     72    184                        Houston
#> 2875     70    195                Central Florida
#> 2876     72    196                 Oklahoma State
#> 2877     74    183                Central Florida
#> 2878     71    176                  Florida State
#> 2879     71    195              Mississippi State
#> 2880     74    196                          Texas
#> 2881     72    203                        Rutgers
#> 2882    6-0    205               Middle Tennessee
#> 2883     71    208                    Boise State
#> 2884     74    210                         Auburn
#> 2885     73    185                          Miami
#> 2886     71    190                 William & Mary
#> 2887     71    197                         Baylor
#> 2888   5-10    173                        Georgia
#> 2889     70    188                     Iowa State
#> 2890     71    192                  South Florida
#> 2891   5-10    187                     Louisville
#> 2892     71    187                         Temple
#> 2893   5-10    200                     Ohio State
#> 2894     75    197            Louisiana-Lafayette
#> 2895     70    195                       Maryland
#> 2896     72    198                       Marshall
#> 2897     70    194                     Iowa State
#> 2898     72    192                 Oklahoma State
#> 2899     71    185                 South Carolina
#> 2900     72    185                     Pittsburgh
#> 2901     70    170                Texas Christian
#> 2902     69    168                      Wisconsin
#> 2903     71    184            Southern California
#> 2904     72    185               Coastal Carolina
#> 2905     73    205                  Calgary, Can.
#> 2906     71    196                  Arizona State
#> 2907     70    185         North Carolina A&amp;T
#> 2908     70    185                       Missouri
#> 2909     71    185                  Southern Utah
#> 2910     73    209                         Kansas
#> 2911     73    205                  Brigham Young
#> 2912     74    205                 Portland State
#> 2913     70    180                  West Virginia
#> 2914     68    180                            USC
#> 2915     73    203                Louisiana State
#> 2916     70    175                   West Georgia
#> 2917     73    195                 San Jose State
#> 2918   5-10    190                       Delaware
#> 2919     70    188                 Oklahoma State
#> 2920     73    200                        Clemson
#> 2921     71    200                    Texas State
#> 2922     74    200               St. Francis (PA)
#> 2923     69    195                 South Carolina
#> 2924     70    180                        Indiana
#> 2925     72    190                  Georgia State
#> 2926     72    190                         Auburn
#> 2927     71    190                      Texas A&M
#> 2928     74    210                  Emporia State
#> 2929     74    213                        Montana
#> 2930     75    188                       Kentucky
#> 2931     69    190              Appalachian State
#> 2932     69    180                        Clemson
#> 2933     72    182         Southeastern Louisiana
#> 2934     74    190                        Alabama
#> 2935     70    195                        Alabama
#> 2936     74    220                 Valdosta State
#> 2937     72    195                 San Jose State
#> 2938    5-9    175                  Arizona State
#> 2939     70    177                    Mississippi
#> 2940     71    192                 Louisiana Tech
#> 2941     71    195                       Michigan
#> 2942    6-2    185              Mississippi State
#> 2943     70    189                  South Florida
#> 2944     75    215                       Nebraska
#> 2945     74    205                Tennessee State
#> 2946     72    193                           Rice
#> 2947     72    189                 Oklahoma State
#> 2948     72    185                    Wake Forest
#> 2949     71    195                      Miami, O.
#> 2950     73    200                          Texas
#> 2951     72    195                Central Florida
#> 2952     72    219                       Stanford
#> 2953     71    187                         Tulane
#> 2954     69    186               Louisiana-Monroe
#> 2955     72    200                  Massachusetts
#> 2956     71    181                           UCLA
#> 2957     71    206                   Murray State
#> 2958     68    170           Southern Mississippi
#> 2959   5-11    186                 Tarleton State
#> 2960    6-2    201                          Miami
#> 2961     73    200               Missouri Western
#> 2962     71    200                     Notre Dame
#> 2963     71    184                          Miami
#> 2964     70    188                    Boise State
#> 2965     70    183                      Wisconsin
#> 2966     72    203                  Southern Utah
#> 2967     72    190             Southern Methodist
#> 2968     70    196                 Trinity Int'l.
#> 2969    6-0    190               Florida Atlantic
#> 2970     71    188               Central Michigan
#> 2971   5-10    187                           UCLA
#> 2972     72    190                     Ohio State
#> 2973     72    190                 Nicholls State
#> 2974     70    170                          Lamar
#> 2975     76    225                    Boise State
#> 2976     73    216                       Michigan
#> 2977     70    200                        Clemson
#> 2978     72    204                       Nebraska
#> 2979     74    210               Florida Atlantic
#> 2980     70    208                         Oregon
#> 2981     72    200                      Tennessee
#> 2982     71    199                   Florida Tech
#> 2983     74    188                       Stanford
#> 2984     76    224                    Connecticut
#> 2985     70    185                           UNLV
#> 2986     73    205                 North Carolina
#> 2987     75    200                  North Alabama
#> 2988     71    203                   Northwestern
#> 2989     73    198                  Arizona State
#> 2990     74    213                  Wheaton, Ill.
#> 2991     72    190                   Fresno State
#> 2992     74    215                          Idaho
#> 2993     74    203                       Marshall
#> 2994     72    190                       Arkansas
#> 2995     73    210                     Vanderbilt
#> 2996     71    197                  James Madison
#> 2997     71    180            Southern California
#> 2998     72    180                        Clemson
#> 2999     72    194                        Georgia
#> 3000     72    192                     Notre Dame
#> 3001     72    204                     Penn State
#> 3002     73    207                        Rutgers
#> 3003     72    190                   Northwestern
#> 3004     70    198                     Kent State
#> 3005     69    194                   West Alabama
#> 3006     74    216                Central Florida
#> 3007     75    190                         Baylor
#> 3008     75    197                   North Dakota
#> 3009     74    200          Dickinson State, N.D.
#> 3010     76    300                        Clemson
#> 3011     77    280               Central Missouri
#> 3012     75    246                        Clemson
#> 3013     78    270                 Incarnate Word
#> 3014     74    296                  Arizona State
#> 3015     76    265                       Missouri
#> 3016     75    285                       Ole Miss
#> 3017     77    291                 Cortland State
#> 3018     75    331                        Alabama
#> 3019     74    248                        Montana
#> 3020     75    270                       Virginia
#> 3021     78    286                Alabama A&amp;M
#> 3022     78    275                  West Virginia
#> 3023     76    210                    Alabama A&M
#> 3024     74    280                       Delaware
#> 3025    6-6    305                        Hampton
#> 3026     79    272                   Georgia Tech
#> 3027     74    325                     Texas Tech
#> 3028     75    270                        Clemson
#> 3029     75    280            Southern California
#> 3030     75    270                  Northern Iowa
#> 3031     77    275                  Georgia State
#> 3032     75    272                      Wisconsin
#> 3033     74    295                Louisiana State
#> 3034    6-4    300                    Connecticut
#> 3035     75    278                  Winston-Salem
#> 3036     74    270                       Oklahoma
#> 3037     75    305                       Missouri
#> 3038     76    264                         Towson
#> 3039    6-4    265                        Rutgers
#> 3040     76    263                     Notre Dame
#> 3041    6-5    275                         Purdue
#> 3042     78    275            Concordia, St. Paul
#> 3043     77    258                         Baylor
#> 3044     76    295                     Texas Tech
#> 3045     74    300                 Michigan State
#> 3046     78    275               Nevada-Las Vegas
#> 3047     76    285                  Brigham Young
#> 3048     75    249                          Akron
#> 3049     75    242                       Illinois
#> 3050     75    260                   Georgia Tech
#> 3051     79    273                     Iowa State
#> 3052     77    305               Central Michigan
#> 3053     75    325                     Texas Tech
#> 3054     76    267                  Florida State
#> 3055     75    258                     Louisville
#> 3056     76    265                       Oklahoma
#> 3057     76    275                       Missouri
#> 3058     77    294                   Georgia Tech
#> 3059     74    334                 Arkansas State
#> 3060     76    243                  East Carolina
#> 3061     73    264                  James Madison
#> 3062     79    295                 North Carolina
#> 3063     76    275                     Penn State
#> 3064     75    307                           Utah
#> 3065     75    288                           Ohio
#> 3066     77    285                       Arkansas
#> 3067    6-3    246                     Washington
#> 3068     74    256               Washington State
#> 3069     76    299               Washington State
#> 3070     74    304                        Rutgers
#> 3071     74    280                           Utah
#> 3072     75    250               Northern Arizona
#> 3073     75    310                  Bowling Green
#> 3074     75    296                        Georgia
#> 3075     76    248                  James Madison
#> 3076     74    253                 Boston College
#> 3077    6-5    236                     California
#> 3078     77    275                  Brigham Young
#> 3079     76    272                       Stanford
#> 3080     75    279                       Marshall
#> 3081     74    260                       Missouri
#> 3082     75    263                     Penn State
#> 3083     76    290                       Richmond
#> 3084     75    268                     Pittsburgh
#> 3085    6-2    260                Bethune-Cookman
#> 3086     77    263                         Tulane
#> 3087     75    242             Jacksonville State
#> 3088     73    280              Appalachian State
#> 3089     77    265            Southern California
#> 3090     74    262                          Miami
#> 3091     76    240                Texas Christian
#> 3092     74    282                     Vanderbilt
#> 3093     77    261                    Boise State
#> 3094     74    280                        Indiana
#> 3095     75    290                     Pittsburgh
#> 3096     75    265                  Northern Iowa
#> 3097     74    307                        Florida
#> 3098     75    275                 South Carolina
#> 3099     75    287                 Louisiana Tech
#> 3100     76    280                    Chattanooga
#> 3101     75    270                         Nevada
#> 3102     76    308                        Hampton
#> 3103     78    259                       Stanford
#> 3104     78    275                         Oregon
#> 3105     76    274                      Texas A&M
#> 3106     76    295                     Notre Dame
#> 3107    6-4    267                         Marist
#> 3108     74    297                        Memphis
#> 3109     76    260                     Penn State
#> 3110     76    315                         Temple
#> 3111     75    267       North Carolina-Charlotte
#> 3112     75    259               Central Michigan
#> 3113     75    265                        Buffalo
#> 3114     75    260                  South Florida
#> 3115     75    255                       Kentucky
#> 3116     75    262                 Oklahoma State
#> 3117     73    240                     Ball State
#> 3118    6-4    301                        Wyoming
#> 3119     74    310                 Nicholls State
#> 3120    6-4    265                   East Central
#> 3121     74    240                        Colgate
#> 3122     74    270             Eastern Washington
#> 3123     75    271               Youngstown State
#> 3124     77    305                 Delaware State
#> 3125     74    245                       Shepherd
#> 3126    6-4    281                       Oklahoma
#> 3127     77    278                     Miami (FL)
#> 3128     77    261                       Richmond
#> 3129    6-3    260                       Virginia
#> 3130     76    251                           Lane
#> 3131     78    220             Alabama-Birmingham
#> 3132     75    288                          Miami
#> 3133     76    260                     Vanderbilt
#> 3134     76    290                    Boise State
#> 3135     77    275            Minn. State-Mankato
#> 3136     75    280                           Iowa
#> 3137     76    282                    Mississippi
#> 3138    6-3    259                          Texas
#> 3139     78    250        Notre Dame College (OH)
#> 3140     74    259                    Laval, Can.
#> 3141     75    246                   Georgia Tech
#> 3142     73    311                        Florida
#> 3143     76    285                       Michigan
#> 3144     76    315                          Miami
#> 3145     74    230                          Brown
#> 3146     77    256                 Incarnate Word
#> 3147     75    300                       Maryland
#> 3148     74    284                  Virginia Tech
#> 3149     74    317                       Stanford
#> 3150     75    272              Mississippi State
#> 3151     75    314                       Syracuse
#> 3152     73    305                  South Florida
#> 3153     76    280          Colorado State-Pueblo
#> 3154    6-5    302                   Regina, Can.
#> 3155     74    305                      Texas A&M
#> 3156     75    288           Southern Mississippi
#> 3157     76    285                           UCLA
#> 3158     75    346                        Memphis
#> 3159     75    278                    Wake Forest
#> 3160     72    298                Louisiana State
#> 3161     74    315            Southern California
#> 3162     75    320                        Georgia
#> 3163     74    278                       Maryland
#> 3164     75    310                        Arizona
#> 3165    6-3    330                        Houston
#> 3166     75    322                   Oregon State
#> 3167     75    302                       Michigan
#> 3168    6-2    345                           Utah
#> 3169     76    300                    Boise State
#> 3170     74    282                         Auburn
#> 3171     75    313                Louisiana State
#> 3172     76    340                         Oregon
#> 3173     76    304                     Penn State
#> 3174     74    309                  Northern Iowa
#> 3175     74    287                     Ohio State
#> 3176     76    318                        Georgia
#> 3177     73    295                        Georgia
#> 3178     76    298                     Notre Dame
#> 3179     74    297                  Virginia Tech
#> 3180     77    292                 North Carolina
#> 3181     76    300                        Georgia
#> 3182     73    303                Louisiana State
#> 3183     74    328                 North Carolina
#> 3184     74    308                        Ashland
#> 3185     76    290             Alabama-Birmingham
#> 3186     74    295                  Florida State
#> 3187     74    276                         Tulane
#> 3188     74    305                 Garden City CC
#> 3189     73    293                  Bowling Green
#> 3190    6-2    289                 San Jose State
#> 3191     73    300                        Georgia
#> 3192     77    293                          Miami
#> 3193     78    320                   Ferris State
#> 3194     76    295                    Weber State
#> 3195     75    305                          Tulsa
#> 3196     74    287                           Iowa
#> 3197     76    285                       Columbia
#> 3198     72    305              Sam Houston State
#> 3199     76    320                       Missouri
#> 3200     71    283                   Alcorn State
#> 3201     74    307                Central Florida
#> 3202     76    335                       Oklahoma
#> 3203     75    300                          Miami
#> 3204     75    312                    Mississippi
#> 3205     75    350              William Penn (IA)
#> 3206     73    310                 Boston College
#> 3207     75    285                     Ohio State
#> 3208     73    321                     Washington
#> 3209     74    300                       Illinois
#> 3210    6-5    330                       Maryland
#> 3211     72    305                 Oklahoma State
#> 3212     73    340                  Texas A&amp;M
#> 3213    6-5    302                        Buffalo
#> 3214     77    305                      Mars Hill
#> 3215     76    295                       Missouri
#> 3216     74    288                       Stanford
#> 3217     74    294                         Auburn
#> 3218     75    325                 Michigan State
#> 3219     75    300                       Michigan
#> 3220     75    305            N.E. Mississippi CC
#> 3221    6-2    325                     Iowa State
#> 3222    6-3    315                  Arizona State
#> 3223     76    295                     Ohio State
#> 3224     76    320                Louisiana State
#> 3225     72    295                     Kent State
#> 3226    6-6    318                      Minnesota
#> 3227    6-4    295              Southern Arkansas
#> 3228     77    280                         Temple
#> 3229     74    280                     Utah State
#> 3230     76    295                         Purdue
#> 3231    6-5    295                       Tusculum
#> 3232     75    301                        Florida
#> 3233     74    302                  South Florida
#> 3234     75    315                         Purdue
#> 3235     75    322                           UTSA
#> 3236    6-4    300               Washington State
#> 3237     75    341                       Oklahoma
#> 3238     75    280                         Toledo
#> 3239     73    331                       Arkansas
#> 3240    6-4    309              Mississippi State
#> 3241     76    320                       Missouri
#> 3242    6-0    315                  Arizona State
#> 3243     75    312                       Maryland
#> 3244    6-7    364                   Georgia Tech
#> 3245     74    319                     Kent State
#> 3246     73    305                            USC
#> 3247     74    304                         Toledo
#> 3248     72    292                      Minnesota
#> 3249     74    304                  Florida State
#> 3250     78    315              Mississippi State
#> 3251     73    246                    Wake Forest
#> 3252     74    220            Arkansas-Pine Bluff
#> 3253     72    233                   Oregon State
#> 3254     73    240                 San Jose State
#> 3255     72    246                       Michigan
#> 3256     75    234                   Kansas State
#> 3257     73    250                  Brigham Young
#> 3258     74    265                       Michigan
#> 3259     73    240                    North Texas
#> 3260    6-1    255                         Auburn
#> 3261     70    235                  Virginia Tech
#> 3262     71    254                        Alabama
#> 3263     72    233                           UCLA
#> 3264     75    255                          Brown
#> 3265     72    240                     Pittsburgh
#> 3266     73    235                        Memphis
#> 3267     76    244                       Michigan
#> 3268     73    233             Southern Methodist
#> 3269    6-2    240                      Tennessee
#> 3270     72    239                   Northwestern
#> 3271    6-1    246                       Oklahoma
#> 3272     74    247                       Oklahoma
#> 3273     71    248                     Kent State
#> 3274     73    234                 South Carolina
#> 3275     74    241                  West Virginia
#> 3276     73    242                         Auburn
#> 3277     73    231              Mississippi State
#> 3278     74    255                       Stanford
#> 3279     74    250                       Nebraska
#> 3280     74    288                     Washington
#> 3281     70    195                     Vanderbilt
#> 3282     70    205                  West Virginia
#> 3283     75    210                       Richmond
#> 3284     72    190                      Dartmouth
#> 3285     74    203                     California
#> 3286     71    205                        Wofford
#> 3287     71    195                 North Carolina
#> 3288     76    212                        Houston
#> 3289     71    200                 Louisiana Tech
#> 3290     72    200           North Carolina State
#> 3291     74    199                       Michigan
#> 3292     70    199                         Auburn
#> 3293     71    211                     Utah State
#> 3294     72    194                San Diego State
#> 3295     71    195                         Auburn
#> 3296     72    198                    Mississippi
#> 3297     72    200                        Georgia
#> 3298     72    209                 South Carolina
#> 3299     72    205                Texas Christian
#> 3300     75    220                       Michigan
#> 3301     71    190                   West Alabama
#> 3302     74    200                        Georgia
#> 3303     71    208                     Ohio State
#> 3304   5-11    196                        Wyoming
#> 3305     72    196                  New Hampshire
#> 3306     70    202                          Texas
#> 3307    6-0    204                 Boston College
#> 3308     71    205                       Delaware
#> 3309     71    203                    Mississippi
#> 3310     72    190                  Brigham Young
#> 3311     71    190                 Boston College
#> 3312     71    214                 South Carolina
#> 3313     74    225                           Troy
#> 3314     70    210                Texas Christian
#> 3315     71    196                         Kansas
#> 3316     72    203                California, Pa.
#> 3317     70    204               St. Francis, Pa.
#> 3318     74    207                       Virginia
#> 3319   5-10    197                      Texas A&M
#> 3320     71    206                         Howard
#> 3321    6-0    195                      Wisconsin
#> 3322     71    202                  Norfolk State
#> 3323     72    207                     New Mexico
#> 3324     73    213                         Auburn
#> 3325     73    210                   Georgia Tech
#> 3326     70    204                      Wisconsin
#> 3327     74    205                       Arkansas
#> 3328     71    210                        Florida
#> 3329     73    221                           Ohio
#> 3330     75    225              Texas-San Antonio
#> 3331     72    200                 Oklahoma State
#> 3332     72    210                    Stony Brook
#> 3333     73    215                        Georgia
#> 3334     72    195                      Tennessee
#> 3335     72    200              Appalachian State
#> 3336     71    200                 Boston College
#> 3337    6-1    200                     Notre Dame
#> 3338     74    205                San Diego State
#> 3339     73    194                Fort Hays State
#> 3340     72    190                    Connecticut
#> 3341     72    206                       Newberry
#> 3342     73    200                     Vanderbilt
#> 3343     74    185            Southern California
#> 3344     73    206           North Carolina State
#> 3345     73    205                       Colorado
#> 3346     75    310                  Florida State
#> 3347     75    320                           Utah
#> 3348     75    315                           Iowa
#> 3349     76    305             Alabama-Birmingham
#> 3350     75    317                        Clemson
#> 3351     77    320                  Montana State
#> 3352     76    310                         Purdue
#> 3353     76    302                Louisiana State
#> 3354     77    312                 Illinois State
#> 3355     76    299                  Montana State
#> 3356     78    305                    Wake Forest
#> 3357     77    315             Wayne State, Mich.
#> 3358     76    310                         Oregon
#> 3359     78    305               Missouri Western
#> 3360    6-5    325                   Fresno State
#> 3361     74    315             Southern Methodist
#> 3362     76    320                San Diego State
#> 3363     75    304                  South Florida
#> 3364     75    320                        Memphis
#> 3365     76    315                        Clemson
#> 3366     77    331                          Idaho
#> 3367     75    315               Louisiana-Monroe
#> 3368     74    323                        Alabama
#> 3369     78    325                        Georgia
#> 3370     77    318                         Towson
#> 3371     77    328                      Tennessee
#> 3372     77    318                  Texas A&amp;M
#> 3373     75    310                       Nebraska
#> 3374     76    305                           Utah
#> 3375     79    320             South Dakota State
#> 3376     77    326                         Baylor
#> 3377     78    315                        Georgia
#> 3378     77    315                  Florida State
#> 3379     76    306              Appalachian State
#> 3380     77    310                           Iowa
#> 3381     78    315                 Carroll, Mont.
#> 3382     77    340                     New Mexico
#> 3383     77    309                           Utah
#> 3384     76    320                     Penn State
#> 3385     74    308                    Idaho State
#> 3386     79    316                      Wisconsin
#> 3387     77    305                        Georgia
#> 3388     77    320                      Wisconsin
#> 3389     76    305               Midwestern State
#> 3390     76    305                         Oregon
#> 3391     76    325            Southern California
#> 3392    6-4    300                        Rutgers
#> 3393     78    303                 William & Mary
#> 3394     77    329                  Massachusetts
#> 3395     75    320                            UAB
#> 3396    6-4    324                       Syracuse
#> 3397     74    308                 North Carolina
#> 3398     76    330                 Oklahoma State
#> 3399     77    305                     Pittsburgh
#> 3400     77    310            Southern California
#> 3401     76    294                    Connecticut
#> 3402     74    303                   Oregon State
#> 3403     77    315                       Nebraska
#> 3404     78    315                       Nebraska
#> 3405     76    340                       Arkansas
#> 3406     75    305                     Iowa State
#> 3407     74    293                           Elon
#> 3408     75    305                 Illinois State
#> 3409     77    305                 Boston College
#> 3410     74    336                Central Florida
#> 3411     78    315                      Wisconsin
#> 3412     76    340                     Louisville
#> 3413     75    328                   Fresno State
#> 3414     75    315                  Arizona State
#> 3415     78    315                         Baylor
#> 3416     76    305                Tennessee State
#> 3417     76    306                  Slippery Rock
#> 3418     76    305              Northern Colorado
#> 3419     75    341                           Utah
#> 3420     76    324                         Auburn
#> 3421     77    315                         Purdue
#> 3422     78    317                        Rutgers
#> 3423     75    300                     Kent State
#> 3424     76    326               Middle Tennessee
#> 3425     76    325                 North Carolina
#> 3426     75    325                       Virginia
#> 3427     76    325                San Diego State
#> 3428     77    305                         Toledo
#> 3429     76    315                   Oregon State
#> 3430     76    310                       Nebraska
#> 3431     78    310                     Cincinnati
#> 3432     78    325                Central Florida
#> 3433     75    321                    Mississippi
#> 3434     75    317                       Kentucky
#> 3435     77    320                           UCLA
#> 3436     75    290                         Hawaii
#> 3437     76    311                       Kutztown
#> 3438     77    295                 Colorado State
#> 3439     77    315               Western Kentucky
#> 3440     76    309                   Indianapolis
#> 3441     76    312                     Ohio State
#> 3442     76    310               Washington State
#> 3443     75    306           North Carolina State
#> 3444     76    306                       Michigan
#> 3445    6-5    310                        Alabama
#> 3446     78    303                           Iowa
#> 3447     79    311                      Texas A&M
#> 3448     77    325                     Ball State
#> 3449     79    305                       Virginia
#> 3450     78    304                           Ohio
#> 3451     78    300             Southern Methodist
#> 3452     76    315               Eastern Michigan
#> 3453     74    325                          Texas
#> 3454     78    315                   Fresno State
#> 3455     77    305                  Arizona State
#> 3456     75    321                   Kansas State
#> 3457     75    305                           Iowa
#> 3458     77    315                           Utah
#> 3459     73    306                       Oklahoma
#> 3460     79    300                  Texas-El Paso
#> 3461     76    318                         Toledo
#> 3462     77    325                         Temple
#> 3463     77    330               Middle Tennessee
#> 3464     75    320                Central Florida
#> 3465     75    308                  Arizona State
#> 3466    6-4    305                  West Virginia
#> 3467     77    295                        Alabama
#> 3468     77    340                    Mississippi
#> 3469     75    300                       Colorado
#> 3470     78    325                  Florida State
#> 3471     74    284              Southern Nazarene
#> 3472     77    298                  West Virginia
#> 3473     77    300              Louisiana College
#> 3474    6-3    320                       Illinois
#> 3475     76    306                       Illinois
#> 3476     74    305                           UCLA
#> 3477     78    325                 Colorado State
#> 3478     78    305                   Oregon State
#> 3479     75    303                        Harvard
#> 3480     77    305                       Stanford
#> 3481     75    310                 San Jose State
#> 3482    6-3    283                        Harvard
#> 3483    6-4    340                      Tennessee
#> 3484     73    232                           UTSA
#> 3485     72    247                        Arizona
#> 3486     72    236                  Virginia Tech
#> 3487     71    237                     Pittsburgh
#> 3488     74    230                   Northwestern
#> 3489     72    225                  Indiana State
#> 3490     74    221                    Mississippi
#> 3491     74    235                         Hawaii
#> 3492     76    250                          Texas
#> 3493     70    230                  Texas-El Paso
#> 3494     71    220                       Nebraska
#> 3495     73    242                     Ohio State
#> 3496     72    225                 Fairmont State
#> 3497     75    235             Alabama-Birmingham
#> 3498     74    228            Louisiana-Lafayette
#> 3499     73    230                     Penn State
#> 3500     73    230                     California
#> 3501     74    229                       Colorado
#> 3502     72    227                       Oklahoma
#> 3503     73    248                  Arizona State
#> 3504     72    216                          Texas
#> 3505     70    230             Central Washington
#> 3506     73    232                    Connecticut
#> 3507     72    247               Sacramento State
#> 3508     72    234                   Fresno State
#> 3509     74    228                 Michigan State
#> 3510     73    245                     Notre Dame
#> 3511     76    250                        Clemson
#> 3512     74    243                Louisiana State
#> 3513     72    235           North Carolina State
#> 3514     74    245                        Arizona
#> 3515     74    245                     Pittsburgh
#> 3516     72    224          Florida International
#> 3517     72    233                       Nebraska
#> 3518     74    225                  South Florida
#> 3519     73    220                  McNeese State
#> 3520     74    250                          Maine
#> 3521     75    241                       Maryland
#> 3522     74    235                         Kansas
#> 3523     76    245                       Shepherd
#> 3524     72    218                       Oklahoma
#> 3525     73    241                        Florida
#> 3526     73    242                       Missouri
#> 3527     73    223                     Washington
#> 3528     73    236                     Louisville
#> 3529     73    258                  Florida State
#> 3530     73    194                          Texas
#> 3531     72    190                 Oklahoma State
#> 3532     71    200                          Texas
#> 3533    6-1    200                     Washington
#> 3534     70    190                     Ohio State
#> 3535     76    210           North Carolina State
#> 3536     70    165                   Kansas State
#> 3537     74    215                        Georgia
#> 3538     70    202                     Louisville
#> 3539     69    162                    North Texas
#> 3540     70    182                     California
#> 3541     72    210                      Texas A&M
#> 3542     69    192                        Florida
#> 3543     72    200                           Iowa
#> 3544     71    197                           UCLA
#> 3545     73    204                  Florida State
#> 3546     72    212             South Dakota State
#> 3547     75    200                        Clemson
#> 3548   5-11    204                 North Carolina
#> 3549     72    193                         Auburn
#> 3550     70    175                        Georgia
#> 3551     73    215                        Memphis
#> 3552     69    188                  Texas A&amp;M
#> 3553     69    203                         Baylor
#> 3554    6-0    198                       Maryland
#> 3555     75    210                       Marshall
#> 3556    6-4    246                 Boston College
#> 3557     74    253                        Alabama
#> 3558   5-11    234                     Iowa State
#> 3559     77    231                   Ferris State
#> 3560     72    229                       Syracuse
#> 3561     74    238                      Wisconsin
#> 3562     75    238                 Boston College
#> 3563     73    228                         Temple
#> 3564     74    235                            USC
#> 3565     73    245                        Montana
#> 3566     72    230                       Delaware
#> 3567     74    240                 North Carolina
#> 3568    6-2    235                Louisiana State
#> 3569     73    250                     Washington
#> 3570     75    245                        Clemson
#> 3571     75    254               Central Michigan
#> 3572     72    233                       Kentucky
#> 3573     74    238                 Michigan State
#> 3574     74    237                        Georgia
#> 3575    6-1    240                  South Florida
#> 3576     74    240                     Penn State
#> 3577     76    240                   Northwestern
#> 3578     76    245                     Louisville
#> 3579     73    234                      Charlotte
#> 3580     75    235                          Miami
#> 3581     75    245                       Columbia
#> 3582     76    245                   Kansas State
#> 3583     71    221                          Akron
#> 3584     72    225         North Carolina Central
#> 3585     71    232             North Dakota State
#> 3586    6-2    250               Middle Tennessee
#> 3587     73    251                 North Carolina
#> 3588     74    230                        Alabama
#> 3589     74    235                          Idaho
#> 3590    6-2    254                        Rutgers
#> 3591     75    239                         Oregon
#> 3592     73    251                     Louisville
#> 3593    6-4    267               Missouri Western
#> 3594     76    240                     Vanderbilt
#> 3595     73    245                     California
#> 3596     74    223                 Boston College
#> 3597     75    235                  West Virginia
#> 3598     75    255                     Miami (FL)
#> 3599     73    235                       Nebraska
#> 3600    6-0    246                  James Madison
#> 3601     75    215                  Florida State
#> 3602     74    235                       Marshall
#> 3603     73    211               Washington State
#> 3604     74    273                        Florida
#> 3605    6-3    259                       Virginia
#> 3606     74    255                     Miami (FL)
#> 3607     76    240                   Fresno State
#> 3608     75    240                      Texas A&M
#> 3609     74    223                      Tennessee
#> 3610     73    228                        Alabama
#> 3611     72    227                            UCF
#> 3612     77    235                Louisiana State
#> 3613    6-3    230                San Diego State
#> 3614     72    232                     Penn State
#> 3615     74    249                         Auburn
#> 3616     75    245                       Missouri
#> 3617     73    232                     Ohio State
#> 3618     73    245                           Utah
#> 3619     76    261                   Georgia Tech
#> 3620     73    245                         Nevada
#> 3621    6-2    248                 Illinois State
#> 3622     74    245                  Florida State
#> 3623     72    250                           Duke
#> 3624     73    233                  Florida State
#> 3625     75    261                        Arizona
#> 3626     75    225                  Southern Utah
#> 3627     75    220                          Miami
#> 3628     75    249                     Louisville
#> 3629     73    226                       Oklahoma
#> 3630     77    263                        Clemson
#> 3631     72    244                  West Virginia
#> 3632     72    235            Southern California
#> 3633    6-4    259                     Louisville
#> 3634     80    255             Alabama-Birmingham
#> 3635     78    260             Southeast Missouri
#> 3636     73    255                  Arizona State
#> 3637     74    230                       Nebraska
#> 3638     74    245                        Samford
#> 3639     75    241                    Boise State
#> 3640     76    255                     Cincinnati
#> 3641     75    245                        Georgia
#> 3642     73    230                     Notre Dame
#> 3643     74    238                     Utah State
#> 3644     75    244                        Alabama
#> 3645     76    256                     Penn State
#> 3646     76    259                     Louisville
#> 3647     74    244                       Michigan
#> 3648     74    240                     Vanderbilt
#> 3649     74    240                       Michigan
#> 3650     75    242                          Texas
#> 3651     74    222                     Utah State
#> 3652     75    265                  Arizona State
#> 3653     72    243                       Arkansas
#> 3654    6-5    250                    Mississippi
#> 3655    6-0    246                     Washington
#> 3656     74    252                     California
#> 3657     75    265            Southern California
#> 3658     75    245                  Florida State
#> 3659     75    254                 San Jose State
#> 3660     74    240                     Pittsburgh
#> 3661     77    259                        Georgia
#> 3662     74    252                Louisiana State
#> 3663     78    272                 North Carolina
#> 3664     73    246                       Kentucky
#> 3665     74    241                  Florida State
#> 3666     75    255            Southern California
#> 3667     74    245                      Wisconsin
#> 3668     74    235                  Florida State
#> 3669     73    212              Mississippi State
#> 3670     72    224                 Oklahoma State
#> 3671     74    236                     Penn State
#> 3672    6-0    231                         Kansas
#> 3673     72    242                        Clemson
#> 3674     71    240                     California
#> 3675     73    235                        Georgia
#> 3676     74    245                     Penn State
#> 3677     74    239                       Illinois
#> 3678     74    233                   Oregon State
#> 3679     73    234                    North Texas
#> 3680    6-4    262                      Tennessee
#> 3681     75    254                        Arizona
#> 3682     72    230                     Louisville
#> 3683     75    252                        Alabama
#> 3684     74    230               Western Illinois
#> 3685     74    235                  Georgia State
#> 3686     71    217             Stetson University
#> 3687     72    223                          Miami
#> 3688     74    245                        Indiana
#> 3689     73    237                         Baylor
#> 3690     73    237                Texas Christian
#> 3691    6-5    250                   Oregon State
#> 3692     73    241                     Notre Dame
#> 3693     76    257                          Texas
#> 3694     73    232                      Minnesota
#> 3695     75    225                       LIU Post
#> 3696     72    225             Eastern Washington
#> 3697     75    243                       Virginia
#> 3698     75    259                          Texas
#> 3699     73    230               Sacramento State
#> 3700    6-5    253                     Louisville
#> 3701     74    239               Georgia Southern
#> 3702     75    255       Northwest Missouri State
#> 3703    6-3    255                           UCLA
#> 3704     75    240                         Toledo
#> 3705     75    235                   West Alabama
#> 3706     75    250             North Dakota State
#> 3707     73    235                     Notre Dame
#> 3708    6-1    230                     Ohio State
#> 3709     77    285                  South Florida
#> 3710     75    240                       Maryland
#> 3711     77    256                     California
#> 3712     77    242                  Brigham Young
#> 3713     74    231                     Penn State
#> 3714     73    237                     Cincinnati
#> 3715     77    249                          Brown
#> 3716     73    256                     California
#> 3717     75    241              Mississippi State
#> 3718     75    240                        Indiana
#> 3719     75    245                      Air Force
#> 3720     73    247                        Alabama
#> 3721     77    240                           UCLA
#> 3722     73    242                         Oregon
#> 3723     72    205                        Florida
#> 3724     75    250                         Kansas
#> 3725     73    240                         Nevada
#> 3726     74    240                San Diego State
#> 3727     76    245                 Portland State
#> 3728     74    240               New Mexico State
#> 3729     76    258                      Texas A&M
#> 3730     75    320                       Nebraska
#> 3731     75    290                         Baylor
#> 3732    6-4    332        Northwestern State, La.
#> 3733     76    315                        Alabama
#> 3734     75    343                         Baylor
#> 3735     74    300                          Miami
#> 3736     74    308               Nevada-Las Vegas
#> 3737     76    293                      Wisconsin
#> 3738     73    304             Mississippi Valley
#> 3739     75    308                          Brown
#> 3740     75    301                        Alabama
#> 3741     77    273                 Valdosta State
#> 3742     74    290                           Duke
#> 3743     73    265           Southern Mississippi
#> 3744     73    320            Southern California
#> 3745     75    325                       Colorado
#> 3746     77    287                     Cincinnati
#> 3747     77    292                Louisiana State
#> 3748     75    340             Eastern Washington
#> 3749     74    310                     Louisville
#> 3750     74    283                    Austin Peay
#> 3751     75    327                      Wisconsin
#> 3752     75    295                       Illinois
#> 3753     75    315               Western Kentucky
#> 3754     75    295                     Penn State
#> 3755     73    311                     California
#> 3756     73    339                       Arkansas
#> 3757     73    310              Mississippi State
#> 3758     75    320                         Auburn
#> 3759     77    283                     Penn State
#> 3760     74    327                           Troy
#> 3761     74    320                        Wofford
#> 3762     74    315                Louisiana State
#> 3763     75    312                          Miami
#> 3764     77    315                         Auburn
#> 3765     78    311                 North Carolina
#> 3766     77    310           North Carolina State
#> 3767     77    330                     Iowa State
#> 3768     77    308                      Air Force
#> 3769     76    295                           Iowa
#> 3770     75    305                     Penn State
#> 3771     79    328                 Boston College
#> 3772     75    315                    Wake Forest
#> 3773     77    316                       Stanford
#> 3774     75    323           North Carolina State
#> 3775     81    275                            BYU
#> 3776     75    307                       Ole Miss
#> 3777     76    328                Texas Christian
#> 3778     78    305                       Nebraska
#> 3779     76    305                       Michigan
#> 3780     76    320                     Kent State
#> 3781     75    300                  James Madison
#> 3782     76    310                         Hawaii
#> 3783     78    320                     Notre Dame
#> 3784     75    300                          Tulsa
#> 3785     77    321                      Tennessee
#> 3786     78    320                        Memphis
#> 3787     76    317                California, Pa.
#> 3788     76    310                         Oregon
#> 3789     75    248                   West Georgia
#> 3790     73    230                 North Carolina
#> 3791     74    225                California, Pa.
#> 3792     75    245                   Fresno State
#> 3793     72    240                        Rutgers
#> 3794     72    238                           Ohio
#> 3795     75    231                  Southern Utah
#> 3796     76    240             Charleston, W. Va.
#> 3797     74    240                  Arizona State
#> 3798     75    249                   Angelo State
#> 3799     74    250                       Virginia
#> 3800     75    252                         Auburn
#> 3801     73    238                   Oregon State
#> 3802     78    295                          Miami
#> 3803     75    275                       Illinois
#> 3804     75    228                 Incarnate Word
#> 3805     74    251                 North Carolina
#> 3806     73    219                 Arkansas State
#> 3807     76    244             Southeast Missouri
#> 3808     77    235                      Miami, O.
#> 3809     73    245                 San Jose State
#> 3810     74    232                    Weber State
#> 3811     75    251                 Michigan State
#> 3812     75    242                Texas Christian
#> 3813     72    230                           Duke
#> 3814     74    250                   Georgia Tech
#> 3815     75    240                     Ohio State
#> 3816     73    235                        Memphis
#> 3817     74    250                           Rice
#> 3818     75    255                      Tennessee
#> 3819     75    242                           Yale
#> 3820     73    235              Mississippi State
#> 3821     76    219                  Florida State
#> 3822     75    246                     Miami (OH)
#> 3823     72    255                     Pittsburgh
#> 3824     76    262                 Arkansas State
#> 3825     73    235                    North Texas
#> 3826     74    220                  Norfolk State
#> 3827     74    225              Appalachian State
#> 3828     72    235                          Maine
#> 3829     74    229                      Tennessee
#> 3830     75    260                       Maryland
#> 3831     77    248                        Alabama
#> 3832     74    226                       Stanford
#> 3833     74    240                      Wisconsin
#> 3834     72    245                    Wake Forest
#> 3835     73    230                 South Carolina
#> 3836     73    230                     Penn State
#> 3837     73    245                    Wake Forest
#> 3838     75    255                      Texas A&M
#> 3839     74    250                         Purdue
#> 3840     75    251              Northern Illinois
#> 3841     77    255             Texas A&M-Commerce
#> 3842     74    235                  Bowling Green
#> 3843     74    242                           UCLA
#> 3844     74    221                    Connecticut
#> 3845     73    235                        Houston
#> 3846     72    220                   Prairie View
#> 3847     72    231                 Arkansas State
#> 3848     75    268                           Utah
#> 3849     75    236                     Notre Dame
#> 3850     72    218                   Northwestern
#> 3851     74    250                 Illinois State
#> 3852     75    231                     Washington
#> 3853     76    251         Southeastern Louisiana
#> 3854     75    255               Western Michigan
#> 3855     75    235                  Virginia Tech
#> 3856     72    215               Western Michigan
#> 3857     75    245               Georgia Southern
#> 3858     76    245                  Texas-El Paso
#> 3859     74    241               New Mexico State
#> 3860     76    268                       Kentucky
#> 3861     75    240                    Chattanooga
#> 3862     74    225                  South Florida
#> 3863     75    250              Southern Illinois
#> 3864     71    236                         Auburn
#> 3865     73    230                        Florida
#> 3866     73    222                            LSU
#> 3867     72    227           North Carolina State
#> 3868     74    243                     Texas Tech
#> 3869     75    218                        Wyoming
#> 3870     76    256                 Louisiana Tech
#> 3871     74    245             Jacksonville State
#> 3872     74    245               Western Michigan
#> 3873     73    228                       Marshall
#> 3874     76    247                         Oregon
#> 3875     73    220                     Pittsburgh
#> 3876     75    220                          Texas
#> 3877     76    240                  Florida State
#> 3878     74    230                     Iowa State
#> 3879     79    302                           Troy
#> 3880     79    315                       Nebraska
#> 3881     77    300                       Kentucky
#> 3882     80    300                  Colorado-Mesa
#> 3883     77    310                        Buffalo
#> 3884     76    300                     Cincinnati
#> 3885     78    302                  East Carolina
#> 3886     76    322                Louisiana State
#> 3887     80    327                  East Carolina
#> 3888     78    310                         Baylor
#> 3889     77    335                      Minnesota
#> 3890     76    310                 William & Mary
#> 3891     79    310                     Iowa State
#> 3892     80    344                        Montana
#> 3893     80    320                        Buffalo
#> 3894     77    310              Mississippi State
#> 3895     78    297                         Toledo
#> 3896     77    300                 West Texas A&M
#> 3897     80    295                  Alabama State
#> 3898     78    308                Louisiana State
#> 3899     78    330              Mississippi State
#> 3900     78    295                         Wagner
#> 3901     78    313                  South Florida
#> 3902     78    322                  Brigham Young
#> 3903     77    300                 Portland State
#> 3904     79    315                San Diego State
#> 3905     81    323                       Nebraska
#> 3906     76    296                   Northwestern
#> 3907     79    302                    North Texas
#> 3908     76    310                  Virginia Tech
#> 3909     80    325                    Connecticut
#> 3910     78    300                  Virginia Tech
#> 3911     76    303                       Stanford
#> 3912     77    315           South Carolina State
#> 3913     77    326                       Arkansas
#> 3914     80    325                         Toledo
#> 3915     78    319                       Syracuse
#> 3916     78    316                    Idaho State
#> 3917     81    330                      Villanova
#> 3918     77    310                     Pittsburgh
#> 3919     75    280                       Maryland
#> 3920     77    306                        Florida
#> 3921     77    320                          Texas
#> 3922     78    291                  New Hampshire
#> 3923     79    300                     Cincinnati
#> 3924     77    333                       Michigan
#> 3925     78    330                        Florida
#> 3926     77    295               Eastern Michigan
#> 3927     77    311              Mississippi State
#> 3928     78    310                 North Carolina
#> 3929     79    280             Texas A&M-Commerce
#> 3930     78    301               Nevada-Las Vegas
#> 3931     77    315                       Kentucky
#> 3932     77    315                       Missouri
#> 3933     78    320               Central Missouri
#> 3934     77    310                 Oklahoma State
#> 3935     80    309                 South Carolina
#> 3936     78    315                Tennessee State
#> 3937     81    315           Southern Mississippi
#> 3938     78    310                     California
#> 3939     77    305                     Miami (FL)
#> 3940     78    325                         Temple
#> 3941     76    315                     Utah State
#> 3942     79    310                 Oklahoma State
#> 3943     75    295                  Southern Utah
#> 3944     78    315                San Diego State
#> 3945     79    325                      Dartmouth
#> 3946     77    310                     Louisville
#> 3947     78    308        Northwestern State, La.
#> 3948     77    315                          Miami
#> 3949     80    302                     Notre Dame
#> 3950     79    320                 West Texas A&M
#> 3951     79    288                   West Georgia
#> 3952     78    302          Florida International
#> 3953     78    312                        Arizona
#> 3954     76    297                    Boise State
#> 3955     76    311           Southern Mississippi
#> 3956     77    308                       Virginia
#> 3957     80    305                 William & Mary
#> 3958     81    315                 Boston College
#> 3959     80    321                 Hillsdale (MI)
#> 3960     78    305                      Villanova
#> 3961     73    194                        Florida
#> 3962     74    206                  Texas A&amp;M
#> 3963     71    182                  Southern Utah
#> 3964     75    207                        Samford
#> 3965    6-2    230                      Texas A&M
#> 3966     75    220                      Texas A&M
#> 3967     73    231                      Tennessee
#> 3968     75    218                       Arkansas
#> 3969     71    224               California-Davis
#> 3970     75    210                      Tennessee
#> 3971     76    219                          Miami
#> 3972     74    221                Louisiana State
#> 3973     75    214                     Notre Dame
#> 3974    6-0    217                   Regina, Can.
#> 3975     73    205                        Wofford
#> 3976     71    220                 Texas Southern
#> 3977     72    192              Fort Valley State
#> 3978    6-3    188                 Boston College
#> 3979     73    217                      Tennessee
#> 3980     72    208                          Miami
#> 3981     72    220                 Colorado State
#> 3982     73    213                       UC Davis
#> 3983     72    205                  Carson-Newman
#> 3984     74    225                       Michigan
#> 3985     72    200               Western Carolina
#> 3986    6-0    195                           UCLA
#> 3987     74    220                 Louisiana Tech
#> 3988     74    193                  Arizona State
#> 3989     77    250                     Ohio State
#> 3990     76    225                     Vanderbilt
#> 3991     77    220                       Shepherd
#> 3992     74    221           Southern Mississippi
#> 3993     79    240                  Arizona State
#> 3994    6-3    230                         Baylor
#> 3995     76    225                       Oklahoma
#> 3996     75    212                       Michigan
#> 3997     73    210                        Samford
#> 3998     70    210                  South Florida
#> 3999     75    219                           Troy
#>                                            high_school    gsis_id espn_id
#> 1                                         Saguaro (AZ) 00-0035236 4038999
#> 2                                     Statesville (NC) 00-0033435 3048663
#> 3                                  Strom Thurmond (SC) 00-0032933 3056354
#> 4                                       Oceanside (CA) 00-0036043 3821572
#> 5                               Allendale-Fairfax (SC) 00-0031052   16890
#> 6                                         Wagoner (OK) 00-0032848 2977742
#> 7                               American Heritage (FL) 00-0036884      NA
#> 8                                         Hammond (LA) 00-0030528   15817
#> 9                               South Dade Senior (FL) 00-0036889      NA
#> 10                                     Whitehouse (TX) 00-0035485 3914477
#> 11                                         Downey (CA) 00-0035705 4043089
#> 12                                         Crespi (CA) 00-0032560 2579163
#> 13                      Trinity Christian Academy (FL) 00-0036046 3920823
#> 14                              West Orange-Stark (TX) 00-0035532 3859100
#> 15                                        Kempner (TX) 00-0029747   15782
#> 16                                       Bellevue (WA) 00-0033890 3127287
#> 17                                     New Canaan (CT) 00-0035248 3915282
#> 18                                         Circle (KS) 00-0031557 2577466
#> 19                                       Pewaukee (WI) 00-0027949   13979
#> 20                                      Hillsdale (OH) 00-0034939 3139448
#> 21                                         Tucker (GA) 00-0035343 3728308
#> 22                               Parsippany Hills (NJ) 00-0035541 3138765
#> 23                                      L.D. Bell (TX) 00-0030883   17017
#> 24                                 Junipero Serra (CA) 00-0034657 3134316
#> 25                                        Central (KY) 00-0027686   13292
#> 26                                       Herriman (UT) 00-0036371 4035666
#> 27                                        Neville (LA) 00-0036373 4035452
#> 28                             St. Augustine Prep (NJ) 00-0029627   15090
#> 29                                         Estero (FL) 00-0023853   11122
#> 30                             Crystal Lake South (IL) 00-0034473 4334300
#> 31                                   Desert Vista (AZ) 00-0031241   16820
#> 32                                    Glen Burnie (MD) 00-0034490 3894901
#> 33                             Boys' Latin School (MD) 00-0036896      NA
#> 34                           Redlands East Valley (CA) 00-0034404 3047582
#> 35                                    Lakota West (OH) 00-0032129 2514270
#> 36                                      Crestwood (SC) 00-0035855 3928847
#> 37                                   Nevada Union (CA) 00-0033580 3042895
#> 38                                          Afton (MO) 00-0032127 2971432
#> 39                                 Union-Endicott (NY) 00-0029585   14927
#> 40                                         Hominy (OK) 00-0036933      NA
#> 41                                   Palos Verdes (CA) 00-0032809 3043184
#> 42                                   Olathe North (KS) 00-0036356 4035462
#> 43                                           Troy (CA) 00-0028946   15241
#> 44                                    George Bush (TX) 00-0036363 3914630
#> 45                                       Bellevue (WA) 00-0032877 2573307
#> 46                                           Rain (AL) 00-0027993   14013
#> 47                                          Mexia (TX) 00-0029316   15035
#> 48                                   Western Tech (MD) 00-0035317 3120434
#> 49                                       Sycamore (OH) 00-0032528 2576585
#> 50                                   San Clemente (CA) 00-0033511 3045286
#> 51                             Council Rock South (PA) 00-0030585   15808
#> 52                                         Manvel (TX) 00-0035431 3122145
#> 53                                       Norcross (GA) 00-0032132 2512538
#> 54                                    Cypress Bay (FL) 00-0033960 2969959
#> 55                                  Mallard Creek (NC) 00-0032222 2971048
#> 56                               Bridgton Academy (ME) 00-0036539      NA
#> 57                                       West Oak (SC) 00-0022824    5713
#> 58                                        Jim Ned (TX) 00-0027688   13199
#> 59                                          Allen (TX) 00-0035228 3917315
#> 60                                    Briar Woods (VA) 00-0035146 3116172
#> 61                                  Mallard Creek (NC) 00-0034331 3116721
#> 62                           Central Dauphin East (PA) 00-0034681 3119195
#> 63                                     Wylie East (TX) 00-0036383 4242873
#> 64                                       McDowell (PA) 00-0033553 3045147
#> 65                                    Spartanburg (SC) 00-0035825 4035470
#> 66                                Bishop McNamara (IL) 00-0035924 4039274
#> 67                                       Columbia (GA) 00-0033414 3048698
#> 68                                    Monte Vista (CA) 00-0030061   15835
#> 69                                       Southern (KY) 00-0034319 3059766
#> 70                                        Freedom (CA) 00-0033258 3052166
#> 71                                   Clovis North (CA) 00-0034575 3047536
#> 72                                                <NA> 00-0037020      NA
#> 73                                        Waconia (MN) 00-0031558 2970726
#> 74                                         Delmar (DE) 00-0032864 2577731
#> 75                                   Jacksonville (AR) 00-0030155   16318
#> 76                                    Summerville (SC) 00-0027942   13983
#> 77                               Highland Springs (VA) 00-0035500 4037235
#> 78                                  Cibolo Steele (TX) 00-0035126 4043161
#> 79                                     Southmoore (OK) 00-0033449 3894883
#> 80                                       Westlake (CA) 00-0035876 3886809
#> 81                                        Trinity (KY) 00-0036936      NA
#> 82                                       Mayfield (OH) 00-0035527 3914328
#> 83                                    D.W. Daniel (SC) 00-0030564   15795
#> 84                                        Saguaro (AZ) 00-0034775 3895856
#> 85                                                <NA>       <NA>      NA
#> 86                                         Colony (CA) 00-0030706   16963
#> 87                               Rancho Cucamonga (CA) 00-0036956      NA
#> 88                                        Western (FL) 00-0033918 2971586
#> 89                                JSerra Catholic (CA) 00-0036950      NA
#> 90                                                <NA>       <NA> 3052477
#> 91                                       Westlake (GA) 00-0036285 4239995
#> 92                                         Brophy (AZ) 00-0034357 3915437
#> 93                                Shawnee Heights (KS) 00-0035633 4411769
#> 94                                 Woodland Hills (PA) 00-0032617 2576665
#> 95                                  Caesar Rodney (DE) 00-0030383   15842
#> 96                                   Early County (GA) 00-0030471   15877
#> 97                              Thurgood Marshall (TX) 00-0035255 3925358
#> 98                                     New Oxford (PA) 00-0032320 4010714
#> 99                                      Bassfield (MS) 00-0034792 3123963
#> 100                                Choctawhatchee (FL) 00-0036961      NA
#> 101                                      Spalding (GA)       <NA>      NA
#> 102                                       Garland (TX) 00-0036138 3908608
#> 103                                Lake Highlands (TX) 00-0034723 3040031
#> 104                                         Crest (NC) 00-0033093 2980097
#> 105                                     Barberton (OH) 00-0035265 4411771
#> 106                                    Greenville (AL) 00-0036291 4035494
#> 107                          Booker T. Washington (OK) 00-0035319 3122420
#> 108                                          Cary (NC) 00-0035390 4239817
#> 109                               Rockdale County (GA) 00-0031583 2576492
#> 110                                     Grandview (CO) 00-0030757   17230
#> 111                               Desert Mountain (AZ) 00-0031947 2517230
#> 112                                        Temple (TX) 00-0036948      NA
#> 113                         Westminster Christian (FL) 00-0036837      NA
#> 114                                   Charter Oak (CA) 00-0030968   17315
#> 115                                 Shepherd Hill (MA) 00-0035630 3672833
#> 116                                     Ridgewood (NJ) 00-0033702 3049899
#> 117                                     Vacaville (CA) 00-0036300 4243009
#> 118                              Grover Cleveland (NY) 00-0030387   15936
#> 119                                       Capital (WV) 00-0036824      NA
#> 120                                      Lakewood (FL) 00-0032052 2980100
#> 121                                        Jesuit (LA) 00-0032388 2976545
#> 122                                        Tucker (GA) 00-0031838 2577145
#> 123                                     Homestead (FL) 00-0036209 4040762
#> 124                                  Olive Branch (MS) 00-0029794   16299
#> 125                                  Alief Taylor (TX) 00-0034402 3039783
#> 126                                   Walled Lake (MI) 00-0036949      NA
#> 127                                    Costa Mesa (CA) 00-0035000 3933407
#> 128                                 Strake Jesuit (TX) 00-0034139 3123863
#> 129                                John Burroughs (MO) 00-0034413 3050073
#> 130                                 Gilman School (MD) 00-0030010   16393
#> 131                                    Carrollton (GA) 00-0028845   15151
#> 132                                         Palma (CA) 00-0036957      NA
#> 133                                Sheepshead Bay (NY) 00-0033631 3060134
#> 134                                       Concord (IN) 00-0032766 2979499
#> 135                              Catholic Central (MI) 00-0036947      NA
#> 136                            Southfield-Lathrup (MI) 00-0032405 2587711
#> 137                                  Braden River (FL) 00-0036833      NA
#> 138                                 North Forsyth (GA) 00-0034165 3049575
#> 139                                Don Bosco Prep (NJ) 00-0036295 4044138
#> 140                                    Middletown (MD) 00-0034379 3122927
#> 141                                   Cinnaminson (NJ) 00-0034140 3157727
#> 142                            Boys' Latin School (MD) 00-0036156      NA
#> 143                                      Pearland (TX) 00-0027114   12701
#> 144                                          Penn (PA) 00-0026143   11237
#> 145                                     Mater Dei (CA) 00-0030533   15948
#> 146                                       Wakulla (FL) 00-0036825      NA
#> 147                          St. Paul's Episcopal (AL) 00-0031288   16810
#> 148                                St. John Bosco (CA) 00-0034343 3886377
#> 149                                  Locust Grove (GA) 00-0036829      NA
#> 150                                    Stephenson (GA) 00-0032063 3025433
#> 151                                  Northwestern (SC) 00-0030578   15807
#> 152                                      Canisius (NY) 00-0035273 3123944
#> 153                                    Buena Park (CA) 00-0036302 3858276
#> 154                                        Elkins (TX) 00-0031279   16713
#> 155                                          Fife (WA) 00-0035235 3127304
#> 156                               Archbishop Wood (PA) 00-0036970      NA
#> 157                                      Glenwood (IL) 00-0035428 3115359
#> 158                                        Waukon (IA) 00-0035572 3144991
#> 159                 Chaminade College Preparatory (CA)       <NA>      NA
#> 160                                  Marble Falls (TX) 00-0035914 4039553
#> 161                             The Bolles School (FL) 00-0034830 3924365
#> 162                                  Cherry Creek (CO) 00-0034788 3118954
#> 163                                        Powell (TN) 00-0028097   14215
#> 164                                       Monarch (FL) 00-0034837 3925357
#> 165                             St. Joseph's Prep (PA) 00-0035208 3917914
#> 166                                    Piscataway (NJ) 00-0032778 2982828
#> 167                                      Moorpark (CA) 00-0033840 3066074
#> 168                                               <NA>       <NA>      NA
#> 169                                       Lincoln (NJ) 00-0036951      NA
#> 170                              Cardinal Gibbons (FL) 00-0034132 3126002
#> 171                                  Redemptorist (LA) 00-0034411 3115378
#> 172                                         Klein (TX) 00-0036841      NA
#> 173                                  Walsh Jesuit (OH) 00-0032354 2566609
#> 174                                     Webb City (MO) 00-0035992 4035112
#> 175                                    McClymonds (CA) 00-0032165 2578378
#> 176                                 Lehigh Senior (FL) 00-0034088 4036898
#> 177                                       Potomac (MD) 00-0032770 2976244
#> 178                                        Colton (CA) 00-0027965   13963
#> 179                          William Penn Charter (PA) 00-0032891 3042436
#> 180                                        Colony (CA) 00-0036124 4027919
#> 181                     Trinity Christian Academy (FL) 00-0034603 3843234
#> 182                               Long Beach Poly (CA) 00-0034979 3912545
#> 183                                        Hoover (AL) 00-0033281 3126356
#> 184                                          Muir (CA) 00-0032942 2971603
#> 185                                      Woodbury (NJ) 00-0034265 3054841
#> 186                                       Oakleaf (FL) 00-0035422 3915255
#> 187                                      Eastlake (CA) 00-0030294   16195
#> 188                     Evangel Christian Academy (LA) 00-0036587      NA
#> 189                                         Plano (TX) 00-0036987      NA
#> 190                                         Plant (FL) 00-0035714 3139613
#> 191                                        Folsom (CA) 00-0031559 2577139
#> 192                           Richard J. Reynolds (NC) 00-0027539   13845
#> 193                                Rockwall-Heath (TX) 00-0034277 3929846
#> 194                                   King's Fork (VA) 00-0033294 3045463
#> 195                                    New Castle (PA) 00-0036199 4240575
#> 196                                  Denver South (CO) 00-0026190   11284
#> 197                                  Beaver Local (OH) 00-0029586   14964
#> 198                                McKinney North (TX) 00-0036130 4035245
#> 199                                      Longview (TX) 00-0036081 3915837
#> 200                           Northwest Whitfield (GA) 00-0035519 3131784
#> 201                                Clayton Valley (CA) 00-0034731 3915388
#> 202                                          East (KS)       <NA>      NA
#> 203                               Rockwood Summit (MO) 00-0030511   15875
#> 204                                       Neville (LA) 00-0031346   16857
#> 205                                  David Prouty (MA) 00-0033376 2975417
#> 206                                       Newtown (CT) 00-0036565      NA
#> 207                                               <NA>       <NA> 2986883
#> 208                    Kapaun Mt. Carmel Catholic (OK) 00-0034978 4037650
#> 209                              East Mississippi (MS) 00-0036214 4242247
#> 210                               Stephens County (GA) 00-0036977      NA
#> 211                                      Westlake (TX) 00-0029597   15683
#> 212                                 Blair Academy (NJ) 00-0036940      NA
#> 213                                       Skyline (MI) 00-0036562      NA
#> 214                              Blackville-Hilda (SC) 00-0030761   17266
#> 215                              Iola-Scandinavia (WI) 00-0036157 4036153
#> 216                                       Pahokee (FL) 00-0028103   14202
#> 217                                       Livonia (LA) 00-0036323 4242207
#> 218                                    Statesboro (GA) 00-0028008   14048
#> 219                                      Anderson (FL) 00-0028278   14519
#> 220                                West Feliciana (LA) 00-0035651 3122766
#> 221                                    John Tyler (TX) 00-0033283 3040037
#> 222                                  Walnut Ridge (OH) 00-0036280 4040615
#> 223                                   Waynesville (MO) 00-0028932   15264
#> 224                                  Timber Creek (FL) 00-0034787 3060403
#> 225                                     Brookwood (GA) 00-0035408 3915184
#> 226                            Wisconsin Lutheran (WI) 00-0029592   14931
#> 227                                      Westlake (CA) 00-0035112 3863820
#> 228                                Loyola Academy (IL) 00-0034295 3048026
#> 229                                       Handley (AL) 00-0034281 3054842
#> 230                            SHAPE High School (BEL) 00-0030648   16706
#> 231                                North Gwinnett (GA) 00-0031417   16722
#> 232                                        Seward (NE) 00-0024417    9789
#> 233                                               <NA>       <NA>      NA
#> 234                                  Oakland Tech (CA) 00-0026300   11394
#> 235                                    Hallandale (FL) 00-0035993 4035671
#> 236                                 Boynton Beach (FL) 00-0034796 3916387
#> 237                                               <NA>       <NA> 3042451
#> 238                                 Miami Central (FL) 00-0031285   16944
#> 239                                  Timber Creek (FL) 00-0035760 3693033
#> 240                                     Crestwood (SC) 00-0036457      NA
#> 241                                   Tottenville (NY) 00-0034184 3051926
#> 242                                     La Grange (TX) 00-0036158 4241985
#> 243                          Booker T. Washington (OK) 00-0034975 4038441
#> 244                                 Reeths-Puffer (MI) 00-0036582      NA
#> 245                              Onondaga Central (FL) 00-0030513   15920
#> 246                                        Gorman (NV) 00-0032965 2980153
#> 247                                 West Catholic (PA) 00-0034628 3045160
#> 248                               Duncan Fletcher (FL) 00-0033946 3121656
#> 249                               Desert Mountain (AZ) 00-0034753 3116365
#> 250                              Lansing Catholic (MI) 00-0036583      NA
#> 251                                   Paso Robles (CA) 00-0035249 3921690
#> 252                                         Klein (TX) 00-0031690 2511973
#> 253                           High Point Regional (NJ) 00-0031598 2574591
#> 254                                               <NA>       <NA>      NA
#> 255                           Providence Catholic (IL) 00-0035703 3932423
#> 256                              Fort Myers South (FL) 00-0031325   16725
#> 257                                        DeSoto (TX) 00-0036133 3916204
#> 258                             Chaminade-Madonna (FL) 00-0035662 4241372
#> 259                                      Mitchell (TN) 00-0036125 3909416
#> 260                                   South Hills (TX) 00-0036630      NA
#> 261                                 Coconut Creek (FL) 00-0035819 4040628
#> 262                                   Tift County (GA) 00-0036550      NA
#> 263                                        Sachse (TX) 00-0036331 4039050
#> 264                         St. Michael's Academy (TX) 00-0031936 2514122
#> 265                                    Green Oaks (LA) 00-0033884 3042717
#> 266                                        Varina (VA) 00-0034996 3048681
#> 267                                       Cornell (PA) 00-0036166 3895791
#> 268                                  South Pointe (SC) 00-0036589      NA
#> 269                               Consortium Prep (MI) 00-0035357 3916577
#> 270                                        Tucson (AZ) 00-0034514 3133440
#> 271                                       Eufaula (AL) 00-0034391 3057524
#> 272                                 Mission Viejo (CA) 00-0036588      NA
#> 273                                       Sheldon (CA) 00-0034376 3121003
#> 274                   Pittsburgh Central Catholic (PA) 00-0036888      NA
#> 275                                 Miami Killian (FL) 00-0035290 3672862
#> 276                                      Fostoria (OH) 00-0030090   15960
#> 277                                       Astoria (OR) 00-0030114   15979
#> 278                            Montgomery Academy (AL) 00-0036189 3917159
#> 279                                     Northside (VA) 00-0036553      NA
#> 280                                        Austin (TX) 00-0027881   13245
#> 281                           Champagnat Catholic (FL) 00-0036914      NA
#> 282                                  Edwardsville (IL) 00-0036192 4240585
#> 283                                   Countryside (FL) 00-0034511 3051371
#> 284                                       Tarrant (AL) 00-0028339   14320
#> 285                            St. Thomas Aquinas (FL) 00-0033408 2980098
#> 286                              Lambeth College (GBR) 00-0031500 3734467
#> 287                                       Bingham (UT) 00-0030455   15802
#> 288                    Red Lion Christian Academy (DE) 00-0033598 3008150
#> 289                                  Millard West (NE) 00-0034782 3117255
#> 290                                   Omaha North (NE) 00-0032660 2982857
#> 291                                    North Pike (MS) 00-0032967 2971883
#> 292                                    Greenville (MI) 00-0032518 3057899
#> 293                                     Westfield (TX) 00-0035230 4039303
#> 294                                      Westland (OH) 00-0036187 4039505
#> 295                                    Dutch Fork (SC) 00-0036162 3917232
#> 296                                     Dan River (VA) 00-0034673 3929950
#> 297                     Trinity Christian Academy (FL) 00-0034430 3895831
#> 298                           St. Joseph Regional (NJ) 00-0035363 3917797
#> 299                                    Centennial (TN) 00-0035352 4035232
#> 300                                      Kimberly (WI) 00-0030463   15964
#> 301                                    St. Joseph (CT) 00-0032366 2976249
#> 302                                  Dr. Phillips (FL) 00-0033571 3046287
#> 303                                        Buford (GA) 00-0032497 2976549
#> 304                                       Western (FL) 00-0032151 2512577
#> 305                                   Cedar Falls (IA) 00-0034505 3040166
#> 306                                     Pineville (LA) 00-0035238 3707061
#> 307                                        Placer (CA) 00-0036784      NA
#> 308                                   Lake Dallas (TX) 00-0031567 2514244
#> 309                               Archbishop Wood (PA) 00-0035382 3929631
#> 310                              West Seneca East (NY) 00-0035784 3916584
#> 311                                        Rahway (NJ) 00-0033904 3051324
#> 312                                         Lenox (IA) 00-0036976      NA
#> 313                                         Edina (MN) 00-0036560      NA
#> 314                              Dowling Catholic (IA) 00-0033400 3043237
#> 315                                        Mentor (OH) 00-0033869 3039707
#> 316                                     Firebaugh (CA) 00-0034857 3918298
#> 317                                    Hallandale (FL) 00-0036251 4035676
#> 318                        Nature Coast Technical (FL) 00-0033308 3049916
#> 319                                   Deer Valley (CA) 00-0028063   14167
#> 320                             American Heritage (FL) 00-0035250 4040761
#> 321                            St. Thomas Aquinas (FL) 00-0031622 2576789
#> 322                             Brentwood Academy (TN) 00-0035689 3930086
#> 323                                  George Ranch (TX) 00-0036590      NA
#> 324                                Don Bosco Prep (NJ) 00-0035308 3122818
#> 325                             American Heritage (FL) 00-0033466 3128724
#> 326                                   South Elgin (IL) 00-0031787 3085107
#> 327                                  Good Counsel (MD) 00-0031588 2976212
#> 328                                     Northwood (LA) 00-0036571      NA
#> 329                                     Grandview (CO) 00-0033633 3043841
#> 330                                    Little Elm (TX) 00-0029000   15349
#> 331                                     Bellville (TX) 00-0027685   13295
#> 332                                      Seminole (FL) 00-0036196 4243537
#> 333                              Berean Christian (CA) 00-0036165 4242540
#> 334                                       Council (ID) 00-0031349   16847
#> 335                                         Plano (TX) 00-0035958 3928936
#> 336                                    Alpharetta (GA) 00-0036944      NA
#> 337                                     Riverdale (LA) 00-0034356 3843769
#> 338                                      Waukegan (IL) 00-0029901   16270
#> 339                                  South Pointe (SC) 00-0029542   14942
#> 340                                       Servite (CA) 00-0036561      NA
#> 341                                         Lamar (TX) 00-0036084 4038440
#> 342                                      Columbus (FL) 00-0036281 4240596
#> 343                                         Greer (SC) 00-0036299 4046679
#> 344                                     Charlotte (FL) 00-0036315 4046353
#> 345                                        Tucker (GA) 00-0030228   16562
#> 346                                        Citrus (FL) 00-0036037 4044133
#> 347                               Imani Christian (PA) 00-0036283 4241889
#> 348                                     Broughton (NC) 00-0032403 2577740
#> 349                               East Coast Prep (NJ) 00-0035950 4035290
#> 350                                        Camden (NJ) 00-0034496 3138733
#> 351                                          Mansfield       <NA>      NA
#> 352                                       Fishers (IN) 00-0036293 4043169
#> 353                          Fountain-Fort Carson (CO) 00-0032671 3059620
#> 354                                 Camden County (GA) 00-0035306 3957672
#> 355                                 Gulliver Prep (FL) 00-0035281 4037459
#> 356                          University Christian (FL) 00-0034382 3115456
#> 357                                       Central (AZ) 00-0036137      NA
#> 358                              Dougherty Valley (CA) 00-0034559 4035726
#> 359                                    Chancellor (VA) 00-0036288 4259594
#> 360                               Memphis Central (TN) 00-0034590 3042746
#> 361                             American Heritage (FL) 00-0035713 4035631
#> 362                                      Maumelle (AR) 00-0034287 3112083
#> 363                                       Rowlett (TX) 00-0030069   15858
#> 364                                  Johnson City (NY) 00-0031054   16910
#> 365                                       Whitmer (OH) 00-0036576      NA
#> 366                                        Lanier (GA) 00-0036220 4035495
#> 367                                  Indian Trail (WI) 00-0036558      NA
#> 368                                        Spring (TX) 00-0036311 4035407
#> 369                                     Menomonie (WI)       <NA>      NA
#> 370                                      Loveland (OH) 00-0035956 3916749
#> 371                                        Austin (AL) 00-0036566      NA
#> 372                                       Central (FL) 00-0032149 2576639
#> 373                            Pickerington North (OH) 00-0033909 2976295
#> 374                                      Plymouth (MI) 00-0035266 4040622
#> 375                                      Lakeside (GA) 00-0035952 3916943
#> 376                                    Ridge View (SC) 00-0035300 4259480
#> 377             Governor Simcoe Secondary School (CAN)       <NA> 4682912
#> 378                                     Deer Park (TX) 00-0033862 3043234
#> 379                                     Clarkston (MI) 00-0036714      NA
#> 380                                Haddon Heights (NJ) 00-0033875 2980504
#> 381                                St. John Bosco (CA) 00-0034154 3134315
#> 382                                       Tafuna (ASM) 00-0034302 3127273
#> 383                                    Burnsville (MN) 00-0036270 4034781
#> 384                                    Bloomfield (CT) 00-0029061   15373
#> 385                                   Grant Union (CA) 00-0031550 2978313
#> 386                 Friendship Collegiate Academy (DC) 00-0034396 3053047
#> 387                                   Brophy Prep (AZ) 00-0026027   11759
#> 388                                   IMG Academy (FL) 00-0036574      NA
#> 389                      Dawson-Bryant Coal Grove (OH) 00-0035829 3920814
#> 390                                      Brockton (MA) 00-0035344 3915304
#> 391                                   Mornington (VIC) 00-0032449 3061740
#> 392                                      Westlake (GA) 00-0027939   13994
#> 393                                     Elizabeth (NJ) 00-0033275 3051308
#> 394                                  San Clemente (CA) 00-0034869 3912547
#> 395                                    Bev Facey (CAN) 00-0036555      NA
#> 396                                      Homewood (AL) 00-0032104 2576336
#> 397                                         Godby (FL) 00-0035898 4040640
#> 398                               Mortimer Jordan (AL) 00-0036543      NA
#> 399                               Valor Christian (CO) 00-0033280 3117251
#> 400                                           Lee (AL) 00-0034571 3123303
#> 401                                        Okemos (MI) 00-0033284 2973051
#> 402                               Colquitt County (GA) 00-0032145 2512504
#> 403                                     Bountiful (UT) 00-0036968      NA
#> 404                                Digital Harbor (MD) 00-0034365 4045305
#> 405                               Archbishop Wood (PA) 00-0033720 2980120
#> 406                                Donaldsonville (LA) 00-0036438 4035426
#> 407                                               <NA>       <NA> 3053039
#> 408                                      Wesleyan (GA) 00-0037005      NA
#> 409                                       Coffman (OH) 00-0036910      NA
#> 410                                       Parkway (LA) 00-0036955      NA
#> 411                             New London Spicer (MN) 00-0034052 4294520
#> 412                                  Union County (SC) 00-0036572      NA
#> 413                                    Plantation (FL) 00-0032688 2574808
#> 414                                    Darlington (WI) 00-0032543 2977800
#> 415                     Imhotep Institute Charter (PA) 00-0034827 3915416
#> 416                                    Gwynn Park (MD) 00-0036034 4032749
#> 417                                       Neptune (NJ) 00-0034317 3046401
#> 418                              Muskegon Heights (MI) 00-0030663   17258
#> 419                                  Bishop Dunne (TX) 00-0036470      NA
#> 420                                        Laurel (MS) 00-0036385 4040652
#> 421                                      Franklin (CA) 00-0036152 4034849
#> 422                                        Oswego (IL) 00-0034607 4294837
#> 423                                        Tucker (GA) 00-0035696 3916126
#> 424                                 Boyd Anderson (FL) 00-0033784 3054847
#> 425                                     Pittsburg (CA) 00-0035293 3860287
#> 426                                       Kimball (TX) 00-0028924   15235
#> 427                                  Central East (CA) 00-0036292 4243253
#> 428                                  Northwestern (FL) 00-0033103 3051921
#> 429                                      Columbus (FL) 00-0032774 2969944
#> 430                                        Spring (TX) 00-0032786 3960454
#> 431                                    Massaponax (VA) 00-0032790 2566034
#> 432                                 North Clayton (GA) 00-0036307 4036651
#> 433                 Friendship Collegiate Academy (DC) 00-0033545 3115257
#> 434                              Rancho Cucamonga (CA) 00-0036908      NA
#> 435                    Red Lion Christian Academy (DE) 00-0032107 2574582
#> 436                                    Billy Ryan (TX) 00-0032265 2969921
#> 437                                               <NA> 00-0030449   15844
#> 438                               Hodgson Vo-Tech (DE) 00-0034387 3117922
#> 439                 Friendship Collegiate Academy (DC) 00-0031551 2969924
#> 440                                       Granger (UT) 00-0036909      NA
#> 441                                     Del Campo (CA) 00-0029657   14984
#> 442                                    Alpharetta (GA) 00-0036065 3911982
#> 443                                        Peoria (IL) 00-0036204 4376288
#> 444                          St. Joseph's Academy (FL) 00-0031203   17427
#> 445                          Lincoln Park Academy (FL) 00-0036205 4257195
#> 446                                        Newnan (GA) 00-0030527   15806
#> 447                                Oaks Christian (CA) 00-0031175   16873
#> 448                                  Macon County (GA) 00-0034874 3915189
#> 449                                    Cedar Hill (TX) 00-0036305 3917016
#> 450                                  South Warren (KY) 00-0034372 3124779
#> 451                                    Point Loma (CA) 00-0036704      NA
#> 452                               James F. Byrnes (SC) 00-0035549 3911689
#> 453                                      Leesburg (FL) 00-0029577   15074
#> 454                             St. Albans School (DC) 00-0036711      NA
#> 455                                      Carteret (NJ) 00-0036705      NA
#> 456                                      Westwood (FL) 00-0031040   16710
#> 457                            Archbishop Carroll (DC) 00-0031258   16761
#> 458                               Fort Dorchester (SC) 00-0027952   13984
#> 459                                   Lake Howell (FL) 00-0031130   17070
#> 460                                    Stephenson (GA) 00-0029193   14946
#> 461                                       Kearney (MO) 00-0029134   15355
#> 462                                         Weber (UT) 00-0028284   14572
#> 463                             Warren G. Harding (OH) 00-0034347 3894849
#> 464                          Choate Rosemary Hall (CT) 00-0036202 4032052
#> 465                                  Brother Rice (MI) 00-0036905      NA
#> 466                                      Westside (TX) 00-0032384 2972304
#> 467                                       Abilene (KS) 00-0032768 2577346
#> 468                                         Selma (AL) 00-0036318 3912245
#> 469                                   Downingtown (PA) 00-0033676 3059839
#> 470                                    Queen City (TX) 00-0022531    6012
#> 471                                      Canisius (NY) 00-0036966      NA
#> 472                       Montgomery Bell Academy (TN) 00-0035061 3129290
#> 473                                  Good Counsel (MD) 00-0035062 3129307
#> 474                                        Topeka (KS) 00-0036953      NA
#> 475                              La Salle College (PA) 00-0034606 3045166
#> 476                            Palm Beach Central (FL) 00-0031079   16863
#> 477                                          Katy (TX) 00-0027973   14012
#> 478                                      Westlake (TX) 00-0029567   14877
#> 479                                  Bishop Miege (KS)       <NA>      NA
#> 480                                      Harrison (GA) 00-0036945      NA
#> 481                              Central Catholic (OR) 00-0034597 3127335
#> 482                             American Heritage (FL) 00-0036906      NA
#> 483                                     Mira Mesa (CA) 00-0030874   17359
#> 484                                          Bunn (NC) 00-0033556 3066158
#> 485                                 Mount Healthy (OH) 00-0035685 4035538
#> 486                                               <NA>       <NA>      NA
#> 487                                        Shaler (PA) 00-0032986 2970262
#> 488                               South Allegheny (PA) 00-0032135 2979590
#> 489                                    St. Viator (IL) 00-0036290 4258595
#> 490                                     Roseville (MN) 00-0035562 3940587
#> 491                                   Charis Prep (NC) 00-0027696   13232
#> 492                                               <NA>       <NA> 2978744
#> 493                                       Rowlett (TX) 00-0030068   15839
#> 494                         Timber Creek Regional (NJ) 00-0031868 2577667
#> 495                                    Gwynn Park (MD) 00-0036308 4248504
#> 496                                          Horn (TX) 00-0032791 2577641
#> 497                                  Gadsden City (AL) 00-0036309 4040655
#> 498                              Hinsdale Central (IL) 00-0035074 3909300
#> 499                                   Deer Valley (CA) 00-0035621 3119317
#> 500                                       Hampton (VA) 00-0036907      NA
#> 501                       Orchard Lake St. Mary's (MI) 00-0031428   16799
#> 502                                   North Shore (TX) 00-0030781   17172
#> 503                                   Pine Forest (NC) 00-0035536 3128707
#> 504                                Houston County (GA) 00-0036856      NA
#> 505                                      Bradford (WI) 00-0031546 2576283
#> 506                                     Oak Grove (CA) 00-0033548 3052101
#> 507                                     Robichaud (MI) 00-0034683 3042785
#> 508                                   Sandy Creek (GA) 00-0032521 2980383
#> 509                             South Mecklenburg (NC) 00-0035899 4032484
#> 510                                        Judson (TX) 00-0034756 3046326
#> 511                                         Helix (CA) 00-0034446 3125356
#> 512                                       Eastern (PA) 00-0032379 3040506
#> 513                                        Nimitz (TX) 00-0028908   15231
#> 514                                       Wharton (FL) 00-0032758 3054955
#> 515                       Calvary Baptist Academy (LA) 00-0033791 2982632
#> 516                                     Ridgeland (GA) 00-0032939 3051388
#> 517                                      Mainland (FL) 00-0031181   16882
#> 518                                   Grant Union (CA) 00-0034533 3046382
#> 519                                        Snider (IN) 00-0034675 3919512
#> 520                                     Oak Ridge (TX) 00-0036902      NA
#> 521                                        Apopka (FL) 00-0033935 3052743
#> 522                            Archbishop Moeller (OH) 00-0034834 3121416
#> 523                               Bishop McDevitt (PA) 00-0032952 2976313
#> 524                                Quince Orchard (MD) 00-0031105   17071
#> 525                            St. Thomas Aquinas (FL) 00-0035048 3915285
#> 526                               Shawnee Heights (KS) 00-0036861      NA
#> 527                                      Harrison (MI) 00-0036341 4039029
#> 528                                        Shiloh (GA) 00-0036850      NA
#> 529                                    Buena Park (CA) 00-0033347 2979632
#> 530                                   West Stanly (NC) 00-0034800 3116748
#> 531                                      Grimsley (NC) 00-0032424 2977670
#> 532                             Highland Regional (NJ) 00-0029284   14994
#> 533                                    Notre Dame (LA) 00-0036851      NA
#> 534                               Bishop Shanahan (PA) 00-0035822 4038987
#> 535                                         Yates (TX) 00-0030148   16231
#> 536                                      Ragsdale (NC) 00-0033905 3050122
#> 537                                    Petersburg (VA) 00-0032043 2515319
#> 538                                       Garland (TX) 00-0036310 4046557
#> 539                              Fairfield Senior (OH) 00-0036865      NA
#> 540                                     Grovetown (GA) 00-0036852      NA
#> 541                                        Marcus (TX) 00-0035400 3895869
#> 542                                      Timpview (UT) 00-0031410   16801
#> 543                                    Fort Payne (AL) 00-0036854      NA
#> 544                     Prince of Peace Christian (TX) 00-0034921 3048898
#> 545                                   Thomasville (NC) 00-0036298 3917142
#> 546                            High Point Central (NC) 00-0035697 3116724
#> 547                             Hilliard Davidson (OH) 00-0036314 3917992
#> 548                                         Wylie (TX) 00-0036432 3928928
#> 549                                       Danbury (FL) 00-0033452 2982304
#> 550                                  Good Counsel (MD) 00-0036203 4040621
#> 551                                  Norman North (OK) 00-0033790 3052660
#> 552                                         Berea (OH) 00-0035895 4036507
#> 553                                Natrona County (WY) 00-0036294 3918330
#> 554                             Southern Regional (NJ) 00-0025630   10686
#> 555                                       Eastern (KY) 00-0033531 3040072
#> 556                                      La Salle (OH) 00-0036729      NA
#> 557                         Archbishop McNicholas (OH) 00-0027103   12669
#> 558                                        Folsom (CA) 00-0035100 3886812
#> 559                                        Athens (OH) 00-0036442 3915511
#> 560                                  Fayetteville (AR) 00-0032434 2574511
#> 561                                     Hahnville (LA) 00-0036734      NA
#> 562                                     C.E. King (TX) 00-0035291 4035222
#> 563                                   Hendrickson (TX) 00-0033526 3116389
#> 564                              Woodward Academy (GA) 00-0035442 4035006
#> 565                                       Freedom (CA) 00-0033897 3116385
#> 566                        Indianapolis Ben Davis (IN) 00-0036857      NA
#> 567                             Eleanor Roosevelt (MD) 00-0035295 3915532
#> 568                                        Folsom (CA) 00-0035629 4040726
#> 569                                      Parkston (SD) 00-0029672   14930
#> 570                              Royal Palm Beach (FL) 00-0034951 3915106
#> 571                                        Medina (OH) 00-0033798 2972331
#> 572                                       Lincoln (RI) 00-0036023 4036189
#> 573                                North Gwinnett (GA) 00-0032134 2574576
#> 574                                       Newport (WA) 00-0035631 3127310
#> 575                                Tarpon Springs (FL) 00-0035771 3923392
#> 576                     Evangel Christian Academy (LA) 00-0033292 3040569
#> 577                                 St. Augustine (LA) 00-0035399 3699902
#> 578                                       Wharton (FL) 00-0034686 3921564
#> 579                                    St. John's (DC) 00-0035769 3919557
#> 580                                     Oak Ridge (TN) 00-0036410 4239993
#> 581                             Archbishop Rummel (LA) 00-0036900      NA
#> 582                                      Clairton (PA) 00-0033009 3045144
#> 583                                       DuSable (IL) 00-0033114 3123986
#> 584                                          Hart (CA) 00-0035341 3931391
#> 585                                 Akron Central (NY) 00-0030076   16001
#> 586                               JSerra Catholic (CA) 00-0036236 4039016
#> 587                                   IMG Academy (FL) 00-0036996      NA
#> 588                       Calvary Baptist Academy (LA) 00-0035638 4035437
#> 589                               St. Bonaventure (CA) 00-0031785 2525933
#> 590                                     La Marque (TX) 00-0033467 2971632
#> 591                                       Miramar (FL) 00-0035210 3919107
#> 592                            Macedonia Nordonia (OH) 00-0034856 3915535
#> 593                                        DeSoto (TX) 00-0036114 4038437
#> 594                                   IMG Academy (FL) 00-0036282 4242208
#> 595                                  Northwestern (MD) 00-0033927 3046292
#> 596                                  San Gorgonio (CA) 00-0035108 3886327
#> 597                                 Mineral Wells (TX) 00-0033302 2971699
#> 598               Florida State University School (FL) 00-0034779 3859006
#> 599                                      Valencia (CA) 00-0033554 3052125
#> 600                                Liberty County (GA) 00-0036641      NA
#> 601                                      Yorktown (VA) 00-0034355 3116679
#> 602                                   Centerville (OH) 00-0033969 2974353
#> 603                                   Salem Hills (UT) 00-0035404 3912553
#> 604                                  South Pointe (SC) 00-0031364   16734
#> 605                                   St. Anthony (CA) 00-0036216 4048257
#> 606                              Arlington Martin (TX) 00-0033868 3122132
#> 607                                       Kennedy (CA) 00-0033540 3152371
#> 608                                    Southfield (MI) 00-0034019 3134681
#> 609                                      Westside (TX) 00-0036266 4039052
#> 610                                Warren Central (IN) 00-0033010 2976194
#> 611                                    Birmingham (CA) 00-0029568   15047
#> 612                                      Highland (ID) 00-0036883      NA
#> 613                      Santa Margarita Catholic (CA) 00-0034311 3040499
#> 614                                        Gretna (NE) 00-0032956 2974317
#> 615                                   IMG Academy (FL) 00-0035258 3886633
#> 616                                       Liberty (VA) 00-0034399 3045474
#> 617                                     McClellan (AR) 00-0036486      NA
#> 618                                 Cypress Woods (TX) 00-0035358 3150744
#> 619                                  West Potomac (VA)       <NA> 3045141
#> 620                                  Desert Pines (NV) 00-0036634      NA
#> 621                                        Carver (AL) 00-0035144 4040983
#> 622                                          Taft (CA) 00-0028180   14214
#> 623                                  Blue Springs (MO) 00-0033973 3125073
#> 624                                     Palo Duro (TX) 00-0034255 3046700
#> 625                                East Nashville (TN) 00-0036276 4242206
#> 626                         Monsignor Edward Pace (FL) 00-0033570 3045251
#> 627                                Pedro Menendez (FL) 00-0035177 3128396
#> 628                                        Bethel (VA) 00-0036915      NA
#> 629                                      Heritage (CA) 00-0035646 3138834
#> 630                                  Hillsborough (FL) 00-0029008   15379
#> 631                             Long Beach Wilson (CA) 00-0031426   16740
#> 632                                  Jacksonville (IL) 00-0035355 3116135
#> 633                                       Whitman (MD) 00-0033995 2976213
#> 634                                  North County (MO) 00-0034991 3910156
#> 635                                         Mason (OH) 00-0034664 3059936
#> 636                              Central Catholic (OH) 00-0036866      NA
#> 637                                     Lafayette (KY) 00-0036267 4241482
#> 638                                     Plainwell (MI) 00-0033057 2979534
#> 639                                    A.C. Flora (SC) 00-0036320 3924357
#> 640                                       Bearden (TN) 00-0023534    8513
#> 641                                         Wylie (TX) 00-0028986   15168
#> 642                                   Lake Travis (TX) 00-0034855 3052587
#> 643                                    Spain Park (AL) 00-0033319 3059989
#> 644                                     Great Oak (CA) 00-0036654      NA
#> 645                                      Oak Park (MI) 00-0034808 3915381
#> 646                                   West Orange (FL) 00-0034995 3932449
#> 647                                    Auburndale (FL) 00-0036208 4042808
#> 648                                         Crest (NC) 00-0036685      NA
#> 649                                     Cedartown (GA) 00-0034791 3128720
#> 650                                     Immokalee (FL) 00-0035628 3139602
#> 651                                        Butler (NC) 00-0036117 4045702
#> 652                                         South (OH) 00-0033923 3059915
#> 653                                        Carver (GA) 00-0029963   16076
#> 654                                      Berkeley (SC) 00-0036120 4384564
#> 655                          Benilde-St. Margaret (MN)       <NA>      NA
#> 656                         John Milledge Academy (GA) 00-0036232 4040774
#> 657                                   De La Salle (CA) 00-0032392 3043275
#> 658                                     Jamestown (NY) 00-0035039 3948283
#> 659                                  Cartersville (GA) 00-0036692      NA
#> 660                                   Cedar Grove (NJ) 00-0033885 3123076
#> 661                             George Washington (WV) 00-0033562 3039725
#> 662                                       Lutcher (LA) 00-0031382   16790
#> 663                                     Cass Tech (MI) 00-0036233 4258195
#> 664                                      Mesquite (TX) 00-0032977 3042910
#> 665                             American Heritage (FL) 00-0036999      NA
#> 666                                Choctaw County (MS) 00-0036110 3917569
#> 667                                       Amherst (WI) 00-0036376 4035788
#> 668                                    John Tyler (TX) 00-0036770      NA
#> 669                                        Varina (VA) 00-0032438 2979655
#> 670                                 Boynton Beach (FL) 00-0035499 3125705
#> 671                                 Avalon School (MD) 00-0036361 4040966
#> 672                                  Hillsborough (FL) 00-0033047 2977756
#> 673                          Scotlandville Magnet (LA) 00-0036935      NA
#> 674                                   James Logan (CA) 00-0036986      NA
#> 675                                 Linsly School (WV) 00-0031357   17474
#> 676                                     Cass Tech (MI) 00-0033928 3045207
#> 677                                               <NA>       <NA>      NA
#> 678                                      Cleburne (TX) 00-0036372 3917006
#> 679                                       Parkway (LA) 00-0036661      NA
#> 680                                         Cajon (CA) 00-0033512 2976099
#> 681                              South Fort Myers (FL) 00-0032454 3045130
#> 682                                       Windsor (CT) 00-0036764      NA
#> 683                                     Paraclete (CA) 00-0033083 2573317
#> 684                                      Woodlawn (LA) 00-0035301 3122135
#> 685                                    New Castle (PA) 00-0033877 3121415
#> 686                     East English Village Prep (MI) 00-0036982      NA
#> 687                               Franklin County (VA) 00-0033917 3052977
#> 688                                  Silver Bluff (SC) 00-0031411   16802
#> 689                                         Chase (NC) 00-0033563 2977681
#> 690                         Hamilton Southeastern (IN) 00-0032197 3040479
#> 691                         Lorne Park Secondary (CAN) 00-0031177   16831
#> 692                                   North Shore (TX) 00-0034373 3928979
#> 693                                       Cordova (TN) 00-0036649      NA
#> 694                                      Suwannee (FL) 00-0035247 4042141
#> 695                                     Mater Dei (CA) 00-0036767      NA
#> 696                                 David Douglas (OR) 00-0036942      NA
#> 697                                      Kentwood (WA) 00-0036537      NA
#> 698                 Canada Prep Football Academy (CAN) 00-0036366 3892883
#> 699                                      Kingwood (TX) 00-0036033 4038539
#> 700                                Bishop Chatard (IN) 00-0031402   16709
#> 701                        Sioux Falls Washington (SD) 00-0036663      NA
#> 702                                   Lake-Lehman (PA) 00-0035679 4033748
#> 703                                       Coppell (TX) 00-0034352 3821577
#> 704                                     Arlington (TX) 00-0036515      NA
#> 705                                Lincoln Pius X (NE) 00-0029621   14993
#> 706                                  Salmon River (ID) 00-0034674 3138677
#> 707                             Lincoln Southeast (NE) 00-0035413 3116097
#> 708                                      Herriman (UT) 00-0036028 3932336
#> 709                                    Harrisburg (PA) 00-0036932      NA
#> 710                                      Foothill (CA) 00-0032789 3116368
#> 711                                  South Sumter (FL) 00-0032382 3054962
#> 712                                 Raytown South (MO) 00-0036882      NA
#> 713                                         Elder (OH) 00-0028394   14676
#> 714                                North Gwinnett (GA) 00-0035416 3728250
#> 715                               Stafford Senior (VA) 00-0036886      NA
#> 716                                         UANL (MEX) 00-0036448 4686629
#> 717                                     Woodridge (OH) 00-0036458      NA
#> 718                                     Camarillo (CA) 00-0029692   14950
#> 719                              Lansing Catholic (MI) 00-0033662 2972515
#> 720                                 Pine-Richland (PA) 00-0036384 3895785
#> 721                                      Haughton (LA) 00-0033077 2577417
#> 722                           Davidson Day School (NC) 00-0035251 3115252
#> 723                                       Melrose (TN) 00-0035261 3916148
#> 724                                        Argyle (TX) 00-0036774      NA
#> 725                                      Westlake (OH) 00-0036768      NA
#> 726                                 A.C. Reynolds (NC) 00-0036139 4038815
#> 727                                John Burroughs (MO) 00-0033045 3051392
#> 728                                 McGill-Toolen (AL) 00-0034378 3123969
#> 729                                     Glassboro (NJ) 00-0033725 3045260
#> 730                                   Willowridge (TX) 00-0033326 2971556
#> 731                                  Rancho Verde (CA) 00-0027947   13978
#> 732                                  Redemptorist (LA) 00-0031534 2577302
#> 733                                        Steele (TX) 00-0036036 3915834
#> 734                                   James Bowie (TX) 00-0029709   15724
#> 735                              Hinsdale Central (IL) 00-0035067 3115981
#> 736                                    White Hall (AR) 00-0033528 2980073
#> 737                                        Tuttle (OK) 00-0033658 2991767
#> 738                                       Bingham (UT) 00-0034383 3117256
#> 739                        Shepherd Hill Regional (MA) 00-0036032 4036275
#> 740                          Sacred Heart-Griffin (IL) 00-0034867 3115928
#> 741                                 White Station (TN) 00-0034418 4036335
#> 742                               Pope John XXIII (NJ) 00-0033591 3121409
#> 743                                  Northwestern (FL) 00-0031544 2976499
#> 744                                      Brighton (UT) 00-0036646      NA
#> 745                                        Monroe (GA) 00-0034764 4036348
#> 746                                Lake Cormorant (MS) 00-0036775      NA
#> 747                                        Foster (TX) 00-0036358 4241389
#> 748                                        Booker (FL) 00-0036773      NA
#> 749                                         Rider (TX) 00-0036776      NA
#> 750                                Central Valley (PA) 00-0034510 3054845
#> 751                                     Dutchtown (LA) 00-0036391 4035448
#> 752                        Weyburn Comprehensive (CAN) 00-0031489 3173563
#> 753                                       Potomac (MD) 00-0032195 2969920
#> 754                                 Cypress Woods (TX) 00-0031904 2515641
#> 755                            Mount Saint Joseph (MD) 00-0031041   16715
#> 756                                      Columbus (GA) 00-0035862 4037216
#> 757                                      Harrison (MI) 00-0036390 3894830
#> 758                     Governor Thomas Jefferson (MD) 00-0033568 2976259
#> 759                             American Heritage (FL) 00-0036874      NA
#> 760                                  Dixie County (FL) 00-0034744 3115250
#> 761                                  Dr. Phillips (FL) 00-0031333   16735
#> 762                                       Central (TX) 00-0035227 3929850
#> 763                         Coral Springs Charter (FL) 00-0035780      NA
#> 764                                      Westside (GA) 00-0027872   13254
#> 765                                 Martin County (FL) 00-0032971 2969860
#> 766                                     Marquette (IL) 00-0034639 3050916
#> 767                            Byron P. Steele II (TX) 00-0036633      NA
#> 768                                     Riverview (FL) 00-0036639      NA
#> 769                                    Meadowdale (OH) 00-0036465      NA
#> 770                                  St. Ignatius (OH) 00-0035678 3915525
#> 771                              Mequon Homestead (WI) 00-0031270   16837
#> 772                                     Greenwood (MS) 00-0036668      NA
#> 773                          Holy Cross Regional (CAN)       <NA> 4035166
#> 774                                  D. W. Daniel (SC) 00-0031795 2576508
#> 775                              Waubonsie Valley (IL) 00-0035073 4422407
#> 776                          Long Island Lutheran (NY) 00-0031242   16866
#> 777                                       Natchez (MS) 00-0031636 2574009
#> 778                             Fort Walton Beach (FL) 00-0030402   15958
#> 779                                          Hope (AR) 00-0036420 4035566
#> 780                                         Plant (FL) 00-0034959 3125107
#> 781                                      Leilehua (HI) 00-0036399 4040910
#> 782                                       Brenham (TX) 00-0034112 4038544
#> 783                                       Wiggins (CO) 00-0035702 3125082
#> 784                               Marmion Academy (IL) 00-0032395 2576245
#> 785                                      Highland (ID) 00-0036514      NA
#> 786                                    North Penn (PA) 00-0029822   16339
#> 787                         John Curtis Christian (LA) 00-0034266 3134310
#> 788                                     Kennedale (TX) 00-0036995      NA
#> 789                                 Gilman School (MD) 00-0034806 3048692
#> 790                                        Dothan (AL) 00-0034954 3124634
#> 791                                     East Lake (FL) 00-0036428 3919548
#> 792                                        Shiloh (GA) 00-0032448 2972362
#> 793                                          Mays (GA) 00-0035615 3728310
#> 794                     Imhotep Institute Charter (PA) 00-0036725      NA
#> 795                                       Decorah (IA) 00-0034368 3040150
#> 796                            Academy at Shawnee (KY) 00-0035804 3908558
#> 797                                     Hillgrove (GA) 00-0034832 3116733
#> 798                                   Niles North (IL) 00-0036586      NA
#> 799                                   Gainesville (GA) 00-0034887 2577712
#> 800                                       Lincoln (OH) 00-0036952      NA
#> 801                                 Cheyenne East (WY) 00-0035757 3925443
#> 802                               Highlands Ranch (CO) 00-0029890   16377
#> 803                              Plainfield North (IL) 00-0035515 3916465
#> 804                              Spring Lake Park (MN) 00-0036015 3930912
#> 805                                Hartford Union (WI) 00-0037001      NA
#> 806                                               <NA>       <NA> 3040468
#> 807                                       Geneseo (IL) 00-0036720      NA
#> 808                                        Higley (AZ) 00-0034929 3128773
#> 809                                      Westlake (CA) 00-0033538 4035662
#> 810                                  Starr's Mill (GA) 00-0030092   15928
#> 811                                        Milton (FL) 00-0035821 3125280
#> 812                                    Terra Nova (CA) 00-0035988 4055171
#> 813                            Miami Northwestern (FL) 00-0031237   16728
#> 814                                  Lee's Summit (MO) 00-0035704 3924327
#> 815                                   Shadle Park (WA) 00-0034955 3722362
#> 816                 Little Rock Christian Academy (AR) 00-0035448 4035102
#> 817                                      Mainland (FL) 00-0036000 4042112
#> 818                                      Bradford (WI) 00-0032144 2576434
#> 819                             Wallace-Rose Hill (NC) 00-0036997      NA
#> 820                                  Baker County (FL) 00-0034208 3139033
#> 821                                      Hamilton (AZ) 00-0035641 3117259
#> 822                                 Cypress Creek (TX) 00-0031067   16932
#> 823                     Hargrave Military Academy (VA) 00-0029528   15096
#> 824                                      Westlake (TX) 00-0034957 3123867
#> 825                               Hoffman Estates (IL) 00-0033576 2975863
#> 826                          Cedar Rapids Kennedy (IA) 00-0036718      NA
#> 827                                   Omaha South (NE) 00-0035644 4036131
#> 828                          Sacred Heart Griffin (IL) 00-0036423 4035115
#> 829                                Junipero Serra (CA) 00-0035320 3932936
#> 830                                       Brenham (TX) 00-0034348 3128429
#> 831                               Deerfield Beach (FL) 00-0036407 4241463
#> 832                                     Broad Run (VA) 00-0035592 3139522
#> 833                                 Mountain View (VA) 00-0034370 3057987
#> 834                               University City (CA) 00-0033375 3134353
#> 835                               Southern Durham (NC) 00-0035864 3700815
#> 836                                     Westfield (TX) 00-0036439 4034964
#> 837                                   IMG Academy (FL) 00-0036412 4240380
#> 838                                Paul W. Bryant (AL) 00-0036657      NA
#> 839                                      Westgate (LA) 00-0031319   17463
#> 840                             Southlake Carroll (TX) 00-0034495 3128412
#> 841                                    Chanhassen (MN) 00-0034345 3128689
#> 842                                     Klein Oak (TX) 00-0036783      NA
#> 843                                 Tampa Gaither (FL) 00-0035270 3116175
#> 844                           South Grand Prairie (TX) 00-0036274 4241984
#> 845                                  H.D. Woodson (DC) 00-0036106 4037647
#> 846                                   IMG Academy (FL) 00-0035370 4035425
#> 847                                  Bartlesville (OK) 00-0036752      NA
#> 848                                       Grafton (MA) 00-0036993      NA
#> 849                                 Terry Sanford (NC) 00-0036530      NA
#> 850                                    South Cobb (GA) 00-0036748      NA
#> 851                               Bishop Sullivan (VA) 00-0036011 4030779
#> 852                                       Hanford (CA) 00-0036077 4040901
#> 853                                 Lloyd C. Bird (VA) 00-0036010 4046680
#> 854                                   Meadowbrook (VA) 00-0036743      NA
#> 855                                     Brunswick (GA) 00-0034745 3042499
#> 856                          Choate Rosemary Hall (CT) 00-0035655 3915297
#> 857                                     Bassfield (MS) 00-0035327      NA
#> 858                                    Holy Cross (NY) 00-0031870 2519038
#> 859                              Central Catholic (OR) 00-0036656      NA
#> 860                                 Mount Healthy (OH) 00-0032727 2576267
#> 861                                        Chavez (TX) 00-0029630   14944
#> 862                                          East (TN) 00-0035928 4040703
#> 863                                         Allen (TX) 00-0036954      NA
#> 864                                      Robinson (FL) 00-0034461 3051369
#> 865                                         Minor (AL) 00-0030500 2317118
#> 866                            Cretin-Derham Hall (MN) 00-0036444 3873928
#> 867                             Hunterdon Central (NJ) 00-0034171 3116158
#> 868                                     Penncrest (PA) 00-0036258 3930040
#> 869                                        Haltom (TX) 00-0032785 2971557
#> 870                                         Elder (OH) 00-0036749      NA
#> 871                                 James Clemens (AL) 00-0036234 3915252
#> 872                                  Edwardsville (IL) 00-0036816      NA
#> 873                               Belleville West (IL) 00-0035145 3821683
#> 874                                        Orland (CA) 00-0032870 3068939
#> 875                                   Ardrey Kell (NC) 00-0036249 4046690
#> 876                                       Hialeah (FL) 00-0035906 4365493
#> 877                             Birmingham Groves (MI) 00-0035330 4423367
#> 878                                Vista Murrieta (CA) 00-0035076 3116367
#> 879                                    Holy Cross (KY) 00-0036964      NA
#> 880                                     Northeast (TN) 00-0033557 3044729
#> 881                                  Indian River (VA) 00-0036744      NA
#> 882                                        Carver (AL) 00-0034336 3115310
#> 883                                  Lincoln Prep (MO) 00-0033880 3051852
#> 884                                      McDonogh (MD) 00-0034801 3128303
#> 885                         Thomas County Central (GA) 00-0035531 3728253
#> 886                                   Ardrey Kell (NC) 00-0032655 2980147
#> 887                                    Wyomissing (PA) 00-0033914 3043107
#> 888                                      Columbia (AL) 00-0031566 2574519
#> 889                                        Lorain (OH) 00-0036086 3915508
#> 890                           Downers Grove South (IL) 00-0034067 2980138
#> 891                                     Sanderson (NC) 00-0036624      NA
#> 892                                   West Jordan (UT) 00-0036238 4243257
#> 893                          Ladue Horton Watkins (MO) 00-0035156 3916370
#> 894                                        Xavier (CT) 00-0034177 3045169
#> 895                                     Del Valle (TX) 00-0036022 3915436
#> 896                                     Creekview (TX) 00-0035040 3116188
#> 897                                Marin Catholic (CA) 00-0033106 3046779
#> 898                              Central Catholic (OH) 00-0036006 4239083
#> 899                             St. Joseph's Prep (PA) 00-0036275 4259545
#> 900                                        Summit (CA) 00-0033948 2980453
#> 901                                      Abington (PA) 00-0035567 4421446
#> 902                                      Narbonne (CA) 00-0036670      NA
#> 903                            Pickerington North (OH) 00-0034614 3045238
#> 904                                Ralston Valley (CO) 00-0033863 3046435
#> 905                                  Desert Hills (UT) 00-0036880      NA
#> 906                                          Clay (FL) 00-0033788 2972351
#> 907                                        Xavier (IA) 00-0035328 3145005
#> 908                                        Butler (OH) 00-0032381 2976292
#> 909                                       Sumrall (MS) 00-0034420 4035379
#> 910                                       Cy-Fair (TX) 00-0036754      NA
#> 911                                      Norcross (GA) 00-0035787 3915772
#> 912                             Eastside Catholic (WA) 00-0036008 4243318
#> 913                             New London-Spicer (MN) 00-0036534      NA
#> 914                                         Adams (MI) 00-0035436 3121378
#> 915                                      Chariton (IA) 00-0035229 4036133
#> 916                                    Centennial (CA) 00-0036750      NA
#> 917                                   Farmingdale (NY) 00-0035544 3126997
#> 918                                     Mater Dei (CA) 00-0036963      NA
#> 919                                    Mendenhall (MS) 00-0034854 3047876
#> 920                             Stratford Academy (GA) 00-0036277 4035793
#> 921                                    Lewisville (TX) 00-0034930 4422214
#> 922                                           Jay (TX) 00-0033943 3115306
#> 923                     Greater Atlanta Christian (GA) 00-0032464 2973405
#> 924                                        Eureka (CA) 00-0036273 3915139
#> 925                                 Winder-Barrow (GA) 00-0034468 3124849
#> 926                                      Eastside (GA) 00-0036901      NA
#> 927                                       Doherty (MA) 00-0034780 3122797
#> 928                                 Bishop O'Dowd (CA) 00-0033524 3052170
#> 929                                   East Orange (NJ) 00-0033551 3943270
#> 930                                       Miramar (FL) 00-0036645      NA
#> 931                                     Northside (AR) 00-0036688      NA
#> 932                                   Rocky River (NC) 00-0034728 3895429
#> 933                                     Dollarway (AR) 00-0035079 4040870
#> 934                                    West Brook (TX) 00-0036462      NA
#> 935                               Caravel Academy (DE) 00-0034968 3915419
#> 936                                  Calvert Hall (MD) 00-0031584 2582132
#> 937                                      Woodlawn (LA) 00-0035962 3928920
#> 938                                        Summit (TX) 00-0036243 4038538
#> 939                              Miami Southridge (FL) 00-0036481      NA
#> 940                               Boylan Catholic (IL) 00-0032412 2974348
#> 941                           Wilmer Amina Carter (CA) 00-0033120 3122752
#> 942                                      Absegami (NJ) 00-0034587 3119119
#> 943                                               <NA>       <NA> 2516897
#> 944                             American Heritage (FL) 00-0036642      NA
#> 945                             Erie-Prophetstown (IL) 00-0036788      NA
#> 946                               Plainfield East (IL) 00-0034185 3045242
#> 947                                      Rockford (MI) 00-0033490 2977626
#> 948                                    Clarksdale (MS) 00-0035526 3115485
#> 949                                     Brentwood (TN) 00-0033082 2576736
#> 950                             St. Joseph's Prep (PA) 00-0036246 3929936
#> 951                                 Redondo Union (CA) 00-0036168 3932960
#> 952                                    Georgetown (TX) 00-0025580   10636
#> 953                          Selwyn House School (CAN) 00-0036464      NA
#> 954                                    Stephenson (GA) 00-0031935 2577446
#> 955                              Paramus Catholic (NJ) 00-0034967 4046523
#> 956                                   J.W. Sexton (MI) 00-0035790 4361650
#> 957                                    Stephenson (GA) 00-0036076 3915186
#> 958                                        Butler (NC) 00-0034421 3043276
#> 959                                    Lake Worth (FL) 00-0036239 4240655
#> 960                                  South County (VA) 00-0034754 3051746
#> 961                                        Reagan (TX) 00-0034999 3116431
#> 962                                      Garfield (OH) 00-0029643   14936
#> 963                                    Greenville (AL) 00-0031576 3043168
#> 964                                  Cypress Lake (FL) 00-0032401 3040180
#> 965                                       Trinity (TX) 00-0035965 3676832
#> 966                                       Liberty (CA) 00-0035961 4035817
#> 967                                       Bennett (NY) 00-0036658      NA
#> 968                                       Dillard (FL) 00-0035085 3128675
#> 969                               Corrigan-Camden (TX) 00-0036030 4039075
#> 970                                  Mount Carmel (IL) 00-0036014 4035542
#> 971                                        Exeter (PA) 00-0036890      NA
#> 972                                      Bay Port (WI) 00-0036655      NA
#> 973                           Nashville Community (IL) 00-0036631      NA
#> 974                                   Mounds View (MN) 00-0031433   16759
#> 975                                    Miamisburg (OH) 00-0036622      NA
#> 976                                Junipero Serra (CA) 00-0030074   15963
#> 977                                       Mayfair (CA) 00-0034721 4039396
#> 978                               Pleasant Valley (CA) 00-0023459    8439
#> 979                                       Liberty (CA) 00-0036264 4036378
#> 980                                    Cape Coral (FL) 00-0034131 3040535
#> 981                                    South Vigo (IN) 00-0034423 3052450
#> 982                                    Atascocita (TX) 00-0035973 4039358
#> 983                                        Burges (TX) 00-0033293 3042519
#> 984                              Lawrence Academy (MA) 00-0036265 4239934
#> 985                                Seminole Ridge (FL) 00-0035596 3919104
#> 986                                      Columbus (MS) 00-0036669      NA
#> 987                       Marian Central Catholic (IL) 00-0029419   15054
#> 988                                      Columbia (NJ) 00-0035084 3871880
#> 989                               Long Beach Poly (CA) 00-0024243    9614
#> 990                                        Valley (IA) 00-0036456 4036129
#> 991                                 Bishop Gorman (NV) 00-0035309 3932433
#> 992                                        Folsom (CA) 00-0036332 3914151
#> 993                                   IMG Academy (FL) 00-0035539 4035014
#> 994                                        Mepham (NY) 00-0036250 3914240
#> 995                                      Timpview (UT) 00-0033117 2980444
#> 996                                  McHenry East (IL) 00-0033757 2975674
#> 997                                         Alcoa (TN) 00-0028002   14053
#> 998                                     Palo Alto (CA) 00-0031381   16800
#> 999                                     Swansboro (NC) 00-0035385 3116182
#> 1000                                  Hill-McCloy (MI) 00-0035480 4408988
#> 1001                                   Louisville (MS) 00-0036463      NA
#> 1002                                      Servite (CA) 00-0034279 3932442
#> 1003                           Knoxville Catholic (TN) 00-0036991      NA
#> 1004                                  Gainesville (TX) 00-0033589 4212909
#> 1005                                    Urbandale (IA) 00-0034521 3128390
#> 1006                                     Lakewood (FL) 00-0034272 3051738
#> 1007                             Dowling Catholic (IA) 00-0034660 4048717
#> 1008                                Dwight Morrow (NJ) 00-0035593 3128317
#> 1009                             Royal Palm Beach (FL) 00-0035307 3120508
#> 1010                                    Riverside (WI) 00-0033038 2970716
#> 1011                         East English Village (MI) 00-0033566 3040145
#> 1012                        Christian Brothers College 00-0034485 4331768
#> 1013                                         Saks (AL) 00-0034278 3134448
#> 1014                                    Sylacauga (AL) 00-0033059 3045128
#> 1015                               Luther Burbank (CA) 00-0031097   16927
#> 1016                                    Dutchtown (LA) 00-0034361 3931399
#> 1017                                      Kountze (TX) 00-0035995 4035389
#> 1018                 West Side Leadership Academy (IN) 00-0035244 4240780
#> 1019                                    Dunnellon (FL) 00-0031338   16768
#> 1020                                    Bassfield (MS) 00-0034594 3128746
#> 1021                                Allen Academy (MI) 00-0034488 4334405
#> 1022                                      Kinston (NC) 00-0033920 3049268
#> 1023                               Cherokee Trail (CO) 00-0034163 3138764
#> 1024                                Harris County (GA) 00-0032970 2977647
#> 1025                                 Bishop Timon (NY) 00-0034612 3052926
#> 1026                                   Sandalwood (FL) 00-0033782 3045377
#> 1027                                        Hiram (GA) 00-0036224 3916409
#> 1028                                   West Rowan (NC) 00-0031264   16917
#> 1029                                 George Ranch (TX) 00-0034984 3917340
#> 1030                                     Mesquite (AZ) 00-0036568      NA
#> 1031                                       Elkins (TX) 00-0036289 4038557
#> 1032                              DePaul Catholic (NJ) 00-0036507      NA
#> 1033                                James Madison (TX) 00-0033469 3046343
#> 1034                             Montini Catholic (IL) 00-0033940 2979523
#> 1035                                       Center (MO) 00-0033131 3040471
#> 1036                        Conwell-Egan Catholic (ME)       <NA>      NA
#> 1037                             Honolulu Punahou (HI) 00-0032726 2971573
#> 1038                        John Curtis Christian (LA) 00-0036844      NA
#> 1039                                Bishop O'Dowd (CA) 00-0033344 2978211
#> 1040                              Rockdale County (GA) 00-0031740 3059880
#> 1041                                   Kamehameha (HI) 00-0032437 3050851
#> 1042                                   Long Reach (MD) 00-0036029 3930024
#> 1043                              Lee M. Thurston (MI) 00-0033336 3056916
#> 1044                           Blue Springs South (MO) 00-0034956 2512419
#> 1045                              St. Sebastian's (MA) 00-0035373 3122794
#> 1046                      King Low Heywood Thomas (CT) 00-0031308   16888
#> 1047                                       Oxford (AL) 00-0034500 3131775
#> 1048                               Hazelwood East (MO) 00-0031361   16767
#> 1049                              Mountain Pointe (AZ) 00-0036943      NA
#> 1050                                     Westlake (GA) 00-0027224   13729
#> 1051                                Monroe County (AL) 00-0035234 3131498
#> 1052                                       Martin (TX) 00-0030273   16549
#> 1053                             Trinity Catholic (FL) 00-0034817 3916414
#> 1054                                      Lebanon (MO) 00-0031282   16742
#> 1055                             La Salle College (PA) 00-0036859      NA
#> 1056                          Green Bay Southwest (WI) 00-0035245 3126035
#> 1057                                     Columbia (FL) 00-0032380 3051890
#> 1058                            Southlake Carroll (TX) 00-0036781      NA
#> 1059                                     Roncalli (IN) 00-0032787 2969262
#> 1060                                       Odessa (TX) 00-0028076   14116
#> 1061                             Miami Southridge (FL) 00-0030792   17211
#> 1062                                     Bellevue (WA) 00-0033245 2978298
#> 1063                                   Two Rivers (WI) 00-0036102 3921964
#> 1064                                St. Joseph's (AUS) 00-0033729 3051397
#> 1065             Greater Atlanta Christian School (GA) 00-0036898      NA
#> 1066                                  Gainesville (GA) 00-0033537 3122840
#> 1067                                      Hampton (VA) 00-0028118   14163
#> 1068                                      Hagerty (FL) 00-0032436 2574630
#> 1069                                 George Ranch (TX) 00-0036027 4038533
#> 1070                                        Plano (TX) 00-0030288   15971
#> 1071                                      Clinton (IA) 00-0032187 2508176
#> 1072                                     Imperial (CA) 00-0034838 3122672
#> 1073                                  South Jones (MS) 00-0036069 4362878
#> 1074                                    Rockhurst (MO) 00-0036195 3895840
#> 1075                       Champlain-Lennoxville (CAN) 00-0033421 4081127
#> 1076                                  Union Grove (GA) 00-0034364 3128452
#> 1077                                Bishop Gorman (NV) 00-0036556      NA
#> 1078                                        Brush (OH) 00-0033439 2971281
#> 1079                              La Costa Canyon (CA) 00-0036453 2575891
#> 1080                             Thomas Jefferson (FL) 00-0032398 2576581
#> 1081                                The Woodlands (TX) 00-0026035   11674
#> 1082                                 Gadsden City (AL) 00-0034669 4035853
#> 1083                              Clay-Chalkville (AL) 00-0036554      NA
#> 1084                           St. Thomas Aquinas (FL) 00-0032208 2579604
#> 1085                               North Paulding (GA) 00-0032128 2578533
#> 1086                                      Lincoln (CA) 00-0031236   16731
#> 1087                                        Hutto (TX) 00-0035101 3933568
#> 1088                                South Forsyth (GA) 00-0036858      NA
#> 1089                                     Franklin (MD) 00-0036782      NA
#> 1090                                  Lakota West (OH) 00-0032383 2578475
#> 1091                                  De La Salle (CA) 00-0031269   16808
#> 1092                                 College Park (TX) 00-0035188 4039292
#> 1093                             Southwest DeKalb (GA) 00-0035637 3910229
#> 1094                                     Suitland (MD) 00-0034767 3124574
#> 1095                            Eleanor Roosevelt (CA) 00-0036667      NA
#> 1096                                      Norland (FL) 00-0030575   15810
#> 1097                                   Gwynn Park (MD) 00-0035393 3910754
#> 1098                                    Southeast (FL) 00-0032596 2980115
#> 1099                                        Blake (FL) 00-0036222 4044540
#> 1100                                      Lowndes (GA) 00-0033393 4218312
#> 1101                                Encino Crespi (CA) 00-0035534 3912544
#> 1102                       Lumen Christi Catholic (MI) 00-0035530 3929835
#> 1103                                Chestnut Hill (PA) 00-0032198 2511090
#> 1104                                    Riverview (FL) 00-0030312   16039
#> 1105                                       Layton (UT) 00-0036253 4035661
#> 1106                           Millington Central (TN) 00-0034091 3050199
#> 1107                                   Lake Wales (FL) 00-0032830 3916678
#> 1108                                         East (TN) 00-0033124 2971364
#> 1109                              Smithson Valley (TX) 00-0027914   13939
#> 1110                                    Greenwood (SC) 00-0030566   15865
#> 1111                            Bishop Hendricken (RI) 00-0036479      NA
#> 1112                                      Tarboro (NC) 00-0034359 3040513
#> 1113                                    Barringer (NJ) 00-0034354 3047512
#> 1114                                Patrick Henry (CA) 00-0035850 4041572
#> 1115                    Eagle's Landing Christian (GA) 00-0033588 3052894
#> 1116                               Don Bosco Prep (NJ) 00-0033964 3051942
#> 1117                                    Ranchview (TX) 00-0036480      NA
#> 1118                                      Prosper (TX) 00-0034969 3124970
#> 1119                                    Lafayette (NY) 00-0035857 4034530
#> 1120                             Cardinal Gibbons (FL) 00-0034848 3917872
#> 1121                                         Taft (CA) 00-0032871 2577278
#> 1122                                       Murphy (AL) 00-0034325 3126489
#> 1123                              Mitchell County (GA) 00-0033952 4058825
#> 1124                                  Fond du Lac (WI) 00-0036227 3929658
#> 1125                             Honolulu Punahou (HI) 00-0032378 2971282
#> 1126                              G.A.R. Memorial (PA) 00-0031581 2976632
#> 1127                                     Cranford (NJ) 00-0036483      NA
#> 1128                                   John Adams (IN) 00-0036215 3915470
#> 1129                                      Central (NE) 00-0031734 3163375
#> 1130                                   Sprayberry (GA) 00-0035849 3915165
#> 1131                                       Summit (NJ) 00-0034084 3123052
#> 1132                                       Bremen (GA) 00-0036873      NA
#> 1133                                       Poteet (TX) 00-0034835 3821576
#> 1134                                    Lake View (SC) 00-0034846 3056362
#> 1135                                    Hightower (TX) 00-0034424 3126179
#> 1136                        NSU University School (FL) 00-0034090 3048912
#> 1137                                     Foothill (CA) 00-0035687 3117253
#> 1138                              Marmion Academy (IL) 00-0036229 3929928
#> 1139                                North Crowley (TX) 00-0034987 3071353
#> 1140                             La Salle College (PA) 00-0034431 3124005
#> 1141                           Hollidaysburg Area (PA) 00-0032753 2566045
#> 1142                            Red Bank Catholic (NJ) 00-0034342 3129308
#> 1143                                 Olathe South (KS) 00-0034836 3121595
#> 1144                                      Trinity (TX) 00-0033578 3052513
#> 1145                                 Stoney Creek (MI) 00-0030584   15790
#> 1146                                 Olive Branch (MS) 00-0033097 2574573
#> 1147                               Hamilton Union (CA) 00-0033269 3914922
#> 1148                                     Westlake (TX) 00-0036879      NA
#> 1149                                  Ashwaubenon (WI) 00-0036301 3914395
#> 1150                                     Chandler (AZ) 00-0031589 2577189
#> 1151                             Arlington Seguin (TX)       <NA>      NA
#> 1152                                      Century (ND) 00-0032950 2573079
#> 1153                                 Pace Academy (GA) 00-0036493      NA
#> 1154                                       Garner (NC) 00-0034367 3916430
#> 1155                                        Salem (NJ) 00-0036223 4242335
#> 1156                                       Booker (FL) 00-0033951 3139605
#> 1157                                    Paulsboro (NJ) 00-0033560 3047614
#> 1158                             Lindsay Thurber (CAN) 00-0035853 4611135
#> 1159                                     Lakewood (CA) 00-0034417 3055886
#> 1160                                      Coppell (TX)       <NA>      NA
#> 1161                                     Westlake (TX) 00-0036876      NA
#> 1162                                 Silverthorn (CAN)       <NA>      NA
#> 1163                                    Cathedral (IN) 00-0030181   16504
#> 1164                           Middleburg Academy (VA) 00-0033217 2998565
#> 1165                                      Minster (OH) 00-0036129 3915400
#> 1166                                       Waukee (IA)       <NA>      NA
#> 1167                     Wesson Attendance Center (MS) 00-0035852 3930097
#> 1168                                Patrick Henry (CA) 00-0036228 4054085
#> 1169                         St. Vincent–St. Mary (OH) 00-0035639 3121410
#> 1170                                 St. Aloysius (MS) 00-0035848 4374496
#> 1171                                Langham Creek (TX) 00-0035978 4035221
#> 1172                                       Lufkin (TX) 00-0034366 3915823
#> 1173                            Liberty Christian (VA) 00-0036482      NA
#> 1174                                     Midfield (AL) 00-0032112 2515759
#> 1175                                              <NA>       <NA> 2980808
#> 1176                                 Reynoldsburg (OH) 00-0035021 4061956
#> 1177                                   Henry Wise (MD) 00-0033251 2978109
#> 1178                                Miami Springs (FL) 00-0029608   14924
#> 1179                               Oaks Christian (CA) 00-0036252 4035687
#> 1180                                     Lakewood (FL) 00-0033926 3054026
#> 1181                                      Central (TX) 00-0035998 3917576
#> 1182                           Linfield Christian (CA) 00-0036807      NA
#> 1183                    Eastern Christian Academy (MD) 00-0035375 3115968
#> 1184                                        Piper (FL) 00-0031176   16929
#> 1185                            American Heritage (FL) 00-0036974      NA
#> 1186                                East Hamilton (TN) 00-0034516 3122160
#> 1187                                Robert E. Lee (AL) 00-0036306 4035505
#> 1188                                     New Hope (AL) 00-0033792 3051901
#> 1189                               Ralston Valley (CO) 00-0035378 3918331
#> 1190                                  IMG Academy (FL) 00-0036941      NA
#> 1191                                       Scioto (OH) 00-0030161   16269
#> 1192                                     McGavock (TN) 00-0036316 4371737
#> 1193                     Admiral Farragut Academy (FL) 00-0033941 2969961
#> 1194                                  Gainesville (GA) 00-0033582 3892689
#> 1195                                   Globe Tech (NY) 00-0033046 3115914
#> 1196                               Natrona County (WY) 00-0034842 3115249
#> 1197                                         Kew (AUS) 00-0033064 2971498
#> 1198                                     Lithonia (GA) 00-0036868      NA
#> 1199                                    Montclair (NJ) 00-0035642 3915239
#> 1200                          South Grand Prairie (TX) 00-0032667 2574891
#> 1201                            Groveport Madison (OH) 00-0033907 3042476
#> 1202                                    Dunnellon (FL) 00-0029799   16090
#> 1203                          DePaul College Prep (IL) 00-0036007 3929834
#> 1204                                      Brenham (TX) 00-0032261 2971698
#> 1205                         Pickerington Central (OH) 00-0036262 3915520
#> 1206                                      Bingham (UT) 00-0036881      NA
#> 1207                                    Birdville (TX) 00-0036798      NA
#> 1208                           Lampeter-Strasburg (PA) 00-0035189 3128444
#> 1209                                     Lakewood (NJ) 00-0036434 3923413
#> 1210                                      Oakleaf (FL) 00-0036235 4037468
#> 1211                                 Summer Creek (TX) 00-0035670 3139453
#> 1212                                 Amite County (MS) 00-0032215 3040207
#> 1213                                         Mays (GA) 00-0032094 3895228
#> 1214                                  IMG Academy (FL) 00-0036508      NA
#> 1215                                  North Shore (TX) 00-0036286 4242205
#> 1216                                       Tucker (GA) 00-0036675      NA
#> 1217                            Aquinas Institute (NY) 00-0036068      NA
#> 1218                                     Bellevue (WA) 00-0032968 3047566
#> 1219                                McKinney Boyd (TX) 00-0035827 3928931
#> 1220                                   East Burke (NC) 00-0030827   17037
#> 1221                            Blanchet Catholic (OR) 00-0036272 4611506
#> 1222                             Bamberg-Ehrhardt (SC) 00-0032255 2516325
#> 1223                                     Anderson (OH) 00-0031122   17388
#> 1224                           St. Thomas Aquinas (FL) 00-0031369   16770
#> 1225                           Palm Beach Central (FL) 00-0034522 3123064
#> 1226                             Hugh M. Cummings (NC) 00-0034380 3116739
#> 1227                               East St. Louis (IL) 00-0035832 4035113
#> 1228                                  West Monroe (LA) 00-0033889 3115313
#> 1229                                        Cocoa (FL) 00-0035237 4034961
#> 1230                                     Columbia (MS) 00-0034437 3115480
#> 1231                                       Mullen (CO) 00-0034162 3126368
#> 1232                          Marysville-Pilchuck (WA) 00-0036312 3124900
#> 1233                                 Cartersville (GA) 00-0036971      NA
#> 1234                        Battle Ground Academy (TN) 00-0033936 2979520
#> 1235                                    Millville (NJ) 00-0035268 3923397
#> 1236                               Knoxville West (TN) 00-0035835 3917812
#> 1237                                       Naples (FL) 00-0031045   16777
#> 1238                                     Jennings (LA) 00-0036973      NA
#> 1239                            Rockford Lutheran (IL) 00-0035831 4052042
#> 1240                                     Key West (FL) 00-0036698      NA
#> 1241                                    Marquette (WI) 00-0033854 2983509
#> 1242                                    Episcopal (TX) 00-0036975      NA
#> 1243                   Lafayette Central Catholic (IN) 00-0036785      NA
#> 1244                                     Matignon (MA) 00-0036210 4362648
#> 1245                             Naperville North (IL) 00-0031951 2508079
#> 1246                                        Perry (OH) 00-0036887      NA
#> 1247                            Cardinal Spellman (NY) 00-0031484 2531358
#> 1248                                      Shanley (ND) 00-0034011 4212989
#> 1249                                       Sonora (CA) 00-0035660 3933327
#> 1250                                Mountain View (OR) 00-0033387 3125404
#> 1251                                       Dorsey (CA) 00-0033006 2978308
#> 1252                                   Point Loma (CA) 00-0033572 3061612
#> 1253                                     Callaway (GA) 00-0035313 3915174
#> 1254                                     Eitwanda (CA) 00-0029293   15072
#> 1255                                         Pima (AZ) 00-0035901 4282647
#> 1256                                   Hallandale (FL) 00-0035826 4034944
#> 1257                                  Crete-Monee (IL) 00-0032951 3051889
#> 1258                                       Dunbar (MD) 00-0030525   15786
#> 1259                                       DeSoto (TX) 00-0036268 4243160
#> 1260                                   Alexandria (LA) 00-0034777 3115394
#> 1261                                       Biloxi (MS) 00-0036497      NA
#> 1262                                     New Bern (NC) 00-0034843 3895841
#> 1263                                       Minden (LA) 00-0036374 4040432
#> 1264                             Miami Carol City (FL) 00-0035147 3924364
#> 1265                                   Plantation (FL) 00-0034145 3128630
#> 1266                                       McComb (MS) 00-0034573 4037361
#> 1267                           Miami Northwestern (FL) 00-0035684 3915163
#> 1268                                Bryan Station (KY) 00-0036683      NA
#> 1269                                    Altavista (VA) 00-0035625 3917909
#> 1270                                 North Forney (TX) 00-0034680 3122136
#> 1271                           Blue Springs South (MO)       <NA>      NA
#> 1272                                       Colton (CA) 00-0030665   17259
#> 1273                               Stansbury Park (UT) 00-0036677      NA
#> 1274                                   Southridge (ML) 00-0036678      NA
#> 1275                                St. Augustine (LA) 00-0030459   15851
#> 1276                                 Corinth Lake (TX) 00-0034751 3144984
#> 1277                                 Pflugerville (TX) 00-0030503   15976
#> 1278                                  IMG Academy (FL) 00-0036632      NA
#> 1279                                    Glenville (OH) 00-0032210 2576242
#> 1280                                    Ravenwood (TN) 00-0032800 2567970
#> 1281                           Warren De La Salle (MI) 00-0036378 3915487
#> 1282                                 Mary Persons (GA) 00-0036682      NA
#> 1283                                      Waverly (MI) 00-0035779 4408979
#> 1284                              Parkway Central (MO) 00-0035656 3121634
#> 1285                                         Waco (TX) 00-0033066 3051775
#> 1286                              University City (MO) 00-0035890 4058925
#> 1287                                    Goldsboro (NC) 00-0032387 3115312
#> 1288                                     Veterans (GA) 00-0035315 3139036
#> 1289                                  Ocean Lakes (VA) 00-0034818 3122930
#> 1290                                      Houston (MS) 00-0032762 3044859
#> 1291                          West Morris Central (NJ) 00-0031595 2515270
#> 1292                                      Midland (MI) 00-0033831 3042702
#> 1293                             Lincoln-Way East (IL) 00-0035149 3115922
#> 1294                                  Westminster (GA) 00-0033303 3055899
#> 1295                     Our Lady of Good Counsel (MD) 00-0034781 3045132
#> 1296                                   Middletown (NJ) 00-0033122 2576257
#> 1297                                   Starkville (MS) 00-0036362 4259804
#> 1298                                     Richmond (NC) 00-0029249   14926
#> 1299                                    Clearview (OH) 00-0031348   16883
#> 1300                                     Sycamore (IL) 00-0034296 3140643
#> 1301                                    Horn Lake (MS) 00-0035157 3122906
#> 1302                                    Lone Star (TX) 00-0036621      NA
#> 1303                                   Washington (OK) 00-0030615   16665
#> 1304                                       Xavier (IA) 00-0034727 3052422
#> 1305                          St. Anne's-Belfield (VA) 00-0030441   15801
#> 1306                                      Shawnee (OK) 00-0036623      NA
#> 1307                                   New Canaan (CT) 00-0036367      NA
#> 1308                                   University (TN) 00-0036660      NA
#> 1309                                 Williamsburg (IA) 00-0032455 2582448
#> 1310                             Archbishop Alter (OH) 00-0032391 2577773
#> 1311                                Bessemer City (AL) 00-0035892 3917290
#> 1312                                        Boone (FL) 00-0035889 3915398
#> 1313                                   Whitehouse (TX) 00-0033873 3139477
#> 1314                                       Wilson (PA) 00-0026197   11291
#> 1315                                        Lamar (TX) 00-0036679      NA
#> 1316                                   Sprayberry (GA) 00-0031376   16782
#> 1317                           Vandebilt Catholic (LA) 00-0033295 3042494
#> 1318                                   Nottingham (NY) 00-0035715 3925346
#> 1319                                   John Ehret (LA) 00-0034301 3115375
#> 1320                                     Catholic (LA) 00-0036360 4242214
#> 1321                                       Jesuit (OR) 00-0029164   15422
#> 1322                            Hazelwood Central (MO) 00-0033569 3122923
#> 1323                              Peachtree Ridge (GA) 00-0034752 3116370
#> 1324                             Edgewood Academy (AL) 00-0036230 4035518
#> 1325                            Blue Valley North (KS) 00-0036674      NA
#> 1326                                       Sabino (AZ) 00-0036519      NA
#> 1327                                   Leominster (MA) 00-0036637      NA
#> 1328                            Cleveland Heights (OH) 00-0030506   15847
#> 1329                                   South Park (NY) 00-0035547 4408854
#> 1330                                      Tenafly (NJ) 00-0035981 3930035
#> 1331                               Bishop Carroll (KS) 00-0032062 2514206
#> 1332                  Advanced Prep International (TX)       <NA>      NA
#> 1333                                 Peach County (GA) 00-0032775 3043116
#> 1334                                      JH Rose (NC) 00-0036647      NA
#> 1335                                Elbert County (GA) 00-0035140 4035004
#> 1336                       James Madison Memorial (WI) 00-0034395 3120659
#> 1337                                              <NA>       <NA>      NA
#> 1338                                   Washington (IN) 00-0033474 2980460
#> 1339                                        Lamar (TX) 00-0029664   15705
#> 1340                                     Robinson (FL) 00-0034297 4036416
#> 1341                                       Coffee (GA) 00-0033040 3116406
#> 1342                                       Layton (UT) 00-0033481 3046399
#> 1343                                South Fayette (PA) 00-0034386 3118892
#> 1344                                       Loyola (CA) 00-0035665 4046536
#> 1345                                       Summit (CA) 00-0032641 2972896
#> 1346                            Brentwood Academy (TN) 00-0033055 3045373
#> 1347                                    Creekside (FL) 00-0034203 4239833
#> 1348                                   Northridge (UT) 00-0035945 3932348
#> 1349                                    Fair Park (LA) 00-0036904      NA
#> 1350                             Concord-Carlisle (MA) 00-0036600      NA
#> 1351                                      Fairfax (VA) 00-0035669 3116179
#> 1352                                   Old Tappan (NJ) 00-0036431 4040613
#> 1353                                 Braden River (FL) 00-0032592 2982866
#> 1354                                       Sehome (WA) 00-0035663 4039007
#> 1355                            The Lovett School (GA) 00-0034502 3116166
#> 1356                                        Duval (MD) 00-0036346 4036213
#> 1357                                   Assumption (IA) 00-0035609 3144988
#> 1358                               Junipero Serra (CA) 00-0035783 4048718
#> 1359                     Our Lady of Good Counsel (MD) 00-0032793 2576229
#> 1360                                   San Marcos (CA) 00-0036421 4035663
#> 1361                                   Notre Dame (TN) 00-0035573 3675805
#> 1362                               Rocky Mountain (ID) 00-0035944 4032481
#> 1363                                         Ryan (TX) 00-0036855      NA
#> 1364                                     La Habra (CA) 00-0035667 3127294
#> 1365                                  Stroudsburg (PA) 00-0034810 3047495
#> 1366                                   Penn Hills (PA) 00-0031388   16716
#> 1367                            Arlington Heights (TX) 00-0032889 3054857
#> 1368                                        Lamar (TX) 00-0036903      NA
#> 1369                                      Oakwood (OH) 00-0035933      NA
#> 1370                                      Bedford (OH) 00-0035607 3914150
#> 1371                                    Alta Loma (CA) 00-0025424   10481
#> 1372                                              <NA>       <NA>      NA
#> 1373                                         Pace (FL) 00-0034648 3040204
#> 1374                                         Orem (UT) 00-0035269 4249087
#> 1375                           Wisconsin Lutheran (WI) 00-0036863      NA
#> 1376                                   Salesianum (DE) 00-0035617 3116177
#> 1377                                  Ware County (GA) 00-0036994      NA
#> 1378                                 Alief Taylor (TX) 00-0034807 3052667
#> 1379                                 Dodge County (GA) 00-0033072 3043136
#> 1380                                      De Soto (TX) 00-0027940   13976
#> 1381                                       Martin (TX) 00-0035591 3122678
#> 1382                                 Soiux Center (IA) 00-0035942 3909013
#> 1383                                   Plano East (TX) 00-0036769      NA
#> 1384                                   St. John's (DC) 00-0036419 4040968
#> 1385                                     Longview (TX) 00-0034812 3116424
#> 1386                                Paloma Valley (CA) 00-0035118 4422336
#> 1387                                    Riverdale (TN) 00-0029959   16359
#> 1388                                     Vineland (NJ) 00-0034809 3120552
#> 1389                              Fallbrook Union (CA) 00-0034080 3043198
#> 1390                                        Plano (TX) 00-0034803 3040008
#> 1391                                    Linganore (MD) 00-0032242 2515613
#> 1392                                     Florence (AL) 00-0035623 3914440
#> 1393                          Downers Grove North (IL) 00-0035668 3917660
#> 1394                                              <NA> 00-0036605      NA
#> 1395                               Edward C. Reed (NV) 00-0034261 3056608
#> 1396                                    McEachern (GA) 00-0036437 4035478
#> 1397                                  West Monroe (LA) 00-0024270    9641
#> 1398                                       Loyola (CA) 00-0034114 3052180
#> 1399                                        Allen (TX) 00-0035666 3706968
#> 1400                                  Renaissance (MI) 00-0036603      NA
#> 1401                             Hinsdale Central (IL) 00-0034804 3134666
#> 1402                      KIPP Atlanta Collegiate (GA) 00-0035833      NA
#> 1403                                      Bothell (WA) 00-0028872   15153
#> 1404                                 Bishop Kenny (FL) 00-0034899 3124092
#> 1405                                Highland Park (TX) 00-0026498   12483
#> 1406                                     Chandler (AZ) 00-0035939 3675812
#> 1407                            American Heritage (FL) 00-0034845 3128721
#> 1408                                      Clinton (MS) 00-0036414 4240021
#> 1409                                 Coral Gables (FL) 00-0034449 3122716
#> 1410                                      Cecilia (LA) 00-0036435      NA
#> 1411                                 South Panola (MS) 00-0035664 4039359
#> 1412                                        Cocoa (FL) 00-0036827      NA
#> 1413                                     Damascus (MD) 00-0036860      NA
#> 1414                                     Ensworth (TN) 00-0036424 3918003
#> 1415                       Palm Harbor University (FL) 00-0036918      NA
#> 1416                                    East Lake (FL) 00-0033110 2573401
#> 1417                             St. John Vianney (MO) 00-0035817 3924367
#> 1418                           Blue Springs South (MO) 00-0035603 3122103
#> 1419                             Central Catholic (CA) 00-0033246 3052096
#> 1420                               Junipero Serra (CA) 00-0030431   15880
#> 1421                                   Washington (IA) 00-0036598      NA
#> 1422                                    Homestead (IN) 00-0036862      NA
#> 1423                               Isidore Newman (LA) 00-0031235   16733
#> 1424                               Bishop Alemany (CA) 00-0036721      NA
#> 1425                                    Ravenwood (TN) 00-0036415 3930066
#> 1426                             San Ramon Valley (CA) 00-0035935 3910287
#> 1427                                        Davis (WA) 00-0033908 2977187
#> 1428                              Deerfield Beach (FL) 00-0034646 3115255
#> 1429                           Miami Northwestern (FL) 00-0036849      NA
#> 1430                                     Boardman (OH) 00-0031019   16864
#> 1431                                 Calhoun City (MS) 00-0035542 4243831
#> 1432                         Scarborough Laurier (CAN) 00-0034903 4410136
#> 1433                           St. Thomas Aquinas (FL) 00-0036617      NA
#> 1434                                         Wise (MD) 00-0032772 2574666
#> 1435                                     Glendale (CA) 00-0033697 3053795
#> 1436                                Wichita South (KS) 00-0034388 3047188
#> 1437                                        Bixby (OK) 00-0028224   14398
#> 1438                                 Great Valley (PA) 00-0035677 3912028
#> 1439                                 Bishop Moore (FL) 00-0036777      NA
#> 1440                                       Kahuku (HI) 00-0036380 4039413
#> 1441                     Archbishop Wood Catholic (PA) 00-0036665      NA
#> 1442                                     Columbia (FL) 00-0034111 3116602
#> 1443                                  Haines City (FL) 00-0034790 3691739
#> 1444                                     McKinley (OH) 00-0035449 4046907
#> 1445                            Xaverian Brothers (MA) 00-0035903 3915990
#> 1446                    Evangel Christian Academy (LA) 00-0035674 3863182
#> 1447                                     Santa Fe (FL) 00-0027885   13281
#> 1448                      Vancouver College Prep (CAN) 00-0031619 2580666
#> 1449                                      Oakwood (MO) 00-0036780      NA
#> 1450                                   South Cobb (GA) 00-0034677 3116746
#> 1451                          Mount Saint Michael (NY) 00-0031071   16853
#> 1452                                  Oscar Smith (VA) 00-0034394 3116761
#> 1453                                      Lowndes (GA) 00-0035908 4035611
#> 1454                                     Xaverian (NY) 00-0030083   15972
#> 1455                           Lampeter-Strasburg (PA) 00-0031142   17404
#> 1456                                     Canisius (NY) 00-0034289 3045779
#> 1457                                   Clear Lake (TX) 00-0030098   15965
#> 1458                                       Damien (CA) 00-0034909 3127313
#> 1459                                      Carroll (IN) 00-0035262 3129310
#> 1460                                     Buchholz (FL) 00-0036867      NA
#> 1461                           St. Thomas Aquinas (FL) 00-0033156 3051389
#> 1462                                        Notre Dame 00-0036716      NA
#> 1463                                       Emmaus (PA) 00-0034375 4039254
#> 1464                                       Elkins (TX) 00-0036441 4241394
#> 1465                                 John Carroll (MD) 00-0036965      NA
#> 1466                                     Narbonne (CA) 00-0034350 3120358
#> 1467                    Nansemond-Suffolk Academy (VA) 00-0035900 4036959
#> 1468                                  North Shore (TX) 00-0035538 3914613
#> 1469                                     Sycamore (IL) 00-0036648      NA
#> 1470                                         Mesa (AZ) 00-0032955 2574229
#> 1471                                        Tracy (CA) 00-0027187   13186
#> 1472                                   Farrington (HI) 00-0035927 3674831
#> 1473                              La Costa Canyon (CA) 00-0034392 3047572
#> 1474                                    Evergreen (WA) 00-0029546   15123
#> 1475                                  Lake Travis (TX) 00-0036636      NA
#> 1476                                      Roswell (GA) 00-0031543 2582324
#> 1477                                      Carroll (TX) 00-0026544   12471
#> 1478                               Creighton Prep (NE) 00-0035282 3120590
#> 1479                                      Sheldon (OR) 00-0036355 4038941
#> 1480                                     Eastside (CA) 00-0036370 3910544
#> 1481                                        Eaton (CO) 00-0033699 3068267
#> 1482                                    Millbrook (NC) 00-0036650      NA
#> 1483                               Glenbard North (IL) 00-0034440 3116136
#> 1484                                     Clements (TX) 00-0037009      NA
#> 1485                              Graham-Kapowsin (WA) 00-0036584      NA
#> 1486                                 Apple Valley (MN) 00-0035688 4411189
#> 1487                                      Whitmer (OH) 00-0033752 2973014
#> 1488                       Marian Central Central (IL) 00-0027875   13247
#> 1489                                Carl Sandburg (IL) 00-0031353   16741
#> 1490                                 Bishop Union (CA) 00-0036779      NA
#> 1491                                  IMG Academy (FL) 00-0037011      NA
#> 1492                                  Lake Gibson (FL) 00-0035329 3912092
#> 1493                               North Gwinnett (GA) 00-0027061   12537
#> 1494                               Piedmont Hills (CA) 00-0032725 2576854
#> 1495                                New Brunswick (NJ) 00-0035883 4036055
#> 1496                                      Oberlin (OH) 00-0035432 4069806
#> 1497                            Northern Guilford (NC) 00-0030279   15818
#> 1498                            North Little Rock (AR) 00-0036382 3915522
#> 1499                           St. Thomas Aquinas (FL) 00-0036988      NA
#> 1500                                      Servite (CA) 00-0036959      NA
#> 1501                               Randolph-Henry (VA) 00-0036377 4037591
#> 1502                                        Allen (TX) 00-0035414 3932430
#> 1503                           Santee Lake Marion (SC) 00-0033536 3045138
#> 1504                                Spring Valley (SC) 00-0027691   13226
#> 1505                                     Herriman (UT) 00-0035127 3932244
#> 1506                               Bishop Chatard (IN) 00-0032969 2579850
#> 1507                                   Mount Dora (FL) 00-0036610      NA
#> 1508                                     Salesian (CA) 00-0035133 4259493
#> 1509                              Louisville Male (KY) 00-0036871      NA
#> 1510                                    Northgate (GA) 00-0034545 3045458
#> 1511                                    Thibodaux (LA) 00-0036375 4239694
#> 1512                                Coconut Creek (FL) 00-0035695 4035458
#> 1513                                        Perry (GA) 00-0029261   14966
#> 1514                                       Wilson (WA) 00-0030562   15812
#> 1515                                   St. Edward (OH) 00-0036520      NA
#> 1516                               Brother Martin (LA) 00-0035437 3917058
#> 1517                       Grand Rapids Christian (MI) 00-0033048 2972505
#> 1518                              Smithson Valley (TX) 00-0036962      NA
#> 1519                                     Vanguard (FL) 00-0036853      NA
#> 1520                                         Ozen (TX) 00-0034540 3115308
#> 1521                             Central Catholic (OR) 00-0034726 3053801
#> 1522                              Paradise Valley (AZ) 00-0035305 3121034
#> 1523                                  East Marion (MS) 00-0035693 3728305
#> 1524                               Glades Central (FL) 00-0032581 2982870
#> 1525                                     Vanguard (FL) 00-0034398 3121552
#> 1526                                 Malvern Prep (PA) 00-0033129 2614825
#> 1527                                       Ruston (LA) 00-0035219 4241451
#> 1528                                  Benedictine (VA) 00-0035692 3728258
#> 1529                          Archbishop Stepinac (NY) 00-0036989      NA
#> 1530                Friendship Collegiate Academy (DC) 00-0033123 3053044
#> 1531                                     Havelock (NC) 00-0034125 3044732
#> 1532                         Colleyville Heritage (TX) 00-0034973 3916655
#> 1533                                   Greenville (MS) 00-0034997 3115469
#> 1534                               Woodland Hills (PA) 00-0032416 2577078
#> 1535                                        Vigor (AL) 00-0032116 2980071
#> 1536                                 Southeastern (MI) 00-0030063   15841
#> 1537                                      Coppell (TX) 00-0033870 3117258
#> 1538                               Luther Burbank (CA) 00-0035540 3910660
#> 1539                                    Southeast (OK) 00-0027856   13240
#> 1540                               Francis Howell (MO) 00-0035218 3921970
#> 1541                                     Bay Port (WI) 00-0035125 3917668
#> 1542                                      Gaffney (SC) 00-0031632 2985235
#> 1543                                              <NA>       <NA>      NA
#> 1544                               Mountain Ridge (AZ) 00-0023516    8495
#> 1545                                      Central (AL) 00-0035117 3925344
#> 1546                                       Crespi (CA) 00-0033446 2971614
#> 1547                              Fort Dorchester (SC) 00-0036369 4035479
#> 1548                        The Classical Academy (CO) 00-0034161 3051909
#> 1549                                     Danville (IL) 00-0031999 2574282
#> 1550                                   Huntsville (AL) 00-0033445 4232830
#> 1551                                    Inglewood (CA) 00-0032573 2576761
#> 1552                                  Bethel Park (PA) 00-0032773 2581818
#> 1553                                 Mount Miguel (CA) 00-0032677 2978304
#> 1554                                       Apopka (FL) 00-0029647   15038
#> 1555                                 Coral Gables (FL) 00-0032103 2579621
#> 1556                                  Mount Tabor (NC) 00-0036990      NA
#> 1557                                     Westlake (MD) 00-0033956 3039776
#> 1558                                 Olive Branch (MS) 00-0028037   14140
#> 1559                                        Eaton (CO) 00-0034198 3052357
#> 1560                                  First Coast (FL) 00-0035492 3895830
#> 1561                                Deseret Pines (NV) 00-0032263 2971660
#> 1562                                Bowling Green (KY) 00-0036604      NA
#> 1563                                Morris Knolls (NJ) 00-0033290 3115303
#> 1564                                       Crespi (CA) 00-0031561 2516984
#> 1565                          Grand Street Campus (NY) 00-0036134 3930054
#> 1566                             Woodward Academy (GA) 00-0035190 3686689
#> 1567                        Bakersfield Christian (CA) 00-0031280   16757
#> 1568                                Bartram Trail (FL) 00-0033958 2972236
#> 1569                                    St. Louis (HI) 00-0032268 2576980
#> 1570                                       McLain (OK) 00-0035700 4047365
#> 1571                                    Hillgrove (GA) 00-0033118 2979843
#> 1572                               Peabody Magnet (LA) 00-0033025 2972091
#> 1573                              Archbishop Shaw (LA) 00-0036523      NA
#> 1574                                       Milton (GA) 00-0032741 3051902
#> 1575                                   A.L. Brown (NC) 00-0034763 3072292
#> 1576                                     Brighton (UT) 00-0035003 3122865
#> 1577                         Booker T. Washington (FL) 00-0036892      NA
#> 1578                                    Roseville (CA) 00-0034759 3134312
#> 1579                                   Kittanning (PA) 00-0036083 3929633
#> 1580                                   North Cobb (GA) 00-0031610 2576925
#> 1581                                     Edgerton (WI) 00-0029119   15403
#> 1582                                       Jesuit (LA) 00-0034981 3843945
#> 1583                                Warren Easton (LA) 00-0035457 3894912
#> 1584                                     Ed White (FL) 00-0034426 4035019
#> 1585                             DeMatha Catholic (MD) 00-0036527      NA
#> 1586                            Stephen F. Austin (TX) 00-0033891 3059722
#> 1587                                     Socastee (SC) 00-0034983 3135321
#> 1588                              Long Beach Poly (CA) 00-0026189   11283
#> 1589                                       Conway (SC) 00-0036365 4038818
#> 1590                                        Jenks (OK) 00-0036526      NA
#> 1591                        Evangelical Christian (TN) 00-0032911 2577792
#> 1592                                     Catholic (LA) 00-0033505 3060000
#> 1593                                  North Shore (TX) 00-0033734 3892777
#> 1594                          Archbishop Stepinac (NY) 00-0036546      NA
#> 1595                            St. Paul Catholic (CT) 00-0032239 2513035
#> 1596                                     Ed White (FL) 00-0035880      NA
#> 1597                            Hewitt-Trussville (AL) 00-0036287 4242516
#> 1598                           St. Thomas Aquinas (FL) 00-0036359 3915506
#> 1599                                   Buena Park (CA) 00-0035346 3124702
#> 1600                            University School (FL) 00-0033544 3121660
#> 1601                                     Wheatley (TX) 00-0033050 2978935
#> 1602                                    Brunswick (GA) 00-0031796 2577707
#> 1603                                Bishop O'Dowd (CA) 00-0036998      NA
#> 1604                                  Nacogdoches (TX) 00-0036221 4039059
#> 1605                                  South Hills (CA) 00-0034966 3139389
#> 1606                                       Lemont (IL) 00-0032807 3042455
#> 1607                                        Klein (TX) 00-0031555 2576002
#> 1608                                   St. Joseph (NJ) 00-0027136   12691
#> 1609                              Charlton County (GA) 00-0032353 2576895
#> 1610                             St. Paul Central (MN) 00-0034248 3932901
#> 1611                                Miami Killian (FL) 00-0034977 3917852
#> 1612                                  Wake Forest (NC) 00-0036730      NA
#> 1613                                  George Bush (TX) 00-0033073 2977740
#> 1614                                    Lancaster (TX) 00-0033285 3051807
#> 1615                                     Pinckney (MI) 00-0034285 3057956
#> 1616                                 Wayne County (GA) 00-0035841 4035299
#> 1617                                      Maloney (CT) 00-0030070   15846
#> 1618                             Suffield Academy (CT) 00-0035231 3728266
#> 1619                                  Duncanville (TX) 00-0033381 2972342
#> 1620                                     Meridian (MS) 00-0036213 4040965
#> 1621                                              <NA> 00-0035727 4421391
#> 1622                                Rockford East (IL) 00-0036596      NA
#> 1623                                       Raines (FL) 00-0036131 4035008
#> 1624                                   Villa Park (CA) 00-0034794 3124679
#> 1625                                  Rock Valley (IA) 00-0035272 3133487
#> 1626                                      Lincoln (WI) 00-0033939 2977798
#> 1627                        John Curtis Christian (LA) 00-0033549 3042725
#> 1628                                 Olive Branch (MS) 00-0032960 2977884
#> 1629                               Francis Howell (OR) 00-0033716 3047530
#> 1630                          Lakeview Centennial (TX) 00-0034902 2577637
#> 1631                                  Benedictine (OH) 00-0034797 3915507
#> 1632                                     Memorial (TX) 00-0032442 2987743
#> 1633                         Redlands East Valley (CA) 00-0036934      NA
#> 1634                             Central Catholic (OR) 00-0032734 2576885
#> 1635                                       Buford (GA) 00-0036217 3843470
#> 1636                                   Burkeville (TX) 00-0036325 3917592
#> 1637                                     Anderson (OH) 00-0031923 2516865
#> 1638                                       Asotin (WA) 00-0031893 2517316
#> 1639                                        Genoa Area 00-0035686 3121541
#> 1640                           St. Thomas Aquinas (FL) 00-0031363   17475
#> 1641                             William T. Dwyer (FL) 00-0033119 2578570
#> 1642                             DeMatha Catholic (MD) 00-0035161 3118906
#> 1643                                    St. Louis (HI) 00-0036212 4241479
#> 1644                      Marian Central Catholic (IL) 00-0035752 3040206
#> 1645                                 Mission Prep (CA) 00-0035342 3127211
#> 1646                                      Juanita (WA) 00-0036020 4243315
#> 1647                                Seattle O'Dea (WA) 00-0035311 3886818
#> 1648                                 Denver South (CO) 00-0034109 3052117
#> 1649                             Lawrence Central (IN) 00-0036578      NA
#> 1650                           St. Thomas Aquinas (FL) 00-0035275 3915115
#> 1651                              Byron P. Steele (TX) 00-0031806 2570986
#> 1652                                Miami Norland (FL) 00-0032257 2969962
#> 1653                                        Allen (TX) 00-0035694 4047661
#> 1654                                    Lumberton (NC) 00-0036839      NA
#> 1655                                     Hamilton (OH) 00-0033359 2976649
#> 1656                                Saint Clement (MA) 00-0036575      NA
#> 1657                                 North Canyon (AZ) 00-0036248 4271632
#> 1658                               Saint Ignatius (OH) 00-0037010      NA
#> 1659                              Archbishop Shaw (LA) 00-0033338 3040470
#> 1660                                     Fletcher (FL)       <NA>      NA
#> 1661                                   St. Viator (IL)       <NA>      NA
#> 1662                                       Belton (TX) 00-0034798 3052897
#> 1663                                   Big Walnut (OH) 00-0033896 4198676
#> 1664                            Southern Regional (NJ) 00-0034829 3116164
#> 1665                            Deerfield Academy (MA) 00-0037004      NA
#> 1666                               Port St. Lucie (FL) 00-0030669   17051
#> 1667                                    Episcopal (TX) 00-0036613      NA
#> 1668                        Thomas Sprigg Wootton (MD) 00-0033555 2991662
#> 1669                                      Ballard (KY) 00-0031547 2576623
#> 1670                                   Carol City (FL) 00-0030821   17177
#> 1671                                   W.T. Dwyer (FL) 00-0032881 2574918
#> 1672                                 Warhill High (VA)       <NA>      NA
#> 1673                            Warren G. Harding (OH) 00-0036364 4259979
#> 1674                     Santa Margarita Catholic (CA) 00-0034054 3052056
#> 1675                                       Auburn (AL) 00-0032795 2980378
#> 1676                  Philadelphia Roman Catholic (PA) 00-0033127 3052876
#> 1677                    Trinity Christian Academy (FL) 00-0033471 3124069
#> 1678                                      Lovejoy (GA) 00-0035350 3915399
#> 1679                          Charlotte Christian (NC) 00-0035588 3116729
#> 1680                           St. Thomas Aquinas (LA) 00-0036330 4035385
#> 1681                               West Jefferson (LA) 00-0034274 3041098
#> 1682                                Mallard Creek (NC) 00-0035871 3919541
#> 1683                                  Quartz Hill (CA) 00-0036801      NA
#> 1684                             Cherry Hill West (NJ) 00-0036344 4259170
#> 1685                                    Immokalee (FL) 00-0032389 3045120
#> 1686                                    Wakefield (NC) 00-0031597 2588098
#> 1687                                          Ely (FL) 00-0027943   13980
#> 1688                                       Gilmer (TX) 00-0035150 3929845
#> 1689                                   Centennial (CA) 00-0036629      NA
#> 1690                                  West Monroe (LA) 00-0033579 3040572
#> 1691                                        Vance (NC) 00-0035979 4037511
#> 1692                                     Flanagan (FL) 00-0036348 4046537
#> 1693                           Knoxville Catholic (TN) 00-0029606   14945
#> 1694                                 Morton Ranch (TX) 00-0031565 2976560
#> 1695                                          Bay (FL) 00-0036878      NA
#> 1696                                   Grassfield (VA) 00-0037007      NA
#> 1697                                   Grassfield (VA) 00-0037007      NA
#> 1698                                    Grandview (CO) 00-0032480 2576040
#> 1699                        Northpointe Christian (MI) 00-0036350 3929833
#> 1700                                   Stephenson (GA) 00-0036335 4038849
#> 1701                              Agua Fria Union (AZ) 00-0027701   13373
#> 1702                                   Immaculata (NJ) 00-0033324 3042726
#> 1703                                   Round Rock (TX) 00-0036337 4259181
#> 1704                                H. D. Woodson (DC) 00-0036651      NA
#> 1705                                 Henry County (GA) 00-0033546 2979860
#> 1706                                 Gateway Tech (MO) 00-0030573   15811
#> 1707                              Colquitt County (GA) 00-0035910 3916917
#> 1708                                       Daphne (AL) 00-0032574 2972144
#> 1709                                Pinellas Park (FL) 00-0036820      NA
#> 1710                                 Wayne County (GA) 00-0032162 2577757
#> 1711                   Christian Brothers College (MO) 00-0034992 3128685
#> 1712                                  St. Andrews (FL) 00-0035975 3895835
#> 1713                                      Denfeld (MN) 00-0032918 4012556
#> 1714                               St. John Bosco (CA) 00-0037006      NA
#> 1715                                      Sanford (NC) 00-0034994 3120502
#> 1716                                       Algona (IA) 00-0036690      NA
#> 1717                              Brookland-Cayce (SC) 00-0031017   16861
#> 1718                                       Bethel (WA) 00-0036327 4048231
#> 1719                                      Liberty (AZ) 00-0036354 4682831
#> 1720                            American Heritage (FL) 00-0034450 3975763
#> 1721                                 East Lincoln (NC) 00-0037003      NA
#> 1722                                       Hoover (CA) 00-0031554 2510863
#> 1723                                  Bolingbrook (IL) 00-0036812      NA
#> 1724                                       Gilmer (TX) 00-0035984 3892773
#> 1725                                      Fremont (UT) 00-0032892 2971816
#> 1726                                 Eden Prairie (MN) 00-0035533 3121538
#> 1727                                       Loyola (CA) 00-0031256   16711
#> 1728                                        Norco (CA) 00-0036338 4038946
#> 1729                                      Parkton (MD) 00-0029714   15726
#> 1730                                    East Lake (FL) 00-0034785 3115972
#> 1731                                   Melbourne (AUS) 00-0031502 2472364
#> 1732                            Holland Christian (MI) 00-0029604   14880
#> 1733                                     Foothill (CA) 00-0032245 2517017
#> 1734                                  IMG Academy (FL) 00-0036946      NA
#> 1735                             Garfield Heights (OH) 00-0036819      NA
#> 1736                                      Grayson (GA) 00-0033950 3045127
#> 1737                                Miami Central (FL) 00-0033893 3116593
#> 1738                               San Bernardino (CA) 00-0034972 4048244
#> 1739                                     Heritage (TX) 00-0036842      NA
#> 1740                                     Ed White (FL) 00-0032520 2575446
#> 1741                                   Salesianum (DE) 00-0034158 3123954
#> 1742                            Riverdale Baptist (MD) 00-0036616      NA
#> 1743                                  Floral Park (NY) 00-0034102 3049959
#> 1744                             Central Catholic (OR) 00-0036347 3930270
#> 1745                             Madison Southern (KY) 00-0028042   14099
#> 1746                                     Norcross (GA) 00-0034766 3123050
#> 1747                               Brother Martin (LA) 00-0034970 4040980
#> 1748                                       Hawley (MN) 00-0035823 3930900
#> 1749                          L'Anse Creuse North (MI) 00-0034270 3915486
#> 1750                                    Webb City (MO) 00-0036640      NA
#> 1751                                    Weequahic (NJ) 00-0036635      NA
#> 1752                                  IMG Academy (FL) 00-0036345 3916566
#> 1753                                Detroit Lakes (MN) 00-0030035   16460
#> 1754                                       Jasper (AL) 00-0036815      NA
#> 1755                              West Bloomfield (MI) 00-0035934 4046715
#> 1756                                   Bear Creek (CO) 00-0035006 3917067
#> 1757                                     C.H. Yoe (TX) 00-0033839 3892889
#> 1758                             Downingtown-East (PA) 00-0035976 3929637
#> 1759                                    Destrehan (LA) 00-0036322 4262921
#> 1760                                     Wesleyan (GA) 00-0031852 2578529
#> 1761                                   Hogan Prep (MO) 00-0031991 2613234
#> 1762                                  Father Ryan (TN) 00-0035241 4035286
#> 1763                                       DeSoto (TX) 00-0032803 2976540
#> 1764                    Trinity Christian Academy (FL) 00-0036559      NA
#> 1765                                     Spalding (GA) 00-0036579      NA
#> 1766                                   Blythewood (SC) 00-0029530   15089
#> 1767                                   Whitewater (GA) 00-0036231 4401811
#> 1768                                       Loyola (CA) 00-0036087 4039010
#> 1769                                 Stephenville (TX) 00-0029764   16286
#> 1770                                   Carrollton (GA) 00-0032580 2971027
#> 1771                                   St. Joseph (NJ) 00-0027647   13236
#> 1772                                      Garland (TX) 00-0031404   17487
#> 1773                                      Dekaney (TX) 00-0036872      NA
#> 1774                                    Immokalee (FL) 00-0034591 3121649
#> 1775                                        Maret (DC) 00-0033053 2976210
#> 1776                                       Hebron (TX) 00-0033947 2980080
#> 1777                             Thomas Jefferson (PA) 00-0035654 3115974
#> 1778                             Woodward Academy (GA) 00-0032269 2517752
#> 1779                            Nuuuli Poly Tech (ASM) 00-0034251 3052059
#> 1780                              Neumann Goretti (PA) 00-0036981      NA
#> 1781                           Adlai E. Stevenson (MI) 00-0031938 2511690
#> 1782                                    Delbarton (NJ) 00-0036093 3912189
#> 1783                                      Western (NV) 00-0028171   14185
#> 1784                                   Plaquemine (LA) 00-0033860 3115383
#> 1785                                      Armwood (FL) 00-0035278 3916922
#> 1786                                 Jean Ribault (FL) 00-0035726 3115349
#> 1787                    Imhotep Institute Charter (PA) 00-0035881 4241213
#> 1788                                   Notre Dame (CA) 00-0025565   10621
#> 1789                                     Rockford (MI) 00-0036488      NA
#> 1790                                         King (GA) 00-0034962 3924319
#> 1791                                        Maury (VA) 00-0029955   16449
#> 1792                                    Dadeville (AL) 00-0036193 3925350
#> 1793                                     Thompson (AL) 00-0031856 3051905
#> 1794                                     Columbus (FL) 00-0036159 4046528
#> 1795                               Robert McQueen (NV) 00-0031360   16772
#> 1796                             Lawrence Central (IN) 00-0036644      NA
#> 1797                                   Mira Costa (CA) 00-0035240 3124587
#> 1798                               Liberty County (GA) 00-0033461 3121423
#> 1799                              Franklin County (MS) 00-0030421   15830
#> 1800                                      Bingham (UT) 00-0033392 2570996
#> 1801                             DeMatha Catholic (MD) 00-0034385 3116187
#> 1802                              Marshall County (TN) 00-0029669   14933
#> 1803                               Lutheran North (MO) 00-0036978      NA
#> 1804                              West Bloomfield (MI) 00-0032415 3961466
#> 1805                                Granite Hills (CA) 00-0032228 2575907
#> 1806                                 Los Alamitos (CA) 00-0032549 3047571
#> 1807                                       Bullis (MD) 00-0036163 3124112
#> 1808                                    Iowa City (IA) 00-0031039   17361
#> 1809                             Columbia Central (TN) 00-0031580 2576917
#> 1810                                      Miramar (FL) 00-0035252 3116455
#> 1811                                    Cass Tech (MI) 00-0036198 4046545
#> 1812                                     Westover (GA) 00-0032071 3043109
#> 1813                                 Belle River (CAN)       <NA>      NA
#> 1814                                    Cathedral (IN) 00-0032445 2576188
#> 1815                                   Belleville (MI) 00-0036317 4241422
#> 1816                                     Lakewood (FL) 00-0034833 3128713
#> 1817                           Santa Fe Christian (CA) 00-0035280 3931395
#> 1818                                 St. Ignatius (OH) 00-0026625   12477
#> 1819                            The Bolles School (FL) 00-0036972      NA
#> 1820                                 Stephenville (TX) 00-0035264 3892775
#> 1821                                       Sachse (TX) 00-0035184 3699935
#> 1822                           St. Thomas Aquinas (FL) 00-0031062   16913
#> 1823                             Madison Southern (KY) 00-0035657 3925347
#> 1824                                   Centennial (NV) 00-0036875      NA
#> 1825                         Scotlandville Magnet (LA) 00-0029239   15478
#> 1826                                   Centennial (CA) 00-0036096 4039607
#> 1827                                        Allen (TX) 00-0036535      NA
#> 1828                                      Pulaski (AR) 00-0033090 3046439
#> 1829                             Waubonsie Valley (IL) 00-0034393 3045264
#> 1830                                    Chatfield (CO) 00-0036225 4240861
#> 1831                                    West Port (FL) 00-0033858 3054212
#> 1832                             Naperville North (IL) 00-0031744 2576179
#> 1833                                  De La Salle (CA) 00-0036194 4046522
#> 1834                       Milwaukie Arts Academy (WI) 00-0033307 3045523
#> 1835                                        Viera (FL) 00-0036536      NA
#> 1836                                      Kenwood (TN) 00-0036245 4039436
#> 1837                              Arabia Mountain (GA) 00-0034960 3916433
#> 1838                                        Alvin (TX) 00-0035645 4424106
#> 1839                                    Craigmont (TN) 00-0036183 3910176
#> 1840                                Berkeley Prep (FL) 00-0031549 2971618
#> 1841                                      Servite (CA) 00-0026293   11387
#> 1842                                   Pascagoula (MS) 00-0035121 3916418
#> 1843                                     Chandler (AZ) 00-0035624 4047839
#> 1844                               Brother Martin (LA) 00-0034436 3115387
#> 1845                                     Los Osos (CA) 00-0035930 4047834
#> 1846                                     Vanguard (FL) 00-0032059 2977661
#> 1847                                    Mansfield (TX) 00-0036937      NA
#> 1848                                McCluer South (MO)       <NA>      NA
#> 1849                                     Nordonia (OH) 00-0035130 3909365
#> 1850                                   Dutch Fork (SC) 00-0036792      NA
#> 1851                              Peachtree Ridge (GA) 00-0031372   16719
#> 1852                                    Glenville (OH) 00-0033874 3121421
#> 1853                                 H.D. Woodson (DC) 00-0032875 2979612
#> 1854                                   Clarksdale (MS) 00-0034116 3115481
#> 1855                                   Lake Orion (MI) 00-0030196   16473
#> 1856                                    Oceanside (CA) 00-0035285 3886824
#> 1857                   Eastvale Eleanor Roosevelt (CA) 00-0033894 3122882
#> 1858                                      Mariner (WA) 00-0033091 2980150
#> 1859                                        Cocoa (FL) 00-0035253 4034953
#> 1860                                 Independence (NC) 00-0034840 3871875
#> 1861                                     Westside (TX) 00-0036926      NA
#> 1862                                     Chandler (AZ) 00-0027962   13971
#> 1863                            John Paul Stevens (TX) 00-0034344 3124058
#> 1864                                        Grant (CA) 00-0035402 3918310
#> 1865                                  Lake Taylor (VA) 00-0034264 3121414
#> 1866                                  Wissahickon (PA) 00-0033902 2982313
#> 1867                                 Madison Prep (LA) 00-0035763 4039064
#> 1868                               North Davidson (NC) 00-0035409 3886601
#> 1869                                       Pelham (AL) 00-0035518 3115492
#> 1870                                 West Forsyth (NC) 00-0035179 3895834
#> 1871                         Orangeburg-Wilkinson (SC) 00-0035455 3728248
#> 1872                                     Franklin (CA) 00-0030986   17285
#> 1873                           Chrisland Schools (NGA) 00-0033051 4002046
#> 1874                                  Forest Hill (MS) 00-0031615 2574023
#> 1875                                       Clovis (CA) 00-0036727      NA
#> 1876                                    Northgate (GA) 00-0032569 2985659
#> 1877                                      Kearney (NE) 00-0030332   16486
#> 1878                                    Lone Peak (UT) 00-0034944 2971641
#> 1879                                      Brandon (MS) 00-0029607   14958
#> 1880                                   Brown Deer (WI) 00-0036418 3917657
#> 1881                                    Cathedral (IN) 00-0036927      NA
#> 1882                      Judge Memorial Catholic (UT) 00-0035316 3124890
#> 1883                                       Oxford (AL) 00-0032109 2976541
#> 1884                                   St. Edward (OH) 00-0035412 3929818
#> 1885                                        Elida (OH) 00-0034793 3052996
#> 1886                                      Henrico (VA) 00-0034659 3051333
#> 1887                                      Rowlett (TX) 00-0033063 2575788
#> 1888                                    Riverhead (NY) 00-0035403 3938169
#> 1889                                      Newport (WA) 00-0035764 3915147
#> 1890                                    Paramount (CA) 00-0036538      NA
#> 1891                               Corona del Sol (AZ) 00-0032203 2978278
#> 1892                                  IMG Academy (FL) 00-0036408 4258199
#> 1893                                   Plainfield (IN) 00-0030694   17178
#> 1894                                       Lufkin (TX) 00-0035242 3917331
#> 1895                                       Venice (FL) 00-0033542 2981439
#> 1896                                  Seven Lakes (TX) 00-0032779 3047575
#> 1897                                West St. Mary (LA) 00-0033085 2976554
#> 1898                                 San Clemente (CA) 00-0032433 2978275
#> 1899                      The Westminster Schools (GA) 00-0035859 4045180
#> 1900                                     Hueytown (AL) 00-0031503 2969939
#> 1901                                       Oviedo (FL) 00-0031407   16724
#> 1902                                    Oak Ridge (CA) 00-0036929      NA
#> 1903                                     Highland (ID) 00-0033357 2468609
#> 1904                                      Olympia (FL) 00-0032156 2511109
#> 1905                         Southwestern Academy (MI) 00-0027966   13981
#> 1906                                  IMG Academy (FL) 00-0035860 4046676
#> 1907                                     Norcross (GA) 00-0033906 3054850
#> 1908                                         Gahr (CA) 00-0032450 3002265
#> 1909                          Central Bucks South (PA) 00-0034457 3932420
#> 1910                                   Piscataway (NJ) 00-0026990   12426
#> 1911                                   Assumption (LA) 00-0030046   16004
#> 1912                                    Hephzibah (GA) 00-0027963   13993
#> 1913                                    Lafayette (KY) 00-0036930      NA
#> 1914                                Stevens Point (WI) 00-0033888 3917676
#> 1915                                      Cahokia (IL) 00-0030067   15821
#> 1916                                   Elk Rapids (MI) 00-0036422 3911853
#> 1917                                      Central (OH) 00-0032394 2576399
#> 1918                                Prairie Grove (AR) 00-0036540      NA
#> 1919                                    Glassboro (NJ) 00-0036040 3929645
#> 1920                                      Minster (OH) 00-0034672 3115360
#> 1921                                    Louisburg (KS) 00-0033095 2987440
#> 1922                          Woodland Hills Taft (CA) 00-0032765 2976316
#> 1923                                    Destrehan (LA) 00-0035844 3915145
#> 1924                               Junipero Serra (CA) 00-0036080 4245174
#> 1925                                   St. Mark's (TX) 00-0032200 2577134
#> 1926                              Village Academy (FL) 00-0034765 3128451
#> 1927                                   St. Paul's (LA) 00-0035786 3919609
#> 1928                            Archbishop Curley (MD) 00-0035215 4411193
#> 1929                                              <NA>       <NA> 3047578
#> 1930                                       Emmaus (PA) 00-0031545 3042435
#> 1931                            Southlake Carroll (TX) 00-0035406 4039057
#> 1932                              La Costa Canyon (CA) 00-0030085   16016
#> 1933                                Warner Robins (GA) 00-0036219 4035170
#> 1934                    Hapeville Charter Academy (GA) 00-0036939      NA
#> 1935                                              <NA>       <NA>      NA
#> 1936                                Bishop Gorman (NV) 00-0034445 3116096
#> 1937                        Worthington Kilbourne (OH) 00-0032575 2576733
#> 1938                                              <NA> 00-0032769 2972286
#> 1939                      Calvary Baptist Academy (LA) 00-0036570      NA
#> 1940                                    Olentangy (OH) 00-0035925 3911073
#> 1941                              Deerfield Beach (FL) 00-0036899      NA
#> 1942                                    Calabasas (CA) 00-0036394 4242973
#> 1943                               Pleasant Grove (AL) 00-0032890 2572841
#> 1944                               Vista Murrieta (CA) 00-0036830      NA
#> 1945                                 Alief Taylor (TX) 00-0034662 3116105
#> 1946                             Paramus Catholic (NJ) 00-0033883 3115962
#> 1947                             Nazareth Academy (IL) 00-0034974 4046675
#> 1948                                        Jenks (OK) 00-0034736 3116387
#> 1949                            Hilliard Davidson (OH) 00-0029570   15125
#> 1950                        Prestonwood Christian (TX) 00-0035830 3917012
#> 1951                                      Eastern (NJ) 00-0030411   15861
#> 1952                           Northampton County (NC) 00-0034435 3117135
#> 1953                               Junipero Serra (CA) 00-0033878 3120347
#> 1954                                      Roswell (GA) 00-0036388 4241470
#> 1955                                     Mainland (FL) 00-0031933 2971622
#> 1956                                       Sumter (SC) 00-0036611      NA
#> 1957                         St. Vincent-St. Mary (OH) 00-0035816 4030955
#> 1958                                      Raleigh (MS) 00-0032578 2577392
#> 1959                           St. Augustine Prep (NJ) 00-0032763 2979591
#> 1960                                       Kearny (CA) 00-0035985 3127587
#> 1961                                  Wake Forest (NC) 00-0035683 4035483
#> 1962                                       Auburn (WA) 00-0032143 2578384
#> 1963                                       Taylor (TX) 00-0035304 3122143
#> 1964                                    Arrowhead (WI) 00-0036132 4046551
#> 1965                                 Milton-Union (OH) 00-0035263 3128263
#> 1966                                    Chaparral (NV) 00-0034346 3042516
#> 1967                                         Tate (FL) 00-0026858   12460
#> 1968                            Minneapolis South (MN) 00-0036895      NA
#> 1969                                    Rosa Fort (MS) 00-0031553 2577429
#> 1970                                       Bullis (MD) 00-0036400 4045165
#> 1971                                 Bishop Luers (IN) 00-0033052 3052896
#> 1972                                     Norcross (GA) 00-0034360 3128715
#> 1973                                Harris County (GA) 00-0036167 3915171
#> 1974                                     New Town (MD) 00-0036845      NA
#> 1975                                     Marietta (GA) 00-0036552      NA
#> 1976                                    Bob Jones (AL) 00-0033058 2979855
#> 1977                                 Eden Prairie (MN) 00-0036402 4034766
#> 1978                              Hertford County (NC) 00-0035708 3123233
#> 1979                                   St. Xavier (OH) 00-0036673      NA
#> 1980                               Treasure Coast (FL) 00-0035879 4043618
#> 1981                               Canyon del Oro (AZ) 00-0032408 2978273
#> 1982                           Richland Northeast (SC) 00-0036404 4038811
#> 1983                                      Central (IA) 00-0030957   17304
#> 1984                                 East Gadsden (FL) 00-0035407 3122925
#> 1985                                  West Valley (WA) 00-0036397 3915142
#> 1986                                    Attleboro (MA) 00-0035870 4032758
#> 1987                                   South Lake (FL) 00-0030649   17066
#> 1988                                        Fitch (OH) 00-0034762 3051407
#> 1989                   Christian Brothers Academy (NY) 00-0032943 2577619
#> 1990                                  Leonardtown (MD) 00-0035042 3936185
#> 1991                              Charlotte Latin (NC) 00-0035710 3917792
#> 1992                                     Pinnacle (AZ) 00-0036092 3929824
#> 1993                               Houston County (GA) 00-0036197 4240689
#> 1994                                      Prosper (TX) 00-0033550 3052600
#> 1995                                    Westfield (VA) 00-0030520   15837
#> 1996                                Wheaton North (IL) 00-0035283 3116144
#> 1997                                  Grant Union (CA) 00-0032972 3122866
#> 1998                                      Norwalk (CA) 00-0032813 2575965
#> 1999                                  IMG Academy (FL) 00-0036449 4683485
#> 2000                                      Bayside (VA) 00-0033373 3048680
#> 2001                          St. Frances Academy (MD) 00-0036569      NA
#> 2002                                    Whitehall (PA) 00-0034844 3929630
#> 2003                                 North Stanly (NC) 00-0036188 4040629
#> 2004                           Governor's Academy (MA) 00-0036392 3921936
#> 2005                                 Pace Academy (GA) 00-0036386 4259566
#> 2006                                   Montevallo (AL) 00-0034687 3056899
#> 2007                                Gilman School (MD) 00-0036522      NA
#> 2008                                  Buena Vista (CO) 00-0027955   13964
#> 2009                                        Elder (OH) 00-0027981   14054
#> 2010                                    Hillgrove (GA) 00-0033881 3051876
#> 2011                           Archbishop Moeller (OH) 00-0036746      NA
#> 2012                                       Marcus (TX) 00-0034988 4044452
#> 2013                                   Cheltenham (PA) 00-0035345 3138744
#> 2014                            Vancouver College (BC) 00-0035991 4045062
#> 2015                                        Helix (CA) 00-0030443   15980
#> 2016                              Decatur Central (IN) 00-0036433 3791110
#> 2017                                         Pine (LA) 00-0035813 3843469
#> 2018                                     Red Wing (MN) 00-0036931      NA
#> 2019                                     Havelock (NC) 00-0033111 3048897
#> 2020                                       Blount (AL) 00-0036913      NA
#> 2021                                   West Creek (TN) 00-0033367 2973626
#> 2022                                   East Ridge (FL) 00-0032707 2982761
#> 2023                                   Providence (NC) 00-0034442 3116680
#> 2024                    Greater Atlanta Christian (GA) 00-0035535 3916945
#> 2025                               Oaks Christian (CA) 00-0035602 3919510
#> 2026                    Eastern Christian Academy (MD) 00-0035359 3871102
#> 2027                              JSerra Catholic (CA) 00-0034860 3127306
#> 2028                                Heritage Hall (OK) 00-0032385 2976592
#> 2029                            Long Beach Jordan (CA) 00-0033460 3052177
#> 2030                           St. Rita of Cascia (IL) 00-0033932 2974858
#> 2031                             Valley Christian (CA) 00-0036254 4039043
#> 2032                            Trinity Episcopal (VA) 00-0036021 4239965
#> 2033                              Bishop McDevitt (PA) 00-0036241      NA
#> 2034                                  Stockbridge (GA) 00-0035318 3128743
#> 2035                                      Windsor (CT) 00-0036502      NA
#> 2036                               South Paulding (GA) 00-0036501      NA
#> 2037                                    Southaven (MS) 00-0036504      NA
#> 2038                               Vista Murrieta (CA) 00-0036149 4243250
#> 2039                                 Northwestern (FL) 00-0036573      NA
#> 2040                                    Glenville (OH) 00-0033770 2970625
#> 2041                                   Union City (TN) 00-0036118 3914450
#> 2042                                   Germantown (PA) 00-0032958 2971248
#> 2043                           St. Thomas Aquinas (FL) 00-0031389   16769
#> 2044                                     Newfield (NY) 00-0036002 4036924
#> 2045                                 Holy Trinity (FL) 00-0033892 2980110
#> 2046                                   Santa Cruz (CA) 00-0036329 3858271
#> 2047                                      Liberty (NV) 00-0033649 3053804
#> 2048                                      Antioch (CA) 00-0036506      NA
#> 2049                                       Milton (GA) 00-0033463 3051911
#> 2050                                    Grandview (MO) 00-0035600 3116082
#> 2051                           High Point Central (NC) 00-0035135 3914553
#> 2052                                   Sprayberry (GA) 00-0036296 3915123
#> 2053                         St. Paul's Episcopal (AL) 00-0036151 4039375
#> 2054                                     Chandler (AZ)       <NA>      NA
#> 2055                                       Kahuku (HI) 00-0036379 4035660
#> 2056                                Greene County (GA) 00-0032413 2567711
#> 2057                                Beach Channel (NY) 00-0034275 3045172
#> 2058                                    Hillsboro (TN) 00-0035507 3886528
#> 2059                                   Greenville (TX) 00-0034805 3120464
#> 2060                         Scotlandville Magnet (LA) 00-0033963 3041112
#> 2061                                      Wenonah (AL) 00-0035718 4040982
#> 2062                                     Shepherd (TX) 00-0036505      NA
#> 2063                                     Eastside (GA) 00-0032759 2970204
#> 2064                         J. Clarke Richardson (ON) 00-0034760 4076951
#> 2065                                    Los Gatos (CA) 00-0034433 3125232
#> 2066                                   North Penn (PA) 00-0036469      NA
#> 2067                                       Sunset (FL) 00-0034173 4034949
#> 2068                                      Concord (NC) 00-0036503      NA
#> 2069                                     Theodore (AL) 00-0031296   16720
#> 2070                                    Cass Tech (MI) 00-0035202 4240528
#> 2071                                   McClymonds (CA) 00-0036085 3921709
#> 2072                                 Eden Prairie (MN) 00-0035276 3728281
#> 2073                                      Wenonah (AL) 00-0035680 3110565
#> 2074                                Camden County (GA) 00-0033539 3054951
#> 2075                            Olentangy Liberty (OH) 00-0036509      NA
#> 2076                                 Jensen Beach (FL) 00-0036500      NA
#> 2077                               Don Bosco Prep (NJ) 00-0033260 2983155
#> 2078                                    Chaminade (NY) 00-0029685   15718
#> 2079                                 Center Grove (IN)       <NA>      NA
#> 2080                                   Rio Rancho (NM) 00-0036513      NA
#> 2081                                     Sandburg (IL) 00-0033910 2979482
#> 2082                                      Shanley (ND) 00-0033011 2577367
#> 2083                                Bishop O'Dowd (CA) 00-0036979      NA
#> 2084                       Collège Andre-Grasset (CAN) 00-0031022   16958
#> 2085                             San Ramon Valley (CA) 00-0034976 3821678
#> 2086                          The Ensworth School (TN) 00-0033300 2971584
#> 2087                                  Meadowbrook (VA) 00-0031330   16771
#> 2088                                   John Adams (OH) 00-0033161 2574302
#> 2089                                  Cedar Falls (IA) 00-0035274 3126364
#> 2090                                 Ben L. Smith (NC) 00-0036263 3914277
#> 2091                               Warren Central (KY) 00-0032466 2583951
#> 2092                             Highland Springs (VA) 00-0036284 4240090
#> 2093                                    McEachern (GA) 00-0035698 3701582
#> 2094                                      Cy-Fair (TX) 00-0036313 4035239
#> 2095                        NSU University School (FL) 00-0034401 3051381
#> 2096                                      Audubon (NJ) 00-0026158   11252
#> 2097                                Corner Canyon (UT) 00-0037013      NA
#> 2098                                    Fort Hill (MD) 00-0035537 3915411
#> 2099                                      Navarre (FL) 00-0036924      NA
#> 2100                                     Theodore (AL) 00-0036269 4034952
#> 2101                                       Crosby (TX) 00-0035187 3123857
#> 2102                                   Oak Forest (IL) 00-0032058 2979477
#> 2103                                       Elmont (NY) 00-0034280 4034522
#> 2104                                      Carroll (IN) 00-0035102 4411192
#> 2105                                         Gahr (CA) 00-0032599 2578377
#> 2106                             Downingtown East (PA) 00-0032214 2582410
#> 2107                                    Musselman (WV) 00-0035259 4039253
#> 2108                                Isle of Wight (VA) 00-0032098 2519013
#> 2109                                  Londonderry (NH) 00-0030108   15887
#> 2110                                     Parkland (PA) 00-0036510      NA
#> 2111                            Warrenville South (IL) 00-0033871 3042778
#> 2112                                       Monroe (NC) 00-0031941 2576716
#> 2113                                      Central (KY) 00-0033681 3071572
#> 2114                               Leesville Road (NC) 00-0034419 3123075
#> 2115                              Madison Central (MS) 00-0035045 4249030
#> 2116                  Clearwater Central Catholic (FL) 00-0035510 3929118
#> 2117                                 Daingerfield (TX) 00-0036255 4035403
#> 2118                                     Lakewood (FL) 00-0033957 3059918
#> 2119                           St. Thomas Aquinas (FL) 00-0036980      NA
#> 2120                                 Calvert Hall (MD) 00-0036145 3917849
#> 2121                                              <NA>       <NA>      NA
#> 2122                             Cheshire Academy (CT) 00-0036491      NA
#> 2123                            Cleveland Heights (OH) 00-0028129   14124
#> 2124                                     Memorial (TX) 00-0036662      NA
#> 2125                                    Brunswick (GA) 00-0030062   15863
#> 2126                              James B. Dudley (NC) 00-0036724      NA
#> 2127                                    Fairfield (OH) 00-0036303 4241977
#> 2128                            Riverdale Baptist (MD) 00-0036917      NA
#> 2129                                    Northside (GA) 00-0032150 3045287
#> 2130                                 Edwardsville (IL) 00-0034310 3116058
#> 2131                                       Newton (GA) 00-0036897      NA
#> 2132                           Martin Luther King (MI) 00-0034377 3123938
#> 2133                                  Clovis West (CA) 00-0034623 3125287
#> 2134                                       Edison (CA) 00-0034993 3139368
#> 2135                                       Sachse (TX) 00-0035808 4040975
#> 2136                                Lloyd C. Bird (VA) 00-0031799 2577814
#> 2137                             DeMatha Catholic (MD) 00-0028899   15222
#> 2138                             Highland Springs (VA) 00-0036395 4035463
#> 2139                             Hamshire-Fannett (TX) 00-0033403 2981511
#> 2140                                  Oscar Smith (VA) 00-0034381 3693166
#> 2141                                     Crockett (MI) 00-0027865   13239
#> 2142                                 Silver Bluff (SC) 00-0036921      NA
#> 2143                               St. Michael's (AUS) 00-0036446 4241264
#> 2144                               Muncie Central (IN) 00-0027954   13973
#> 2145                            Brentwood Academy (TN) 00-0033876 3115336
#> 2146                                    Episcopal (TX) 00-0036689      NA
#> 2147                                     Lutheran (MO) 00-0035260 3128815
#> 2148                                   Yazoo City (MS) 00-0029653   14941
#> 2149                                  North Rowan (NC) 00-0033109 2983055
#> 2150                                              <NA>       <NA>      NA
#> 2151                                      Central (OR) 00-0036920      NA
#> 2152                                    Mansfield (TX) 00-0032402 2971725
#> 2153                                      Crowley (TX) 00-0036916      NA
#> 2154                                    Corvallis (OR) 00-0032954 2978247
#> 2155                                    Riverside (WI) 00-0029679   14962
#> 2156                                       Frisco (TX) 00-0036577      NA
#> 2157                                    St. Louis (HI) 00-0035383 4044438
#> 2158                                    Stansbury (UT) 00-0035384 3121009
#> 2159                               Lyons Township (IL) 00-0033787 3050478
#> 2160                                      Grenada (MS) 00-0034682 3126204
#> 2161                              Lakes Community (IL) 00-0035386 3121544
#> 2162                              Rancocas Valley (NJ) 00-0036401 4038902
#> 2163                              Valor Christian (CO) 00-0036813      NA
#> 2164                                Thousand Oaks (CA) 00-0031898 2612151
#> 2165                                   South Pike (MS) 00-0036393 4360645
#> 2166                                      Oakland (TN) 00-0036925      NA
#> 2167                                   Notre Dame (TN) 00-0036922      NA
#> 2168                                   Middletown (NJ) 00-0031911 2565971
#> 2169                               South Caldwell (NC) 00-0037002      NA
#> 2170                                  West Ashley (SC) 00-0035743 3129116
#> 2171                                  Maple Grove (MN) 00-0036736      NA
#> 2172                            Hallam Secondary (AUS) 00-0036013 4371989
#> 2173                                  Channelview (TX) 00-0036389 4040715
#> 2174                                     Johnston (IA) 00-0036052 3926936
#> 2175                                      Brandon (MS) 00-0035289 4038524
#> 2176                                   Gardendale (AL) 00-0032780 3060022
#> 2177                                 Yazoo County (MS) 00-0036919      NA
#> 2178                               Woodland Hills (PA) 00-0035243 4045163
#> 2179                                      Zachary (LA) 00-0034414 3051439
#> 2180                                       Martin (TX) 00-0036278 4040790
#> 2181                                     Groveton (TX) 00-0030561   15797
#> 2182                                     Rockdale (TX) 00-0033065 2577631
#> 2183                                Condell Park (AUS) 00-0034429 4334215
#> 2184                                  Daniel Hand (CT) 00-0036396 3932668
#> 2185                                  Woodinville (WA) 00-0035233 3127264
#> 2186                                 Regis Jesuit (CO) 00-0036741      NA
#> 2187                                  Mona Shores (MI) 00-0035356 3916564
#> 2188                                     Norcross (GA) 00-0033627 2972240
#> 2189                                Britton-Hecla (SD) 00-0034351 3121023
#> 2190                                       Hunter (UT) 00-0036005 3930298
#> 2191                                   St. John's (MA) 00-0031384   16786
#> 2192                                   John Tyler (TX) 00-0033733 3040035
#> 2193                                   Waxahachie (TX) 00-0036387 4241802
#> 2194                                       Athens (AL) 00-0036271 4050373
#> 2195                               Tampa Bay Tech (FL) 00-0034406 3728254
#> 2196                                       Dorman (SC) 00-0035246 3931397
#> 2197                            Riverdale Baptist (MD) 00-0036398 4373673
#> 2198                                        Amite (LA) 00-0036912      NA
#> 2199                                       Peoria (IL) 00-0036983      NA
#> 2200                                   East Ridge (MN) 00-0034142 3126353
#> 2201                           Christian Brothers (CA) 00-0033783 3122630
#> 2202                                  Benedictine (OH) 00-0035650 4046719
#> 2203                                    Jonesboro (GA) 00-0033930 3044724
#> 2204                                     Friendly (MD) 00-0027860   13249
#> 2205                                       Rudder (TX) 00-0034980 3126182
#> 2206                                     Bonnabel (LA) 00-0033503 3916144
#> 2207                              Deerfield Beach (FL) 00-0035795 4259252
#> 2208                                     Foothill (NV) 00-0032399 2575164
#> 2209                                    Northside (AR) 00-0036846      NA
#> 2210                                    Dan River (VA) 00-0034858 3124067
#> 2211                                          Bellaire 00-0036542      NA
#> 2212                             St. Peter's Prep (NJ) 00-0034789 3925345
#> 2213                                    Edgewater (FL) 00-0032888 2976639
#> 2214                                       Euclid (OH) 00-0034130 3125816
#> 2215                                      Central (OH) 00-0033541 3045210
#> 2216                                       Jesuit (OR) 00-0034318 3122690
#> 2217                                 Miller Grove (GA)       <NA>      NA
#> 2218                                   Elk Valley (KS) 00-0036843      NA
#> 2219                                    St. Louis (HI) 00-0027862   13233
#> 2220                                       Monroe (GA) 00-0031412   16798
#> 2221                                      Whitmer (OH) 00-0033913 2977615
#> 2222                              Peachtree Ridge (GA) 00-0027969   13977
#> 2223                                 Blue Springs (MO) 00-0036352 3699462
#> 2224                                      Manatee (FL) 00-0035595 3122915
#> 2225                                 Dooly County (GA) 00-0033929 3051894
#> 2226                                  Springfield (PA) 00-0036700      NA
#> 2227                                 Blue Springs (MO) 00-0036430 3699530
#> 2228                                     Pewaukee (WI) 00-0032897 2576450
#> 2229                                     Farragut (TN) 00-0035904 3919555
#> 2230                                St. Augustine (LA) 00-0031362   16789
#> 2231                                Central Islip (NY) 00-0035463 4040626
#> 2232                                 Fossil Ridge (TX) 00-0031136   17372
#> 2233                                 Pace Academy (GA) 00-0036436 4038994
#> 2234                                Waukesha West (WI) 00-0033125 2977819
#> 2235                                       Nimitz (TX) 00-0035971 3916220
#> 2236                              Cardinal Mooney (OH) 00-0030442   16010
#> 2237                                      Kimball (TX) 00-0036870      NA
#> 2238                                      Fenwick (IL) 00-0034720 3129446
#> 2239                                     Colerain (OH) 00-0034121 3128268
#> 2240                          Charles W. Flanagan (FL) 00-0035525 4036261
#> 2241                                     Pewaukee (WI) 00-0033886 3045282
#> 2242                                       Warner (SD) 00-0036440 3930915
#> 2243                                Eugene Ashley (NC) 00-0036333 4037333
#> 2244                                   Henry Wise (MD) 00-0034335 3116149
#> 2245                             Trinity Catholic (FL) 00-0035223 3920867
#> 2246                                          Bay (OH) 00-0036443      NA
#> 2247                             Chartiers Valley (PA) 00-0034051 2978524
#> 2248                                   Plaquemine (LA) 00-0036339 3917599
#> 2249                                       Andale (KS) 00-0031779 2512172
#> 2250                                   Southfield (MI) 00-0034768 3129473
#> 2251                                    Westbrook (TX) 00-0036869      NA
#> 2252                   Holy Savior Menard Central (LA) 00-0034937 3126261
#> 2253                                      Freedom (VA) 00-0035742 3072765
#> 2254                                       Sumter (SC) 00-0036847      NA
#> 2255                                   Alpharetta (GA) 00-0033949 3044720
#> 2256                                      Findlay (OH) 00-0022924    5536
#> 2257                                 Northwestern (SC) 00-0034771 3116407
#> 2258                                Bullis School (NJ) 00-0035232 4040616
#> 2259                                              <NA>       <NA>      NA
#> 2260                             DeMatha Catholic (MD) 00-0036336 4241941
#> 2261                          Westerville Central (OH) 00-0035217 4035072
#> 2262                                    Dan River (VA) 00-0033838 2970090
#> 2263                                       Falcon (CO) 00-0034799 3128774
#> 2264                                      Antioch (CA) 00-0036893      NA
#> 2265                                        Lakes (WA) 00-0033785 2971616
#> 2266                               Tampa Catholic (FL) 00-0032204 2516053
#> 2267                                     Brainerd (MN) 00-0032419 2573103
#> 2268                                   Kingfisher (OK) 00-0035671 3917962
#> 2269                                        Smith (NC) 00-0031387   16732
#> 2270                                Brooks School (MA) 00-0036894      NA
#> 2271                                Pine-Richland (PA) 00-0034193 3049290
#> 2272                                     Eldorado (NM) 00-0035222 3929924
#> 2273                                     Timpview (UT) 00-0035058 3932963
#> 2274                                  Abbotsford (CAN) 00-0036326 4046692
#> 2275                              Earl J. Lennard (FL) 00-0035216 3932905
#> 2276                                   Eisenhower (OK) 00-0036541      NA
#> 2277                                     Stamford (TX) 00-0034676 3122449
#> 2278                          Walled Lake Western (MI) 00-0035891 4241983
#> 2279                                       Travis (TX) 00-0034928 3917960
#> 2280                                      Sickles (FL) 00-0034407 3728262
#> 2281                           Christian Brothers (TN) 00-0034353 3050487
#> 2282                              Long Beach Poly (CA) 00-0033857 3120348
#> 2283                                  Bishop Amat (CA) 00-0036495      NA
#> 2284                                  Holy Names (CAN) 00-0034229 4335942
#> 2285                          Archbishop Stepinac (NY) 00-0036056 3912347
#> 2286                                  West Covina (CA) 00-0033543 3127299
#> 2287                            St. Joseph's Prep (PA) 00-0036304 3929653
#> 2288                                   Spain Park (AL) 00-0035277 3917853
#> 2289                                 Independence (CA) 00-0034384 3139387
#> 2290                                        Union (OK) 00-0036885      NA
#> 2291                                      Wooster (OH) 00-0035139 4243244
#> 2292                              Peachtree Ridge (GA) 00-0036127      NA
#> 2293                                     Angleton (TX) 00-0031608 2577553
#> 2294                                      Overton (TN) 00-0035142 3886834
#> 2295                                Campus Magnet (NY) 00-0035294 3870072
#> 2296                          Walled Lake Western (MI) 00-0033903 3051716
#> 2297                                       Austin (AL) 00-0036063 4039919
#> 2298                                     Hopewell (VA) 00-0036413 3915396
#> 2299                                       Judson (TX) 00-0036426 4254276
#> 2300                               Junipero Serra (CA) 00-0034831 3912562
#> 2301                                       Munday (TX) 00-0035636 3116449
#> 2302                                    Inglewood (CA) 00-0030380   16528
#> 2303                            Lyndon B. Johnson (TX) 00-0030946   17068
#> 2304                              Fort Dorchester (SC) 00-0027662   13274
#> 2305                                        Elton (LA) 00-0027723   13493
#> 2306                             Mansfield Summit (TX) 00-0035946 4039164
#> 2307                                     Highland (UT) 00-0035094 3115979
#> 2308                                       Venice (FL) 00-0036805      NA
#> 2309                                       Elkton (MD) 00-0034077 4329484
#> 2310                                      Grayson (GA) 00-0032761 3051886
#> 2311                                  Hilton Head (SC) 00-0034234 3125114
#> 2312                                Whitefish Bay (WI) 00-0028292   14471
#> 2313                                       Canton (MS) 00-0036417 4362647
#> 2314                                 Amite County (MS) 00-0031367   16753
#> 2315                           Mater Dei Catholic (CA) 00-0031492 2473037
#> 2316                            Sacred Heart Prep (CA) 00-0035143 3886816
#> 2317                                    Stratford (TX) 00-0036409 4043130
#> 2318                                     Brighton (UT) 00-0035672 3926229
#> 2319                                Spanaway Lake (WA)       <NA>      NA
#> 2320                                              <NA> 00-0037019      NA
#> 2321                                  South Point (NC) 00-0036368 3728263
#> 2322                                       Colony (CA) 00-0029255   14979
#> 2323                                Neuqua Valley (IL) 00-0036802      NA
#> 2324                                 Chattahooche (GA)       <NA>      NA
#> 2325                                   St. John's (SC) 00-0031624 3137087
#> 2326                                              <NA>       <NA>      NA
#> 2327                                        Jenks (OK) 00-0031156   17378
#> 2328                                Raleigh Enloe (NC) 00-0035141 3136374
#> 2329                                              <NA> 00-0036800      NA
#> 2330                                       Lemont (IL) 00-0033901 3042738
#> 2331                                        Wylie (TX) 00-0033592 2978933
#> 2332                                 Philadelphia (MS) 00-0036796      NA
#> 2333                                    Kirrawee (AUS) 00-0034160 3929851
#> 2334                                              <NA>       <NA>      NA
#> 2335                                      Miramar (FL) 00-0030565   15864
#> 2336                                 Lake Stevens (WA) 00-0036226 4035003
#> 2337                                   Collegiate (VA) 00-0029263   14881
#> 2338                                      Norwalk (CA) 00-0034750 3139925
#> 2339                             South Plantation (FL) 00-0032426 3046409
#> 2340                                        Jenks (OK) 00-0035148 4361606
#> 2341                                    Palestine (TX) 00-0025394   10452
#> 2342                                Glynn Academy (GA) 00-0036425 4240631
#> 2343                                      Opelika (AL) 00-0036799      NA
#> 2344                             Oxbridge Academy (FL) 00-0035594 4037457
#> 2345                                     Parkview (GA) 00-0033594 3919596
#> 2346                                 Merrillville (IN) 00-0034527 3121344
#> 2347                            Carrollton Hebron (TX) 00-0033872 3115373
#> 2348                                  De La Salle (IL) 00-0034729 3121417
#> 2349                                  West Orange (FL) 00-0036653      NA
#> 2350                                    Hermitage (VA) 00-0026166   11260
#> 2351                                  Goose Creek (SC) 00-0032420 2577690
#> 2352                                      Redwood (CA) 00-0036795      NA
#> 2353                                     Columbia (GA) 00-0033895 3918639
#> 2354                                  IMG Academy (FL) 00-0036059 3916587
#> 2355                               Oaks Christian (CA) 00-0036244 4242557
#> 2356                                      Bozeman (MT) 00-0034159 3127292
#> 2357                         Booker T. Washington (OK) 00-0032211 2577327
#> 2358                                   Cedar City (UT) 00-0035597 3933064
#> 2359                                      Lovejoy (TX) 00-0035987 4039000
#> 2360                                        Curie (IL) 00-0035838 4041703
#> 2361                                 North Marion (FL) 00-0036247 4034950
#> 2362                       King's Ridge Christian (GA) 00-0035022 3917546
#> 2363                                       Oxford (MS) 00-0035640 4047650
#> 2364                                        Huron (OH) 00-0035164 3126115
#> 2365                                     Bluffton (IN) 00-0036620      NA
#> 2366                                Bellevue West (NE) 00-0036810      NA
#> 2367                                   San Marcos (CA) 00-0026997   12616
#> 2368                                    Greenwood (SC) 00-0029285   15124
#> 2369                           Martin Luther King (MI) 00-0035885 4046538
#> 2370                                       Dudley (NC) 00-0034096 3115337
#> 2371                                Twiggs County (GA) 00-0031380   16718
#> 2372                                  Castle Park (CA) 00-0036101 4361499
#> 2373                          St. Joseph Regional (NJ) 00-0031253   17444
#> 2374                                    Rodriguez (CA) 00-0031334   16726
#> 2375                             William A. Hough (NC) 00-0035155 3728261
#> 2376                           Martin Luther King (MI) 00-0037008      NA
#> 2377                              Pennington Prep (NJ) 00-0031061   16893
#> 2378                                      Buchtel (OH) 00-0032525 2970661
#> 2379                                 H.D. Woodson (DC) 00-0029410   14977
#> 2380                                      Quitman (MS) 00-0034263 4039278
#> 2381                                     Davidson (AL) 00-0032057 2509844
#> 2382                                     Salesian (CA) 00-0036563      NA
#> 2383                              Crescent Valley (OR) 00-0036564      NA
#> 2384                                     Parkland (NC) 00-0032697 2567725
#> 2385                          Burlington Township (NJ) 00-0034990 3916676
#> 2386                                     Davidson (AL) 00-0031298   16717
#> 2387                                      Rowlett (TX) 00-0035279 3929865
#> 2388                                    Rockhurst (CA) 00-0033912 3052434
#> 2389                               Pleasant Grove (CA) 00-0032164 2971275
#> 2390                                 Desert Ridge (AZ) 00-0033746 2976114
#> 2391                            Hapeville Charter (GA) 00-0034825 3843843
#> 2392                           St. Thomas Aquinas (FL) 00-0035717 4040605
#> 2393                                David Douglas (OR) 00-0033945 3045527
#> 2394                             St. Clair County (AL) 00-0031297   16707
#> 2395                                  Crete-Monee (IL) 00-0035004 3124015
#> 2396                                  Goose Creek (SC) 00-0036260 4259491
#> 2397                                         Rose (NC) 00-0034320 3116726
#> 2398                            Xaverian Brothers (MA) 00-0034746 3045220
#> 2399                                 Bishop Dunne (TX) 00-0035802 3919607
#> 2400                                         Wren (SC) 00-0033297 3894915
#> 2401                                Auburn Placer (CA) 00-0033924 3047570
#> 2402                                      Altoona (PA) 00-0035026 3929641
#> 2403                                       Clovis (CA) 00-0035807 4049391
#> 2404                                   Cloverleaf (OH) 00-0029892   16002
#> 2405                      St. Petersburg Catholic (FL) 00-0031185   16842
#> 2406                             Central Mountain (PA) 00-0023252    9354
#> 2407                                     Ansbach (DEU) 00-0031961 2576030
#> 2408                                 Dr. Phillips (FL) 00-0034730 3043110
#> 2409                                Mountain View (AZ) 00-0035020 3931424
#> 2410                                Mission Hills (CA) 00-0034815 3138826
#> 2411                                    Mater Dei (CA) 00-0036728      NA
#> 2412                                 Hillsborough (FL) 00-0035166 3919117
#> 2413                                 Fayetteville (AR) 00-0034982 3916903
#> 2414                                       Saline (MI) 00-0033199 2979553
#> 2415                               Lane Technical (IL) 00-0032234 2512477
#> 2416                                   El Cerrito (CA) 00-0036551      NA
#> 2417                                   Consortium (MI) 00-0036557      NA
#> 2418                                   Plano East (TX) 00-0032701 2577185
#> 2419                                    Rosemount (MN) 00-0029144   15082
#> 2420                                  Union Local (OH) 00-0036256 3916075
#> 2421                                              <NA> 00-0037018      NA
#> 2422                                Valley Center (CA) 00-0033221 2976117
#> 2423                                  Centerville (VA) 00-0034989 3915777
#> 2424                                       Coffee (GA) 00-0035504 3128449
#> 2425                       Lumen Christi College (AUS) 00-0034941 4035685
#> 2426                            Modesto Christian (CA) 00-0032792 2979501
#> 2427                              Rolling Meadows (IL) 00-0031345   16760
#> 2428                              Marshall Senior (MN) 00-0037012      NA
#> 2429                                              <NA>       <NA>      NA
#> 2430                                        Erath (LA) 00-0036567      NA
#> 2431                                      Elkhart (TX) 00-0034115 3122976
#> 2432                                   Kecoughtan (VA) 00-0034164 4261020
#> 2433                              Belleville West (IL) 00-0033567 3125403
#> 2434                             New Smyrna Beach (FL) 00-0031687 2576414
#> 2435                                   Sprayberry (GA) 00-0036984      NA
#> 2436                                     Longview (TX) 00-0035806 3928925
#> 2437                                     Longview (TX) 00-0027857   13241
#> 2438                         William Penn Charter (PA) 00-0034847 3052885
#> 2439                                     Oakridge (CA) 00-0034073 3120303
#> 2440                              Madison Academy (AL) 00-0031299   16763
#> 2441                                 Rabun County (GA) 00-0036429 4035020
#> 2442                               Camden Central (TN) 00-0034613 3050481
#> 2443                                       Norman (OK) 00-0033288 3040151
#> 2444                                       Sumner (WA) 00-0036804      NA
#> 2445                                    Palo Alto (CA) 00-0035287 3124537
#> 2446                              South Brunswick (NJ) 00-0029632   14922
#> 2447                                Inman Chapman (SC) 00-0035719 3126486
#> 2448                                     Blackman (TN) 00-0036259 3886598
#> 2449                               Glades Central (FL) 00-0029269   15062
#> 2450                                 Bishop Luers (IN) 00-0035869 4040623
#> 2451                                    Riverview (FL) 00-0034286 3122899
#> 2452                                      McQueen (NV) 00-0036261 4360438
#> 2453                                     Danville (IL) 00-0034487 3122168
#> 2454                                  Fort Morgan (CO) 00-0029895   16038
#> 2455                                    Dominguez (CA) 00-0028092   14086
#> 2456                       Francis Howell Central (MO) 00-0031331   16948
#> 2457                              Chippewa Valley (MI) 00-0035239 3932886
#> 2458                   Whale Branch Early College (SC) 00-0034515 3049726
#> 2459                                        Cocoa (FL) 00-0035699 3873935
#> 2460                                          Ely (FL) 00-0032410 3042718
#> 2461                                Miami Norland (FL) 00-0034778 3916923
#> 2462                              Charlotte Latin (NC) 00-0031016   16843
#> 2463                               General McLane (PA) 00-0030541   15881
#> 2464                               Central Valley (PA) 00-0034374 3895798
#> 2465                                Mission Hills (CA) 00-0036608      NA
#> 2466                                      Commack (NY)       <NA>      NA
#> 2467                                    Iona Prep (NY) 00-0034085 3912343
#> 2468                             Woodward Academy (GA) 00-0032637 2576599
#> 2469                                 Winton Woods (OH) 00-0035681 3155647
#> 2470                                The Woodlands (TX) 00-0036411 4034790
#> 2471                                     St. Rita (IL) 00-0033595 2980206
#> 2472                                 Southeastern (MI) 00-0030386   16019
#> 2473                                        Lakes (WA) 00-0036050 3886826
#> 2474                                       Orange (NJ) 00-0035969 3930048
#> 2475                                      Carroll (AL) 00-0026564   12895
#> 2476                                        Grant (OR) 00-0027855   13234
#> 2477                                       Archer (GA) 00-0036180 4038840
#> 2478                                     Milpitas (CA) 00-0034773 3134362
#> 2479                                      Central (AL) 00-0031957 2575453
#> 2480                               Faith Lutheran (NV) 00-0036048 3722375
#> 2481                          St. Anne's-Belfield (VA) 00-0034668 3049339
#> 2482                                     Hastings (NY) 00-0032243 3165702
#> 2483                                      Concord (NC) 00-0036105 3920591
#> 2484                                       Dublin (CA) 00-0034678 3059021
#> 2485                         Booker T. Washington (FL) 00-0036757      NA
#> 2486                                      Hickory (NC) 00-0026968   12731
#> 2487                                    Oak Ridge (TX) 00-0036672      NA
#> 2488                                       Oxford (AL) 00-0036643      NA
#> 2489                              Peachtree Ridge (GA) 00-0030382   15856
#> 2490                                   South Cobb (GA) 00-0036761      NA
#> 2491                                       Waukee (IA) 00-0035254 3894856
#> 2492                                    Boys Town (NE) 00-0031101   16967
#> 2493                                  Chapel Hill (GA) 00-0036045 4034496
#> 2494                                North Webster (LA) 00-0035707 4035434
#> 2495                                 Northwestern (FL) 00-0029562   14985
#> 2496                                        Hazen (WA) 00-0036967      NA
#> 2497                              Deerfield Beach (FL) 00-0027867   13256
#> 2498                                       Jesuit (FL) 00-0026844   13078
#> 2499                                   Marshfield (MA) 00-0033196 3065813
#> 2500                                   Huntingdon (TN) 00-0036759      NA
#> 2501                                              <NA>       <NA> 2971823
#> 2502                                  IMG Academy (FL) 00-0036985      NA
#> 2503                                      Kilgore (TX) 00-0035839 3929752
#> 2504                                     Seminole (FL) 00-0036123 4040778
#> 2505                                   St. John's (DC)       <NA>      NA
#> 2506                           Northwest Cabarrus (NC) 00-0032065 2977680
#> 2507                                      Armwood (FL) 00-0036319 3916449
#> 2508                       Chaminade College Prep (CA) 00-0029857   16140
#> 2509                                 Parkway West (MO) 00-0027948   13987
#> 2510                               Junipero Serra (CA) 00-0019596    2330
#> 2511                                       Manvel (TX) 00-0036928      NA
#> 2512                               McKinney North (TX) 00-0034816 3912550
#> 2513                                   Pearl-Cohn (TN) 00-0036450 3917612
#> 2514                           St. Thomas Aquinas (FL) 00-0030456   15826
#> 2515                                St. Augustine (LA) 00-0033856 3115364
#> 2516                                   Notre Dame (CA) 00-0030465   15921
#> 2517                            Groveport Madison (OH) 00-0030496   15825
#> 2518                                 Owings Mills (MD) 00-0032217 2582147
#> 2519                                      Hanover (VA) 00-0030829   17283
#> 2520                                 Mount Vernon (IA) 00-0036406 4240589
#> 2521                              Autauga Academy (AL) 00-0033879 3043080
#> 2522                           Naperville Central (IL) 00-0031273   17453
#> 2523                               Woodland Hills (PA) 00-0027656   13229
#> 2524                                  Chattanooga (OK) 00-0034735 3951441
#> 2525                                    Fullerton (CA) 00-0029738   15773
#> 2526                                    Cambridge (GA) 00-0036104 4683123
#> 2527                                       Rummel (LA) 00-0033215 4217370
#> 2528                                   Middletown (PA) 00-0033921 3116165
#> 2529                                    Homestead (FL) 00-0031051   16804
#> 2530                                     Westwood (SC) 00-0034631 3155188
#> 2531                             North Fort Myers (FL) 00-0036676      NA
#> 2532                                      Servite (CA) 00-0036047      NA
#> 2533                                        North (MN) 00-0036427 2310331
#> 2534                              Arabia Mountain (GA) 00-0032054 2972460
#> 2535                                         Ball (TX) 00-0031408   16737
#> 2536                                   Eisenhower (TX) 00-0036877      NA
#> 2537                                   Barrington (IL) 00-0035298 3914397
#> 2538                                              <NA>       <NA>      NA
#> 2539                                  Bibb County (AL) 00-0029413   15109
#> 2540                                   Notre Dame (CA) 00-0032192 2511330
#> 2541                    Calvary Christian Academy (FL) 00-0033430 2979515
#> 2542                                  Gainesville (FL) 00-0036405 3915122
#> 2543                            Archbishop Rummel (LA) 00-0036416 4035433
#> 2544                                      Pahokee (FL) 00-0029681   14974
#> 2545                    Wilmington Delcastle Tech (DE) 00-0032517 2970694
#> 2546                                    Del Norte (CA) 00-0034523 3931400
#> 2547                                   Sandalwood (FL) 00-0034641 3116104
#> 2548                                       Maiden (NC) 00-0036615      NA
#> 2549                                    West Linn (OR) 00-0036992      NA
#> 2550                                    Christian (NC) 00-0032496 2579840
#> 2551                                       Etowah (GA) 00-0028075   14139
#> 2552                                  Park Center (MN) 00-0035632 4036134
#> 2553                                     Kentwood (LA) 00-0036147      NA
#> 2554                                   Southridge (FL) 00-0033819 3051925
#> 2555                       Florida A&M University (FL) 00-0036240 4043605
#> 2556                                       Taylor (TX) 00-0035878 3916207
#> 2557                                        Ayala (CA) 00-0034389 3931422
#> 2558                           Martin Luther King (GA) 00-0033132 2574056
#> 2559                                    Albemarle (NC) 00-0031254   17447
#> 2560                                    Cleveland (TX) 00-0035334 3124052
#> 2561                                     Lawrence (KS) 00-0035513 4037633
#> 2562                                      Miramar (FL) 00-0032566 2982880
#> 2563                                              <NA>       <NA>      NA
#> 2564                            Evanston Township (IL) 00-0036695      NA
#> 2565                               Noxubee County (MS) 00-0035643 4035369
#> 2566                            West Philadelphia (PA) 00-0036181 4374269
#> 2567                                   Woodbridge (VA) 00-0034371 3126352
#> 2568                                     La Habra (CA) 00-0032463 3134288
#> 2569                                    E. Bladen (NC) 00-0036237 4240123
#> 2570                                     Buckhorn (AL) 00-0035099 3122154
#> 2571                                   Lee County (LA) 00-0036691      NA
#> 2572                                       Dacula (GA) 00-0033793 2973637
#> 2573                                      Bedford (OH) 00-0027648   13294
#> 2574                                 Stone Bridge (VA) 00-0035649 3120070
#> 2575                                       Celina (TX) 00-0033740 2977779
#> 2576                                   Valparaiso (IN) 00-0033138 2582139
#> 2577                                        Klein (TX) 00-0029421   15091
#> 2578                            Logan-Rogersville (MO) 00-0033765 2986109
#> 2579                                      Brennan (TX) 00-0035521 3125126
#> 2580                                Mission Viejo (CA) 00-0032081 2518789
#> 2581                                  George Bush (TX) 00-0034204 3126081
#> 2582                                  Cooper City (FL) 00-0036938      NA
#> 2583                                    Southview (OH) 00-0035415 3116134
#> 2584                                James Clemens (AL) 00-0037000      NA
#> 2585                                Pinson Valley (AL) 00-0033547 3051750
#> 2586                             Wilkinson County (GA) 00-0032146 2576702
#> 2587                                  Pine Forest (NC) 00-0034828 3122793
#> 2588                                    Pottsboro (TX) 00-0034813 3040109
#> 2589                                        Plano (IL) 00-0033659 2974344
#> 2590                              Norwich Academy (CT) 00-0035579 4039521
#> 2591                                       Auburn (AL) 00-0034743 3126349
#> 2592                              Long Beach Poly (CA) 00-0033954 3047559
#> 2593                                 Winton Woods (OH) 00-0035292 3916074
#> 2594                             Lincoln-Way West (IL) 00-0033642 2970622
#> 2595                                   Starkville (MS) 00-0036831      NA
#> 2596                        Evangelical Christian (TN) 00-0027557   13848
#> 2597                              La Costa Canyon (CA) 00-0030097   15946
#> 2598                                       Becker (MN) 00-0036619      NA
#> 2599                                      Skyline (TX) 00-0036171 4040537
#> 2600                                    Chaparral (AZ) 00-0031442   16708
#> 2601                                       Butler (NC) 00-0031921 2509370
#> 2602                                 Grand Island (NY) 00-0025825   11555
#> 2603                                   Big Spring (TX) 00-0029701   14876
#> 2604                              Gonzaga College (DC) 00-0032784 2577128
#> 2605                              Franklin County (KY) 00-0034438 3042749
#> 2606                             New Smyrna Beach (FL) 00-0036297 4036431
#> 2607                         Scotlandville Magnet (LA) 00-0034253 3126246
#> 2608                   St. Benedict at Auburndale (TN) 00-0034400 3051891
#> 2609                     Santa Margarita Catholic (CA) 00-0033955 3127586
#> 2610                                        Yulee (FL) 00-0032764 3043078
#> 2611                                   Texas City (TX) 00-0033925 3125116
#> 2612                                     Columbia (GA) 00-0036175 4408915
#> 2613                                        Green (OH) 00-0034250 3042468
#> 2614                Friendship Collegiate Academy (DC) 00-0035220 3115949
#> 2615                                     Kirkwood (MO) 00-0031585 2508256
#> 2616                              Pleasant Valley (CA) 00-0032141 3046704
#> 2617                           Blue Springs South (MO) 00-0036696      NA
#> 2618                                    Manalapan (NJ) 00-0033455 3049698
#> 2619                                     Lakeview (MI) 00-0034611 3129455
#> 2620                             Archbishop Mitty (CA) 00-0036173 3675550
#> 2621                              Campbell County (WY) 00-0034932 3125402
#> 2622                              Pope John XXIII (NJ) 00-0034439 3122920
#> 2623                                     Millwood (OK) 00-0034652 3139456
#> 2624                                 Station Camp (TN) 00-0033859 3115330
#> 2625                               North Gwinnett (GA) 00-0034243 3122167
#> 2626                                        Foley (AL) 00-0027944   13982
#> 2627                                          Lee (AL) 00-0032355 2983209
#> 2628                                   Starkville (MS) 00-0035676 4047646
#> 2629                                Clear Springs (TX) 00-0032980 2971718
#> 2630                                    Lake Mary (FL) 00-0036182 3929785
#> 2631                                    Edna Karr (LA) 00-0036652      NA
#> 2632                                Mountain View (OR) 00-0033386 3115443
#> 2633                                         Mott (MI) 00-0036627      NA
#> 2634                            Habersham Central (GA) 00-0036176 4057082
#> 2635                               Brebeuf Jesuit (IN) 00-0034058 2971093
#> 2636                                   Burnsville (MN) 00-0033529 2976182
#> 2637                       Sacred Heart Cathedral (CA) 00-0036342 4036831
#> 2638                                       Jordan (UT) 00-0030869   17196
#> 2639                                       Oxford (AL) 00-0031587 2575606
#> 2640                                       Elkins (TX) 00-0030572   15794
#> 2641                                     Lakeland (FL) 00-0031628 2515490
#> 2642                                    Cathedral (CA) 00-0033405 3058965
#> 2643                                     Wheatley (TX) 00-0033107 3061106
#> 2644                          The Ensworth School (TN) 00-0033289 3051929
#> 2645                               East Feliciana (LA) 00-0034071 3141066
#> 2646                                 Good Counsel (MD) 00-0033084 3045465
#> 2647                                    Dutchtown (LA) 00-0032262 2979841
#> 2648                                 Walnut Ridge (OH) 00-0036638      NA
#> 2649                                     DeRidder (LA) 00-0031844 2578692
#> 2650                                     Muskogee (OK) 00-0036349 4242154
#> 2651                     Cegep du Vieux Montreal (CAN) 00-0036625      NA
#> 2652                           Pensacola Catholic (FL) 00-0034465 3125248
#> 2653                                Mount Lebanon (PA) 00-0034334 3116152
#> 2654                                 West Potomac (VA) 00-0034602 3060151
#> 2655                                    Millbrook (NC) 00-0036351 3686690
#> 2656                                   Stephenson (GA) 00-0035647 3134690
#> 2657                           Cathedral Catholic (CA) 00-0036403 3931408
#> 2658                    Hogan Preparatory Academy (MO) 00-0036664      NA
#> 2659                             DeMatha Catholic (MD) 00-0036321 4241986
#> 2660                                 Desert Vista (AZ) 00-0035314 3122692
#> 2661                              Imhotep Charter (PA) 00-0036666      NA
#> 2662                                     Highland (UT) 00-0031556 3052511
#> 2663                            Hunterdon Central (NJ) 00-0032781 2976263
#> 2664                                              <NA> 00-0036447 4686421
#> 2665                                Shades Valley (AL) 00-0034333 3925354
#> 2666                              Americus-Sumter (GA) 00-0035796      NA
#> 2667                                       Hebron (TX) 00-0035423 3133368
#> 2668                            Stonewall Jackson (VA) 00-0034397 3929956
#> 2669                                       Carver (GA) 00-0031574 2574579
#> 2670                                 Stone Bridge (VA) 00-0033523 3054840
#> 2671                                       Dacula (GA) 00-0033296 4212884
#> 2672                                  Castle View (CO) 00-0036722      NA
#> 2673                                  Summerville (SC) 00-0035468 3924352
#> 2674                          Restoration Academy (AL) 00-0035336 3115482
#> 2675                                    Chaparral (AZ) 00-0032432 2581273
#> 2676                                      Grafton (WI) 00-0035323 3121537
#> 2677                                      Denison (IA) 00-0032053 2511708
#> 2678                               North Stafford (VA) 00-0035192 3124084
#> 2679                                      Gonzaga (DC) 00-0036703      NA
#> 2680                           Palm Beach Central (FL) 00-0030064   15827
#> 2681                                    Scappoose (OR) 00-0031596 2972400
#> 2682                                   John Ehret (LA) 00-0036090 4035577
#> 2683                                  Long County (GA) 00-0036614      NA
#> 2684                                   Centennial (CA) 00-0032998 2575997
#> 2685                                    Roseville (CA) 00-0035444 4035866
#> 2686                                Bishop O'Dowd (CA) 00-0036511      NA
#> 2687                                   McKeesport (PA) 00-0036343 4046525
#> 2688                             New Smyrna Beach (FL) 00-0035286 3116689
#> 2689                                      Lincoln (OH) 00-0036659      NA
#> 2690                                   Atascocita (TX) 00-0036618      NA
#> 2691                                      Cypress (CA) 00-0031575 2516927
#> 2692                            Loyola Blakefield (MD) 00-0034610 3051330
#> 2693                                        Union (OK) 00-0030140   16166
#> 2694                                 Collins Hill (GA) 00-0031800 2565969
#> 2695                              Desert Mountain (AZ) 00-0034577 3115293
#> 2696                                     Highland (AZ) 00-0023682    8664
#> 2697                                  Lake Travis (TX) 00-0031395   16809
#> 2698                                      Central (AL) 00-0032602 2572861
#> 2699                                      Trinity (KY) 00-0034578 3116642
#> 2700                    Eastern Christian Academy (MD) 00-0032782 3042429
#> 2701                                        Allen (TX) 00-0032975 2980077
#> 2702                    Eagle's Landing Christian (GA) 00-0036328 4360294
#> 2703                       Saint Vincent Pallotti (MD) 00-0036755      NA
#> 2704                                  San Leandro (CA) 00-0031095   16848
#> 2705                    Madison-Ridgeland Academy (MS) 00-0036334 4242230
#> 2706                                Miami Norland (FL) 00-0032259 2969952
#> 2707                                      Grafton (MA) 00-0034456 3049836
#> 2708                                    Edna Karr (LA) 00-0030725   17202
#> 2709                           North Broward Prep (FL) 00-0036474      NA
#> 2710                                        Sealy (TX) 00-0033611 3051806
#> 2711                                   Brookville (VA) 00-0031260   16813
#> 2712                                   Whitehouse (TX) 00-0034409 3052576
#> 2713                                      Lebanon (OR) 00-0036628      NA
#> 2714                           North Myrtle Beach (SC) 00-0033112 2580330
#> 2715                              Paulding County (GA) 00-0036340 4029893
#> 2716                                   Washington (CA) 00-0031763 2580216
#> 2717                                      Bingham (UT) 00-0036671      NA
#> 2718                                 Erasmus Hall (NY) 00-0033282 3121427
#> 2719                       Indianapolis Cathedral (IN) 00-0035659 3121422
#> 2720                              Ouachita Parish (LA) 00-0034104 3115314
#> 2721                                      Palmyra (NJ) 00-0035297 4036163
#> 2722                                       Dorman (SC) 00-0032009 2576491
#> 2723                             West Mecklenburg (NC) 00-0036626      NA
#> 2724                            American Heritage (FL) 00-0032609 2591718
#> 2725                                     Lakeland (FL) 00-0027953   13974
#> 2726                                    Stranahan (FL) 00-0031399   16954
#> 2727                              La Costa Canyon (CA) 00-0033317 2977627
#> 2728                                      Hanford (WA) 00-0032459 2565338
#> 2729                            Cumberland Valley (PA) 00-0032692 2976257
#> 2730                                      Servite (CA) 00-0025446   10503
#> 2731                                       Curtis (WA) 00-0032324 2565684
#> 2732                                      Skyline (UT) 00-0029699   14976
#> 2733                                    Moon Area (PA) 00-0026950   12726
#> 2734                            Hewitt-Trussville (AL) 00-0034712 3057534
#> 2735                                          La Habra 00-0035503 3120360
#> 2736                                        Spain Park 00-0035372 3126330
#> 2737                                     Bushland (TX) 00-0031238   16746
#> 2738                                     Lakeland (FL) 00-0027870   13250
#> 2739                                          Waunakee 00-0034896 3049048
#> 2740                                        Guyer (TX) 00-0034118 3040013
#> 2741                                        Immaculata 00-0035612 4031164
#> 2742                                Seton-LaSalle (PA) 00-0029268   14999
#> 2743                                     Big Foot (WI) 00-0030546   15793
#> 2744                                       Milton (WI) 00-0035481 3163365
#> 2745                                    Maplewood (TN) 00-0030750   17262
#> 2746                               St. John Bosco (CA) 00-0034658 3043224
#> 2747                                        Aynor (SC) 00-0030126   15915
#> 2748                     John F. Kennedy Catholic (WA) 00-0034269 3052065
#> 2749                                     North Central 00-0031994 2511557
#> 2750                               Dobyns-Bennett (TN) 00-0028101   14110
#> 2751                                             Bixby 00-0035201 3126288
#> 2752                                     Crenshaw (CA) 00-0031337   16788
#> 2753                                    Greenwich (CT) 00-0026327   11421
#> 2754                      Montgomery Bell Academy (TN) 00-0031314   16846
#> 2755                                        Wheatfield 00-0034447 3894905
#> 2756                                     Kingwood (TX) 00-0031284   16752
#> 2757                                     El Campo (TX) 00-0032443 2971563
#> 2758                                      Independence 00-0034849 3116734
#> 2759                            Lee's Summit West (MO) 00-0032777 2971418
#> 2760                                            Marian 00-0035545 3116186
#> 2761                                  West Monroe (LA) 00-0031698 2516310
#> 2762                                         Churchill 00-0034241 3066250
#> 2763                                    Wakefield (MA) 00-0032567 2566591
#> 2764                                      Elkhorn (NE) 00-0031047   16743
#> 2765                               Warren Central (IN) 00-0033256 2979810
#> 2766                                East Kentwood (MI) 00-0035106 3916742
#> 2767                                    Indianola (IA) 00-0035389 3144996
#> 2768                            Liberty Christian (TX) 00-0034239 3122432
#> 2769                         Central Dauphin East (PA) 00-0033279 4081136
#> 2770                                    Drake-Anamoose 00-0035439 3120593
#> 2771                                    Oceanside (CA) 00-0030486   15978
#> 2772                                     Neuqua Valley 00-0034852 3044707
#> 2773                                North Augusta (SC) 00-0033682 3049566
#> 2774                                             Allen 00-0034328 3138835
#> 2775                                       Elkins (TX) 00-0032989 2972298
#> 2776                                  Centreville (VA) 00-0031191   16830
#> 2777                               Lakewood Ranch (FL) 00-0031958 2514816
#> 2778                                    Seaford Senior 00-0035015 3125783
#> 2779                                         Mansfield 00-0034178 3048669
#> 2780                                  Hawaii Prep (HI) 00-0027025   12624
#> 2781                  Fork Union Military Academy (VA) 00-0031306   16876
#> 2782                                    Northview (AL) 00-0033586 3045378
#> 2783                                     Palmdale (CA) 00-0028069   14157
#> 2784                                     Crenshaw (CA) 00-0033845 3052502
#> 2785                                   Bloomfield (CT) 00-0030127   15888
#> 2786                                  Father Ryan (TN) 00-0032456 2994680
#> 2787                          Briarwood Christian (AL) 00-0032810 2972090
#> 2788                                    Creekside (GA) 00-0035207 3915190
#> 2789                                   Plantation (FL) 00-0029691   14948
#> 2790                                      Central (LA) 00-0034998 3126245
#> 2791                                       Dudley (NC) 00-0030420   15820
#> 2792                                       Eupora (MS) 00-0033299 3051880
#> 2793                                John Marshall (MN) 00-0027547   13843
#> 2794                           St. Thomas Aquinas (FL) 00-0031383   16747
#> 2795                                   Duncan Fletcher 00-0034329 3120863
#> 2796                               Dobyns-Bennett (TN) 00-0029529   14998
#> 2797                               St. John Bosco (CA) 00-0030556   15854
#> 2798                                       Owasso (OK) 00-0031259   16900
#> 2799                                       Dunbar (DC) 00-0027001   12424
#> 2800                                     Marshall (TX) 00-0029050   15350
#> 2801                                            Butler 00-0035069 4036434
#> 2802                                  Briar Woods (VA) 00-0031563 2978256
#> 2803                                            Dreher 00-0035430 3110509
#> 2804                                Gulliver Prep (FL) 00-0027882   13238
#> 2805                                    Rockhurst (MO) 00-0032212 2513908
#> 2806                                     Atlantic (FL) 00-0032511 2973033
#> 2807                                     Campbell (GA) 00-0029696   15713
#> 2808                                        Glenn (NC) 00-0032635 2575523
#> 2809                                   North Cobb (FL) 00-0033350 4218143
#> 2810                                      Steinbrenner 00-0034123 3052013
#> 2811                                         Oak Ridge 00-0034692 4339831
#> 2812                                     Highland (CA) 00-0029191   15419
#> 2813                                             Paxon 00-0034884 4037345
#> 2814                                       Jesuit (OR) 00-0033453 3045642
#> 2815                                 North Kansas City 00-0034821 4327530
#> 2816                                    Northeast (PA) 00-0024183   10913
#> 2817                                    Vicksburg (MS) 00-0031218   17435
#> 2818                                 Southern Lab (LA) 00-0032157 2515587
#> 2819                                      Norland (FL) 00-0032014 2976500
#> 2820                                     Crockett (MI) 00-0031594 2515418
#> 2821                            Cleveland Heights (OH) 00-0033853 2969856
#> 2822                                 Los Alamitos (CA) 00-0026283   11366
#> 2823                             Carman-Ainsworth (MI) 00-0026280   11363
#> 2824                                St. Genevieve (CA) 00-0032757 3042619
#> 2825                                           Colonia 00-0035174 3912029
#> 2826                                    Lancaster (TX) 00-0030275   16144
#> 2827                                 Calvert Hall (MD) 00-0032916 2979605
#> 2828                                       Nipomo (CA) 00-0031630 2509574
#> 2829                                       Butler (NC) 00-0033652 3045202
#> 2830                                Copperas Cove (TX) 00-0032735 2971734
#> 2831                                         Lely (FL) 00-0032631 2577071
#> 2832                                       Simon Gratz 00-0035080 4405778
#> 2833                         Booker T. Washington (FL) 00-0032007 2516049
#> 2834                                 Island Coast (FL) 00-0035490 3916913
#> 2835                             Lawrence Central (IN) 00-0032849 2578317
#> 2836                                    Oak Grove (MS) 00-0035368 3123966
#> 2837                                  Port Gibson (MS) 00-0032552 2971880
#> 2838                                           Central 00-0034685 3116159
#> 2839                                        Grant (OR) 00-0031186   16914
#> 2840                                      Hopkins (MN) 00-0031151 2508192
#> 2841                                    Manhattan (KS) 00-0033222 2977689
#> 2842                                     Marietta (GA) 00-0033826 3057517
#> 2843                                    Fair Park (LA) 00-0029676   14943
#> 2844                                              <NA> 00-0033425      NA
#> 2845                            Stonewall Jackson (VA) 00-0034337 3124086
#> 2846                                   Long Beach (MS) 00-0027375   13681
#> 2847                                          Berkeley 00-0035056 3155134
#> 2848                                         Barringer 00-0034471 4039221
#> 2849                              Fort Dorchester (SC) 00-0028111   14133
#> 2850                             Miami Southridge (FL) 00-0032710 2981866
#> 2851                                    Creekside (GA) 00-0033533 2971036
#> 2852                                       Legacy (TX) 00-0032066 2574530
#> 2853                                  Union Grove (GA) 00-0032788 2971478
#> 2854                      Plantation American Heritage 00-0034095 3921563
#> 2855                                   Manchester (VA) 00-0033710 2971986
#> 2856                               Salina Central (KS) 00-0022045    4463
#> 2857                                   Burnsville (MN) 00-0032856 2573091
#> 2858                                  Archbishop Mitty 00-0035162 3921688
#> 2859                                        Helix (CA) 00-0030484   15866
#> 2860                                    Lakeshore (LA) 00-0033575 2985844
#> 2861                                    Chaparral (AZ) 00-0035172 3935064
#> 2862                              Booker T. Washington 00-0035088 3929849
#> 2863                                     American (FL) 00-0033363 3049271
#> 2864                                  Deer Valley (CA) 00-0028767   14802
#> 2865                        Woodland Hills High School 00-0034216 3126096
#> 2866                                 Ottawa Hills (MI) 00-0034839 3916720
#> 2867                                       Morton (MS) 00-0032663 2577421
#> 2868                                         Homestead 00-0032687 2582034
#> 2869                                      Bishop Walsh 00-0034455 4331771
#> 2870                                      Lowndes (GA) 00-0032931 3140596
#> 2871                      Savannah Christian Prep (GA) 00-0033587 3040198
#> 2872                                  Lake Marion (SC) 00-0035634 3140141
#> 2873                                    Atlantic Coast 00-0034327 3116618
#> 2874                                       Desoto (TX) 00-0033558 3126176
#> 2875                                  First Coast (FL) 00-0033390 3054031
#> 2876                                    Mansfield (TX) 00-0033362 2972562
#> 2877                                      Oakleaf (FL) 00-0033809 3929030
#> 2878                                   Rutherford (FL) 00-0033070 3116598
#> 2879                                              <NA> 00-0034086 3115496
#> 2880                                        Lamar (TX) 00-0034213 3929847
#> 2881                              Jonathan Dayton (NJ) 00-0033440 3047486
#> 2882                                     Ooltewah (TN) 00-0030703   17244
#> 2883                                       Bakersfield 00-0034904 3042880
#> 2884                                       Tucker (GA) 00-0029329   15535
#> 2885                                        South Dade 00-0035175 4240629
#> 2886                                      Warwick (VA) 00-0030403   15939
#> 2887                                Klein Collins (TX) 00-0031080   16949
#> 2888                               Fayette County (GA) 00-0029416   15057
#> 2889                                        HD Woodson 00-0035575 3115329
#> 2890                                         Pace (FL) 00-0030523   15872
#> 2891                            James R. Rickards (FL) 00-0025557   10613
#> 2892                                      Milford Mill 00-0034701 3920576
#> 2893                         St. Vincent-St. Mary (OH) 00-0031944 2576385
#> 2894                                   Carol City (FL) 00-0034276 3042496
#> 2895                                     Stafford (VA) 00-0031414   16805
#> 2896                                  Thomas Dale (VA) 00-0034526 3124080
#> 2897                                        Largo (FL) 00-0029087   15398
#> 2898                                  West Monroe (LA) 00-0032643 2578305
#> 2899                                 Northwestern (SC) 00-0024239    9610
#> 2900                                     Eastlake (WA) 00-0033608 2970264
#> 2901                                        Centennial 00-0034105 3040007
#> 2902                                   Plantation (FL) 00-0033612 3045278
#> 2903                                       Colton (CA) 00-0028027   14010
#> 2904                    Jacket Integrated Academy (NC) 00-0031688 2565759
#> 2905                                 Cegep Montmorency 00-0032485 4010743
#> 2906                                    Pensacola (FL) 00-0032251 3043258
#> 2907                                     Scotland (NC) 00-0032934 2969422
#> 2908                                   Fort Osage (MO) 00-0031394   16898
#> 2909                               Glades Central (FL) 00-0033756 2969716
#> 2910                                      Berkner (TX) 00-0026160   11254
#> 2911                                      Branham (CA) 00-0031878 3053794
#> 2912                           Salpointe Catholic (AZ) 00-0034562 3153653
#> 2913                                     Westlake (GA) 00-0023441    8421
#> 2914                                   Frostproof (FL) 00-0030041   16217
#> 2915                                 Olive Branch (MS) 00-0031552 2577292
#> 2916                                Chattahoochee (GA) 00-0033628 4220625
#> 2917                                     Salesian (CA) 00-0034425 3052169
#> 2918                             Highland Springs (VA) 00-0029942   16131
#> 2919                                  Vista Ridge (TX) 00-0031276   17450
#> 2920                           Aiken Silver Bluff (SC) 00-0033462 3045136
#> 2921                                       Luling (TX) 00-0032106 2510713
#> 2922                                    Bishop Kearney 00-0035047 3118081
#> 2923                                  S.S. Murphy (AL) 00-0026944   12703
#> 2924                                 Our Lady of Mercy 00-0034589 3060794
#> 2925                                            Dacula 00-0034541 3124861
#> 2926                                    Thibodaux (LA) 00-0032290 2512218
#> 2927                                         Horn (TX) 00-0032946 2972273
#> 2928                                          Del City 00-0033187 4084949
#> 2929                                       Edison (CA) 00-0029690   14989
#> 2930                                        H.B. Plant 00-0035446 3915240
#> 2931                                      Decatur (AL) 00-0035365 3917147
#> 2932                                           Grayson 00-0034506 3045123
#> 2933                                     Kentwood (LA) 00-0032798 2974631
#> 2934                                 Gadsden City (AL) 00-0029560   14940
#> 2935                                       Gilman (MD) 00-0032390 2979849
#> 2936                            James S. Rickards (FL) 00-0035598 4408864
#> 2937                                        Serra (CA) 00-0031262   16872
#> 2938                               North Gwinnett (FL) 00-0031232   17416
#> 2939                                  Bay Springs (MS) 00-0035081 4242420
#> 2940                                   Assumption (LA) 00-0024061    5432
#> 2941                                        Vista (CA) 00-0025405   10462
#> 2942                                 East Webster (MS) 00-0030469   15824
#> 2943                                Miami Central (FL) 00-0034481 3126311
#> 2944                                Westlake Prep (FL) 00-0031239   16774
#> 2945                               Lakewood Ranch (FL) 00-0026156   11250
#> 2946                                       Judson (MA) 00-0031015   16750
#> 2947                                       Dunbar (TX) 00-0033482 2977735
#> 2948                                   River Hill (MD) 00-0031548 2511523
#> 2949                                   Wilmington (OH) 00-0031937 3125961
#> 2950                                           Bastrop 00-0034637 3046689
#> 2951                           St. Thomas Aquinas (FL) 00-0035197 3929033
#> 2952                              Gonzaga College (DC) 00-0029065   15359
#> 2953                                St. Augustine (LA) 00-0032136 2972135
#> 2954                                      Berkner (TX) 00-0032978 2972550
#> 2955                                   Mt. Hebron (MD) 00-0034814 3059832
#> 2956                                 Cosumnes Oak (CA) 00-0033671 2971592
#> 2957                                 Brentwood Academy 00-0034300 3050887
#> 2958                                         Bassfield 00-0034120 3123972
#> 2959                                  Duncanville (TX) 00-0030963   17333
#> 2960                  Jefferson Davis High School (AL) 00-0031829 2969954
#> 2961                            Hazelwood Central (MO) 00-0032676 3961462
#> 2962                                     Hamilton (AZ) 00-0033410 3052883
#> 2963                                       Booker (FL) 00-0027440   13769
#> 2964                                        Dwyer (FL) 00-0033432 3042884
#> 2965                                     Sycamore (OH) 00-0032546 2576437
#> 2966                            Andre Agassi Prep (NV) 00-0032783 2575171
#> 2967                                      Everman (TX) 00-0033333 2980480
#> 2968                                            Dulles 00-0034005 4058338
#> 2969                                Miami Killian (FL) 00-0031020   16930
#> 2970                                       New Lothrop 00-0034636 3125790
#> 2971                                      Mayfair (CA) 00-0027705   13478
#> 2972                         Massillon Washington (OH) 00-0033882 3051391
#> 2973                                         Opelousas 00-0034871 3127082
#> 2974                                              Ozen 00-0035435 3910120
#> 2975                                      Kempner (TX) 00-0029215   15085
#> 2976                                    Cass Tech (MI) 00-0033931 3045214
#> 2977                           T. Wingate Andrews (NC) 00-0027988   14018
#> 2978                                       Apollo (AZ) 00-0027957   13975
#> 2979                                     American (FL) 00-0035211 3122710
#> 2980                                    Roosevelt (TX) 00-0034299 3122666
#> 2981                                 Independence (TN) 00-0034362 3115333
#> 2982                                    Astronaut (FL) 00-0035044 4264341
#> 2983                                    Oceanside (CA) 00-0034948 3117249
#> 2984                                      Grafton (MA) 00-0033900 2974247
#> 2985                                 Desert Oasis (NV) 00-0035554 3134000
#> 2986                             North Fort Myers (FL) 00-0031261   16877
#> 2987                                 Oak Mountain (AL) 00-0035456 3117846
#> 2988                                    Richwoods (IL) 00-0027743   13419
#> 2989                                        El Cerrito 00-0035091 3128785
#> 2990                            Grand Rapids Christian 00-0035568 4331772
#> 2991                                   University (FL) 00-0032042 2525492
#> 2992                                   Southfield (MI) 00-0033022 3124889
#> 2993                                      Woodson (DC) 00-0034964 3931774
#> 2994                                 Archbishop Rummel 00-0034093 3128687
#> 2995                                    Cathedral (CA) 00-0035576 3122173
#> 2996                               First Colonial (VA) 00-0034179 3049331
#> 2997                                          Foothill 00-0035675 3912549
#> 2998                        Lower Richland High School 00-0034544 3045126
#> 2999                             Fort Bend Dulles (TX) 00-0033415 3054859
#> 3000                                      Raritan (NJ) 00-0031188   16879
#> 3001                                 New Rochelle (NY) 00-0032797 2979595
#> 3002                                   Nottingham (NJ) 00-0035288 3127367
#> 3003                                 Crisp County (GA) 00-0035339 3915970
#> 3004                                      Whitmer (OH) 00-0034802 3052527
#> 3005                              Seminole County (GA) 00-0033779 2973647
#> 3006                                  Carvers Bay (SC) 00-0031571 2519211
#> 3007                                Bishop Maginn (NY) 00-0035095 3126238
#> 3008                                           Hibbing 00-0035564 3119436
#> 3009                                           Central 00-0035388 4423369
#> 3010                                       Daniel (SC) 00-0027979   14019
#> 3011                                       St. Dominic 00-0034718 3052283
#> 3012                                  Adairsville (GA) 00-0032240 2512400
#> 3013                                              <NA> 00-0034009 3049426
#> 3014                              Long Beach Poly (CA) 00-0034650 3676003
#> 3015                                      Raytown (MO) 00-0027945   13988
#> 3016                                     Callaway (MS) 00-0034774 3128740
#> 3017                                     New Fairfield 00-0033176 4043720
#> 3018                                      Huffman (AL) 00-0027941   13992
#> 3019                                  Eagle Point (OR) 00-0032428 2982949
#> 3020                          St. Anne's-Belfield (VA) 00-0026142   11236
#> 3021                                      Jenkins (GA) 00-0032369 2585962
#> 3022                            Taylor Allderdice (PA) 00-0031304   16758
#> 3023                                          Davidson 00-0035195 3928743
#> 3024                                       Stroudsburg 00-0034742 3117912
#> 3025                                   Petersburg (VA) 00-0026206   11300
#> 3026                                Dallas County (AL) 00-0027044   12436
#> 3027                                           Skyline 00-0034230 4043157
#> 3028                               Central Daniel (SC) 00-0033096 2977679
#> 3029                                       Tustin (CA) 00-0024306    9677
#> 3030                          Manchester-West Delaware 00-0034865 3049025
#> 3031                                          Columbia 00-0034134 3042381
#> 3032                                              East 00-0034477 3045268
#> 3033                                  O.P. Walker (LA) 00-0030864   17184
#> 3034                                 Nashua North (NH) 00-0029256   14953
#> 3035                                      Andrews (NC) 00-0026243   11337
#> 3036                                 City College (MD) 00-0033075 2976623
#> 3037                                    Palo Duro (TX) 00-0027008   12442
#> 3038                                      Windsor (CT) 00-0031843 2519069
#> 3039                                    Glassboro (NJ) 00-0027495   13812
#> 3040                          Northern Valley Regional 00-0034604 3125208
#> 3041                                    Creekview (TX) 00-0031948 2511687
#> 3042                               Simeon Academy (IL) 00-0031081   16959
#> 3043                                  Nacogdoches (TX) 00-0035082 3139108
#> 3044                                   McKeesport (PA) 00-0033024 2577642
#> 3045                                        Wayne (OH) 00-0029257   14967
#> 3046                               Channel Island (CA) 00-0033758 2976151
#> 3047                                          Westlake 00-0034089 3053800
#> 3048                                        Ocoee (FL) 00-0031982 2514374
#> 3049                                Miami Central (FL) 00-0033693 3115911
#> 3050                                    North Gwinnett 00-0035113 3917834
#> 3051                                  San Jacinto (CA) 00-0031997 2577162
#> 3052                                  Clintondale (MI) 00-0031607 2516417
#> 3053                                    Park Hill (MO) 00-0033272 2977620
#> 3054                                         Taft (OH) 00-0030457   15829
#> 3055                                     Hardaway (GA) 00-0031371   16712
#> 3056                                   Hutchinson (KS) 00-0031940 2514217
#> 3057                                   New Madrid (MO) 00-0031336   16773
#> 3058                             Central Gwinnett (GA) 00-0033493 2971499
#> 3059                                     Muscle Shoals 00-0034290 3054854
#> 3060                                     South Central 00-0034851 3063943
#> 3061                                              <NA> 00-0034886 3049337
#> 3062                                Southern Nash (NC) 00-0021140    3530
#> 3063                               Ogemaw Heights (MI) 00-0032435 2582150
#> 3064                                      Baldwin (HI) 00-0033614 3122879
#> 3065                                  Omaha North (NE) 00-0033248 3053000
#> 3066                                       Lahainaluna 00-0032883 2578754
#> 3067                                       Kahuku (HI) 00-0032056 2509488
#> 3068                                  Lahainaluna (HI) 00-0034215 3127274
#> 3069                                      Tafuna (ASM) 00-0032859 2978355
#> 3070                                   St. Joseph (NJ) 00-0035391 3127379
#> 3071                                    Hightower (TX) 00-0029111   15278
#> 3072                                           Horizon 00-0034012      NA
#> 3073                              Shroder Paideia (OH) 00-0033358 2972118
#> 3074                                    East Hall (GA) 00-0032344 2578530
#> 3075                                    Quince Orchard 00-0034916 3049326
#> 3076                                Kimball Union (NH) 00-0031255   17141
#> 3077                            Northern Guilford (NC) 00-0031208   17430
#> 3078                Presbyterian Boys' Secondary (GHA) 00-0030059   15785
#> 3079                                          Columbia 00-0034906 3043274
#> 3080                                      Neptune (NJ) 00-0029412   14959
#> 3081                              South Oak Cliff (TX) 00-0029112   15356
#> 3082                                      Dematha (MD) 00-0023368   12417
#> 3083                                Lucy Ragsdale (NC) 00-0033726 3049895
#> 3084                              Hollywood Hills (FL) 00-0027975   14036
#> 3085                                        Blake (FL) 00-0029053   15319
#> 3086                                   La Lumiere (IN) 00-0034166 3041114
#> 3087                                           McAdory 00-0034519 3057530
#> 3088                                   Jesse C. Carson 00-0035511 3123681
#> 3089                                   Notre Dame (CA) 00-0030251   16431
#> 3090                                     American (FL) 00-0029693   14982
#> 3091                                              West 00-0034538 3042873
#> 3092                                   Cistercian Prep 00-0035476 3915769
#> 3093                                           Bingham 00-0035204 3042883
#> 3094                              Rockdale County (GA) 00-0034326 3128264
#> 3095                              G.A.R. Memorial (PA) 00-0033673 3045152
#> 3096                                      Tripoli (IA) 00-0033651 2986781
#> 3097                                Crescent City (FL) 00-0033962 3054950
#> 3098                                    North Gwinnett 00-0034879 3924375
#> 3099                                          Magnolia 00-0035493 3914384
#> 3100                                     Red Bank (TN) 00-0034030 2973627
#> 3101                                  San Leandro (CA) 00-0032719 2573947
#> 3102                                         Landstown 00-0034482 3139339
#> 3103                                       Brophy (AZ) 00-0031300   16751
#> 3104                                     Chandler (AZ) 00-0030555   15800
#> 3105                                 Alief Taylor (TX) 00-0026618   12762
#> 3106                                   Parkway Central 00-0035565 3129292
#> 3107                                        Nyack (NY) 00-0031317   16860
#> 3108                                 Jacksonville (AR) 00-0026964   12692
#> 3109                            Red Bank Regional (NJ) 00-0033270 3057998
#> 3110                                       Linden (NJ) 00-0027968   13985
#> 3111                           Southwest Guilford (NC) 00-0033254 3050096
#> 3112                                      LaSalle (MI) 00-0034463 3044706
#> 3113                                        Southfield 00-0035071 3916590
#> 3114                                       Daphne (AL) 00-0032730 2970397
#> 3115                                     Tilghman (KY) 00-0033113 2576678
#> 3116                                         Palestine 00-0035046 3122439
#> 3117                                    Warren Central 00-0034157 3042693
#> 3118                                        Eaton (CO) 00-0027573   13860
#> 3119                                      Wayne County 00-0035191 4051591
#> 3120                                Wichita Falls (TX) 00-0030553   16037
#> 3121                                    Loomis Chaffee 00-0034702 3119152
#> 3122                           Federal Way High School 00-0034547 3045532
#> 3123                               Corona del Sol (AZ) 00-0033574 2974324
#> 3124                                  Haines City (FL) 00-0032131 2507719
#> 3125                            Dr. Henry A. Wise (MD) 00-0034308 3957496
#> 3126                           Strake Jesuit Prep (TX) 00-0030121   15905
#> 3127                         Booker T. Washington (FL) 00-0034770 3123045
#> 3128                                Louisa County (VA) 00-0030776   17296
#> 3129                                      Gonzaga (DC) 00-0029310   15064
#> 3130                                   Washington High 00-0034045 4255255
#> 3131                             Omaha North West (NE) 00-0035221 3049043
#> 3132                      McIntosh County Academy (GA) 00-0028024   14020
#> 3133                                   Stephenson (GA) 00-0034223 3051766
#> 3134                            Catholic Central (CAN) 00-0029641   14987
#> 3135                                      Eden Prairie 00-0034617 3163390
#> 3136                               Webster Groves (MO) 00-0027958   13965
#> 3137                                        Burke (SC) 00-0033438 2981846
#> 3138                                    Splendora (TX) 00-0025489   10546
#> 3139                                 George Washington 00-0034451 3939134
#> 3140                                              <NA> 00-0035063 4411188
#> 3141                              University Christian 00-0034620 3116632
#> 3142                            Chaminade-Madonna (FL) 00-0035362 3121643
#> 3143                                        Southfield 00-0035064      NA
#> 3144                                St. Thomas Aquinas 00-0034453 3123079
#> 3145                                      Belmont Hill 00-0034143      NA
#> 3146                                              <NA> 00-0035496 4263210
#> 3147                                          Mandarin 00-0034630 3053061
#> 3148                                       Bethel (VA) 00-0035421 3124087
#> 3149                                    Linn-Marr (IA) 00-0031592 2517779
#> 3150                                       Murrah (MS) 00-0033351 3894927
#> 3151                                     Flushing (NY) 00-0031403   16776
#> 3152                                    Immokalee (FL) 00-0034363 3051376
#> 3153                                   Eaglecrest (CO) 00-0035557 3145343
#> 3154 Eastdale Collegiate and Vocational Institute (ON) 00-0030132   16568
#> 3155                                          Longview 00-0034866 3115307
#> 3156                                   Moss Point (MS) 00-0024030   16695
#> 3157                                      Compton (CA) 00-0030576   15798
#> 3158                                     Wooddale (TN) 00-0029688   14939
#> 3159                                 Middle Creek (NC) 00-0033711 2970137
#> 3160                                James B. Hunt (NC) 00-0033661 3042744
#> 3161                                          Lakewood 00-0034638 4035707
#> 3162                                      Thomson (GA) 00-0034586 3043127
#> 3163                Friendship Collegiate Academy (DC) 00-0034605 3053054
#> 3164                                  North Shore (TX) 00-0027684   13288
#> 3165                                       Foster (TX) 00-0031676 2575583
#> 3166                                           Kapolei 00-0035682 3127341
#> 3167                              Marmion Academy (IL) 00-0033786 2977635
#> 3168                                 Copper Hills (UT) 00-0028256   14441
#> 3169                                    Las Vegas (NV) 00-0029303   15021
#> 3170                                 Burke County (GA) 00-0032750 3121601
#> 3171                             Miami Carol City (FL) 00-0026502   12443
#> 3172                                     Highland (UT) 00-0024227    9598
#> 3173                                       Hazel Green 00-0034321 3057976
#> 3174                                    Grandview (MO) 00-0031713 2508191
#> 3175                                  Centerville (OH) 00-0032154 2576371
#> 3176                                    Northside (GA) 00-0029946   16376
#> 3177                                     Douglass (GA) 00-0030871   17253
#> 3178                                  Weatherford (TX) 00-0029894   15937
#> 3179                                       Benedictine 00-0033626 2970111
#> 3180                               Roanoke Rapids (NC) 00-0033934 3039721
#> 3181                                       Banner (GA) 00-0032034 3051674
#> 3182                                       Ruston (LA) 00-0024348    9720
#> 3183                               Jefferson City (MO) 00-0030577   15816
#> 3184                                 Valley Forge (OH) 00-0030697   17214
#> 3185                                           Luverne 00-0035560 4262273
#> 3186                                     Columbia (FL) 00-0031170   16785
#> 3187                                Saint Michael (LA) 00-0031225   17428
#> 3188                                           Palatka 00-0034018 3052751
#> 3189                                   Brownsburg (IN) 00-0030106   15955
#> 3190                                              <NA> 00-0035618 3125300
#> 3191                           St. Thomas Aquinas (FL) 00-0027720   13311
#> 3192                                       Rahway (NJ) 00-0031914 2579622
#> 3193                     Detroit Catholic Central (MI) 00-0034696 4339830
#> 3194                                         Lone Peak 00-0034082 3052510
#> 3195                                     Westgate (LA) 00-0029208   15460
#> 3196                                     Howells-Dodge 00-0034880 3040172
#> 3197                                      Apple Valley 00-0034228 3118188
#> 3198                                       Seguin (TX) 00-0034262 3050754
#> 3199                                      Atlanta (TX) 00-0033771 2971436
#> 3200                                        Coral Reef 00-0035178 3131528
#> 3201                                   Colquitt County 00-0034454 3128455
#> 3202                                     Cypress Falls 00-0034873 3929841
#> 3203                                       Centerville 00-0035110 3115929
#> 3204                                  Meadowcreek (GA) 00-0031832 3042645
#> 3205                          Lake Charles Boston (LA) 00-0029040   15380
#> 3206                           Cathedral Catholic (CA) 00-0035332 3915309
#> 3207                                            Elyria 00-0034583 3040516
#> 3208                                  Casa Grande (CA) 00-0033584 3052175
#> 3209                                      Hialeah (FL) 00-0027956   13989
#> 3210                              Gonzaga College (DC) 00-0029972   16398
#> 3211                               South Grand Prairie 00-0034564 4038466
#> 3212                                   Gladewater (TX) 00-0034985 3917316
#> 3213                                   Bloomfield (NJ) 00-0031618 2515893
#> 3214                           Richland Northeast (SC) 00-0032529 2581513
#> 3215                               East St. Louis (IL) 00-0035302 3924310
#> 3216                                Buhach Colony (CA) 00-0032981 2978281
#> 3217                                     Carolina (SC) 00-0033501 3121581
#> 3218                                   Pago Pago (ASM) 00-0024338    9709
#> 3219                                    Glenville (OH) 00-0032409 2977625
#> 3220                                Jeffersontown (KY) 00-0033535 4220624
#> 3221                                     Escambia (FL) 00-0026330   11424
#> 3222                                    Charlotte (FL) 00-0032169 3043238
#> 3223                              Cincinnati (OH) Taft 00-0033037 2976317
#> 3224                                   South View (NC) 00-0034122 3042747
#> 3225                                           Bedford 00-0034138 3125884
#> 3226                                     Washburn (MN) 00-0031281   16744
#> 3227                                    Star City (AR) 00-0028424   14310
#> 3228                                 Williamstown (NJ) 00-0034283 3051320
#> 3229                                  San Leandro (CA) 00-0033513 2469470
#> 3230                                   West Bloomfield 00-0034246 3918012
#> 3231                                     Woodland (GA) 00-0031848 3908873
#> 3232                                        Pasco (FL) 00-0033590 3043112
#> 3233                                    Pensacola (FL) 00-0028003   14014
#> 3234                                      Central (IN) 00-0030448   15862
#> 3235                                   McCutcheon (IN) 00-0032649 3040661
#> 3236                                       Wilson (WA) 00-0032061 2578408
#> 3237                                     Muskogee (OK) 00-0030515   15906
#> 3238                                              <NA> 00-0035429 4240239
#> 3239                                     Muskogee (OK) 00-0031006    5273
#> 3240                                 Yazoo County (MS) 00-0032031 2516320
#> 3241                                     Hardaway (GA) 00-0035462 4241221
#> 3242                                   Centennial (CA) 00-0031048   16738
#> 3243                                   Weddington (NC) 00-0032138 2512544
#> 3244                                   Enterprise (AL) 00-0029940   16127
#> 3245                               Bishop Hartley (OH) 00-0035131 3125872
#> 3246                              Long Beach Poly (CA) 00-0028015   14047
#> 3247                                   Penn Hills (PA) 00-0033976 2973027
#> 3248                                        Mt. Carmel 00-0034568 3116072
#> 3249                                              <NA> 00-0035501 3122924
#> 3250                                           McAdory 00-0035348 3115478
#> 3251                             North Fort Myers (FL) 00-0030112   15973
#> 3252                                Watson Chapel (AR) 00-0033086 2572846
#> 3253                                    Mater Dei (CA) 00-0033374 2978244
#> 3254                                    Los Gatos (CA) 00-0033719 2981212
#> 3255                                  St. Francis (MI) 00-0032375 2576236
#> 3256                          Williamsville North (NY) 00-0032499 2977698
#> 3257                                      Skyline (UT) 00-0033736 2513199
#> 3258                 East English Village Prep Academy 00-0034237 3045222
#> 3259                              Long Beach Poly (CA) 00-0029492   15653
#> 3260                                   UMS-Wright (AL) 00-0031085   16875
#> 3261                                      Hanover (VA) 00-0033967 3045472
#> 3262                                        Vigor (AL) 00-0032130 2515931
#> 3263                                         Troy (CA) 00-0029068   15351
#> 3264                               Boyertown Area (PA) 00-0027925   13940
#> 3265                                     Sherando (VA) 00-0034946 3136308
#> 3266                                   Millington (TN) 00-0032745 2586700
#> 3267                                     Gilman School 00-0034314 3045201
#> 3268                                       Oxford (MI) 00-0029931   16366
#> 3269                                      Hickory (NC) 00-0029729   15765
#> 3270                    Wheaton Warrenville South (IL) 00-0032794 2974365
#> 3271                                       Dayton (TX) 00-0031612 2577467
#> 3272                                         Churchill 00-0034225 3116375
#> 3273                                 Reynoldsburg (OH) 00-0030741   17223
#> 3274                                Lake Brantley (FL) 00-0028581   14332
#> 3275                                Spring Valley (WV) 00-0034119 3042434
#> 3276                                       Apopka (FL) 00-0035310 3843217
#> 3277                        Tuscaloosa (AL) Northridge 00-0032068 2516316
#> 3278                                Mission Viejo (CA) 00-0034148 3117250
#> 3279                                           Kearney 00-0034149 3075100
#> 3280                            Archbishop Murphy (WA) 00-0032852 2578390
#> 3281                                   Port Allen (LA) 00-0031087   17467
#> 3282                             Christian County (KY) 00-0029422   15001
#> 3283                               St. Petersburg (FL) 00-0033389 2969018
#> 3284                                 Totino Grace (MN) 00-0033692 3049640
#> 3285                                       Loyola (CA) 00-0028031   14016
#> 3286                                        East Ridge 00-0035522 3912991
#> 3287                                    Colonial Forge 00-0031754 2577110
#> 3288                                            Lawton 00-0034078 4039283
#> 3289                                       Ruston (LA) 00-0032628 2971881
#> 3290                                 Independence (NC) 00-0033977 3051737
#> 3291                                   Marlington (OH) 00-0033675 3045206
#> 3292                                  Southwest DeKalb 00-0031978 2516019
#> 3293                                    Oak Creek (WI) 00-0032922 3053027
#> 3294                                       Colton (CA) 00-0031070   16850
#> 3295                                  Amanda Elzy (MS) 00-0031512 2574557
#> 3296                                   O. Perry Walker 00-0027736   13404
#> 3297                                            Tucker 00-0034467 3128706
#> 3298                                Panther Creek (NC) 00-0032749 2570484
#> 3299                                   Bridgeport (TX) 00-0028128   14117
#> 3300                   Madisonville North Hopkins (KY) 00-0033520 2977613
#> 3301                                     Dunham School 00-0035561 3115379
#> 3302                                      Griffin (GA) 00-0032050 2578554
#> 3303                                    Northmont (OH) 00-0027835   13340
#> 3304                                Liberty-Eylau (TX) 00-0031059   16904
#> 3305                                      Carroll (NY) 00-0025555   10611
#> 3306                            West Orange-Stark (TX) 00-0027866   13251
#> 3307                            Bishop Hendricken (RI) 00-0024330    9701
#> 3308           Passaic County Technical Institute (NJ) 00-0022247    5893
#> 3309                                          Columbia 00-0035379 3930075
#> 3310                                         Lone Peak 00-0034252 2980441
#> 3311                                           Everett 00-0035470 3915291
#> 3312                                          Lee (AL) 00-0027256   13645
#> 3313                                   Sprayberry (GA) 00-0030020   16419
#> 3314                                       Wagner (TX) 00-0033076 2971550
#> 3315                                     Highland (MD) 00-0033274 3892785
#> 3316                               Woodland Hills (PA) 00-0030170   16206
#> 3317                               J.P. Taravella (FL) 00-0033316 3050534
#> 3318                                      Bayside (VA) 00-0034098 3124020
#> 3319                                              <NA> 00-0029958   16450
#> 3320                                      Denbigh (VA) 00-0024421    9793
#> 3321                                   Timberview (TX) 00-0030317   16054
#> 3322                                   Washington (VA) 00-0027124   12644
#> 3323                                   North Pike (MS) 00-0027081   12716
#> 3324                                       Newnan (GA) 00-0034217 3043146
#> 3325                                  Sandy Creek (GA) 00-0031657 2510547
#> 3326                             New Smyrna Beach (FL) 00-0035586 3121542
#> 3327                         Evangel Christian Academy 00-0035508 3128688
#> 3328                                     Palm Bay (FL) 00-0025408   10465
#> 3329                                    Highlands (KY) 00-0027023   12619
#> 3330                                         King (GA) 00-0033233 2971542
#> 3331                                       Steele (TX) 00-0033486 3046342
#> 3332                                          Lakewood 00-0034695 3049935
#> 3333                                   Washington (GA) 00-0027762   13395
#> 3334                         Greater Atlanta Christian 00-0035098 3915373
#> 3335                                            Shiloh 00-0035453 3123658
#> 3336                         Bishop Denis J. O'Connell 00-0034408 3122800
#> 3337                              David W. Butler (NC) 00-0029575   15079
#> 3338                                        Wylie (TX) 00-0034556 3139926
#> 3339                                 George Washington 00-0035072 4076949
#> 3340                                            Orange 00-0034324 3125916
#> 3341                                     Beaufort (SC) 00-0028445   14297
#> 3342                                   Stephenson (GA) 00-0030908   17317
#> 3343                                      Armwood (FL) 00-0033470 3043217
#> 3344                                              Bunn 00-0034443 3051706
#> 3345                                         Brookwood 00-0034734 3050953
#> 3346                                       Gulf Breeze 00-0035151 4422420
#> 3347                                          Mililani 00-0035543 4243241
#> 3348                             Lincoln Way East (IL) 00-0029139   14995
#> 3349                                      West Hancock 00-0034124 3908989
#> 3350                                       Dorman (SC) 00-0031305   16739
#> 3351                                   Bettendorf (IA) 00-0033310   17727
#> 3352                              Pulaski Academy (AR) 00-0033391 2977770
#> 3353                                        University 00-0035225 3115391
#> 3354                                      Oakwood (IL) 00-0033502 3047195
#> 3355                                Dawson County (MT) 00-0028177   14070
#> 3356                                         Wakefield 00-0035335 3124111
#> 3357                                     Lakeland (MI) 00-0033663 2613168
#> 3358                             Central Catholic (OR) 00-0032714 2971279
#> 3359                       Mt. Pleasant Community (IA) 00-0032827 4002060
#> 3360                                     Mariposa (CA) 00-0032247 2517252
#> 3361                                      Berkner (TX) 00-0029666   14961
#> 3362                                         Mater Dei 00-0033287 2976113
#> 3363                                    McEachern (GA) 00-0033301 2980036
#> 3364                                 Southern Lab (LA) 00-0029010   15276
#> 3365                                    Williston-Elko 00-0034581 3122851
#> 3366                                      Western (CA) 00-0027869   13246
#> 3367                                   Cedar Hill (TX) 00-0030833   17102
#> 3368                                     Westlake (GA) 00-0030593   15814
#> 3369                            The Boys' Latin School 00-0033618 2977653
#> 3370                                  King George (VA) 00-0025512   10568
#> 3371                                       Ripley (TN) 00-0026561   12883
#> 3372                                   Southhaven (MS) 00-0033688 3115302
#> 3373                                         Southeast 00-0035563 3116094
#> 3374                                    Hillcrest (UT) 00-0027658   13261
#> 3375                                     Somerset (WI) 00-0031152   17377
#> 3376                                        Clear Lake 00-0035065 3128346
#> 3377                           Wachusett Regional (MA) 00-0033253 2969004
#> 3378                                 Burnage (England) 00-0030579   15871
#> 3379                                York Comprehensive 00-0034645 3049589
#> 3380                         Sergeant Bluff-Luton (IA) 00-0033383 2991684
#> 3381                                Coeur d'Alene (ID) 00-0032638 2986639
#> 3382                                   Greenville (TX) 00-0028738   14753
#> 3383                                 Desert Vista (AZ) 00-0033959 2971635
#> 3384                                          Randolph 00-0034582 3057991
#> 3385                                      Salinas (CA) 00-0026784   12972
#> 3386                                  Springfield (MN) 00-0032867 2576443
#> 3387                                Chattahoochee (GA) 00-0028039   14178
#> 3388                                    Middleton (WI) 00-0031128   17063
#> 3389                              Merrill F. West (CA) 00-0029254   14981
#> 3390                                   Centennial (CA) 00-0033667 3052094
#> 3391                               St. John Bosco (CA) 00-0033483 3120361
#> 3392                              Edward H. White (FL) 00-0031766 2582406
#> 3393                                      Brooke Point 00-0034448 3052023
#> 3394                                     Stamford (CT) 00-0027667   13273
#> 3395                                       Hattiesburg 00-0035729 4239773
#> 3396                                Central Islip (NY) 00-0029661   15098
#> 3397                                      Hoggard (NC) 00-0030590   15787
#> 3398                                             Laney 00-0035075 3059734
#> 3399                            Belle Vernon Area (PA) 00-0033942 3045153
#> 3400                                       Loyola (CA) 00-0035424 3120365
#> 3401                                St. Thomas Aquinas 00-0034947 3125897
#> 3402                           San Lorenzo Valley (CA) 00-0027027   12614
#> 3403                                   Sweet Home (OR) 00-0026500   12728
#> 3404                                   Bear Creek (CO) 00-0030923   17040
#> 3405                         Booker T. Washington (FL) 00-0033005 3046434
#> 3406                                      Coppell (TX) 00-0032930 2577172
#> 3407                                     Holly Springs 00-0035124 3912157
#> 3408                                    Woodstock (IL) 00-0031722 2566837
#> 3409                               Fleming Island (FL) 00-0032067 2516067
#> 3410                                     Southridge HS 00-0030755   17210
#> 3411                                  Nathan Hale (WI) 00-0029893   15900
#> 3412                                   Fern Creek (KY) 00-0032244 2576647
#> 3413                                        Eisenhower 00-0035333 3124550
#> 3414                                     Hamilton (AZ) 00-0033039 2574570
#> 3415                                   Cedar Park (TX) 00-0032976 2577042
#> 3416                                     Seminole (FL) 00-0031180   16859
#> 3417                                Seneca Valley (PA) 00-0028110   14208
#> 3418                                           Skyview 00-0035746 3910591
#> 3419                                 Spanish Fork (UT) 00-0033465 2575978
#> 3420                                    Harker Heights 00-0034231 3046696
#> 3421                                Miami Central (FL) 00-0031182   16835
#> 3422                                   Long Beach (NY) 00-0035487 3127365
#> 3423                                        Mason (OH) 00-0029992   16403
#> 3424                     Los Angeles Palisades Charter 00-0033377 3122894
#> 3425                                 Harrisonburg (VA) 00-0032879 2577115
#> 3426                                           Everett 00-0034644 3052887
#> 3427                                      Freedom (CA) 00-0032962 2582006
#> 3428                                    Olentangy (OH) 00-0030937   17013
#> 3429                                            Tafuna 00-0034254 3056493
#> 3430                                 Alief Taylor (TX) 00-0032503 2576355
#> 3431                                     Rockford (MI) 00-0032771 2576569
#> 3432                                           Armwood 00-0034459 3054041
#> 3433                                          Callaway 00-0034441 3128752
#> 3434                              Madison Central (KY) 00-0030065   15870
#> 3435                                         Newark HS 00-0031647 2512571
#> 3436                                         Dominguez 00-0034585 3046392
#> 3437                            Parkway Northwest (PA) 00-0033565 4081809
#> 3438                                           Gateway 00-0034546 3042907
#> 3439                                 West Laurens (GA) 00-0033323 2573414
#> 3440                                            Snider 00-0034691 3069758
#> 3441                         All Saints Episcopal (TX) 00-0035093 3121419
#> 3442                                   University (WA) 00-0032418 2978331
#> 3443                                   Stephenson (GA) 00-0035502 3116735
#> 3444                                   St. Edward (OH) 00-0033277 2977624
#> 3445                             DeMatha Catholic (MD) 00-0031942 2515944
#> 3446                             Beckman Catholic (IA) 00-0030149   16235
#> 3447                                       Seguin (TX) 00-0032874 2578713
#> 3448                                   Lewis Cass (IN) 00-0032297 2470264
#> 3449                                Glendale (Ontario) 00-0029076   15347
#> 3450                                         Tallmadge 00-0035066 3126065
#> 3451                                        Plano West 00-0034627 3040102
#> 3452                                 Brother Rice (MI) 00-0027078   12680
#> 3453                                           Trinity 00-0035571 3929863
#> 3454                                    Elk Grove (CA) 00-0028240   14460
#> 3455                                 ThunderRidge (CO) 00-0034405 3128790
#> 3456                                            Judson 00-0035690 4036407
#> 3457                                      Anamosa (IA) 00-0025473   10530
#> 3458                                           Trinity 00-0034155 3052516
#> 3459                      Dr. John D. Horn High School 00-0034868 3892890
#> 3460                                     O'Gorman (SD) 00-0032646 3915883
#> 3461                                     Boardman (OH) 00-0026205   11299
#> 3462                                       Bound Brook 00-0034108 3051321
#> 3463                                  Rhea County (TN) 00-0030652   17095
#> 3464                           Pensacola Catholic (FL) 00-0026275   11382
#> 3465                                   Farrington (HI) 00-0027694   13283
#> 3466                                Seneca Valley (PA) 00-0029187   15409
#> 3467                                  Cedar Grove (GA) 00-0034026 2979845
#> 3468                                 South Panola (MS) 00-0027678   13278
#> 3469                                      Boulder (CO) 00-0030017   16412
#> 3470                                         Sewanhaka 00-0033996 3116592
#> 3471                                          Cleburne 00-0034475 4294246
#> 3472                                       St. Francis 00-0034579 3045217
#> 3473                                 Belle Chasse (LA) 00-0030629   16686
#> 3474                                      Oberlin (OH) 00-0030071   15869
#> 3475                            King College Prep (IL) 00-0029524   14990
#> 3476                                  North Shore (TX) 00-0034097 3117420
#> 3477                                        St. Mary's 00-0034260 2973599
#> 3478                                     Lakewood (WA) 00-0033346 2978250
#> 3479                                     Hibriten (NC) 00-0031765 2507667
#> 3480                                     Puyallup (WA) 00-0033151 2978263
#> 3481                                          Salesian 00-0034212 3052709
#> 3482                                              <NA> 00-0035411      NA
#> 3483                                      Lovejoy (GA) 00-0027750   13451
#> 3484                                  Lake Dallas (TX) 00-0035016 3914595
#> 3485                              Cardinal Newman (CA) 00-0032979 3056472
#> 3486                                             Salem 00-0034525 3045469
#> 3487                             Trotwood-Madison (OH) 00-0033368 2970256
#> 3488                                   Bergen Catholic 00-0034566 3045249
#> 3489                                      Proviso West 00-0034905 3047235
#> 3490                                      Lovejoy (GA) 00-0034769 3128747
#> 3491                                   Palo Verde (NV) 00-0033678 2980586
#> 3492                                    Harker Heights 00-0034181 3046694
#> 3493                                            Burges 00-0034190 3051458
#> 3494                        Frankford High School (PA) 00-0031696 2974300
#> 3495                                         Glenville 00-0034537 3051412
#> 3496                                   Gwynn Park (MD) 00-0034191 4334406
#> 3497                               Jersey Village (TX) 00-0035198 4262186
#> 3498                                    Covington (LA) 00-0033738 2980070
#> 3499                                     Oakcrest (NJ) 00-0033337 3057972
#> 3500                                 Crespi Caremelite 00-0034288 3052144
#> 3501                                          Eastlake 00-0035458 3127302
#> 3502                                Miami Central (FL) 00-0033447 3042403
#> 3503                                        Norco (CA) 00-0031058   16926
#> 3504                                           Douglas 00-0035158 4259349
#> 3505                                    Montesano (WA) 00-0033185 2323439
#> 3506                                   Wilson Westlawn 00-0034534 3045180
#> 3507                                           Branham 00-0033140 2986701
#> 3508                                   Langston Hughes 00-0035497 4040893
#> 3509                                  St. Francis (MI) 00-0033424 2979532
#> 3510                                       Crete-Monee 00-0034595 3129306
#> 3511                                      Roswell (GA) 00-0035326 4035474
#> 3512                               East Feliciana (LA) 00-0033938 3042733
#> 3513                                       Beavercreek 00-0034711 3116737
#> 3514                                   Millennium (AZ) 00-0031290   16924
#> 3515                         The Haverford School (PA) 00-0033849 3045149
#> 3516                                         Homestead 00-0034303 3128853
#> 3517                                        Centennial 00-0035052 3700080
#> 3518                                 Hillsborough (FL) 00-0033700 3051368
#> 3519                                         McDonough 00-0034923 4250485
#> 3520                                    Westbrook (ME) 00-0032452 2585785
#> 3521                                    Tampa Catholic 00-0035349 3115923
#> 3522                                   Free State (KS) 00-0034931 3133361
#> 3523                                Archbishop Carroll 00-0034599 2974249
#> 3524                                      Reynoldsburg 00-0034232 4037632
#> 3525                                  Bolingbrook (IL) 00-0032406 2971051
#> 3526                                      Guthrie (OK) 00-0032422 2577354
#> 3527                                     Narbonne (CA) 00-0034422 3052161
#> 3528                                   Gaineville (FL) 00-0033494 3040065
#> 3529                                    Seabreeze (FL) 00-0019646    2148
#> 3530                                Highland Park (TX) 00-0032584 2971728
#> 3531                           Southwest Covenant (OK) 00-0028660   14322
#> 3532                               Lake Highlands (TX) 00-0004091    1440
#> 3533                                         Alta Loma 00-0031112   17130
#> 3534                                  Centerville (OH) 00-0023482    8461
#> 3535                                      Needham (MA) 00-0025944   11923
#> 3536                                    Brownwood (TX) 00-0034479 3052413
#> 3537                     East Mecklenburg High School. 00-0034147 3059104
#> 3538                                      Clinton (MS) 00-0032835 3135726
#> 3539                                            Argyle 00-0035171 3128692
#> 3540                                   Campolindo (CA) 00-0028907   15245
#> 3541                                    Middleton (WI) 00-0032087 2998120
#> 3542                                St. Augustine (FL) 00-0030390   15918
#> 3543                                        Solon (IA) 00-0032616 2582419
#> 3544                                   Notre Dame (CA) 00-0028787   14816
#> 3545                         Groveland South Lake (FL) 00-0033102 2978887
#> 3546                                      Central (SD) 00-0016919    1097
#> 3547                      Christ Church Episcopal (SC) 00-0030896   16976
#> 3548                                      Hoggard (NC) 00-0026138   11737
#> 3549                                      Jupiter (FL) 00-0030850   17082
#> 3550                             Cardinal Gibbons (FL) 00-0029576   15058
#> 3551                              Madison Central (MS) 00-0024333    9704
#> 3552                              Exeter Township (PA) 00-0032669 2578718
#> 3553                                  Bridge City (TX) 00-0020578    4333
#> 3554                                    Albemarle (VA) 00-0023096    9329
#> 3555                                    McPherson (KS) 00-0034202 3068715
#> 3556                                    Conestoga (PA) 00-0028620   14262
#> 3557                                       Daphne (AL) 00-0033525 2976495
#> 3558                                   Clearwater (FL) 00-0031018   16897
#> 3559                                         Novi (MI) 00-0033997 3057876
#> 3560                                    Brookwood (GA) 00-0031815 2577602
#> 3561                                  Hill Murray (MN) 00-0034415 3045259
#> 3562                                       Xavier (OH) 00-0029248   14938
#> 3563                                    West Side (NJ) 00-0029212   15070
#> 3564                                  Granite Bay (CA) 00-0034986 3701669
#> 3565                                      Bozeman (MT) 00-0030770   16983
#> 3566                                      Concord (DE) 00-0029792   16243
#> 3567                                     Havelock (NC) 00-0027978   14026
#> 3568                                   John Ehret (LA) 00-0031354   16852
#> 3569                                      Seaside (CA) 00-0028022   14023
#> 3570                                        Anson (NC) 00-0032102 2576482
#> 3571                                    Stevenson (MI) 00-0027442   13779
#> 3572                                    La Grange (GA) 00-0025828   11609
#> 3573                                   Upper Arlington 00-0034580 3121376
#> 3574                                    Jefferson (FL) 00-0031943 2578565
#> 3575                                 Terry Parker (FL) 00-0030119   15954
#> 3576                           State College Area (PA) 00-0029629   15040
#> 3577                                      Central (OH) 00-0031491 2265764
#> 3578                                      Lowndes (GA) 00-0033532 2977645
#> 3579                                High Point Central 00-0035354 3120075
#> 3580                              Hollywood Hills (FL) 00-0031729 2579598
#> 3581                               Cherokee Trail (CO) 00-0030160   16268
#> 3582                               King's Academy (FL) 00-0029479   15640
#> 3583                               Glades Central (FL) 00-0032895 2971929
#> 3584                                    Southern Vance 00-0034518 3056831
#> 3585                                Champlin Park (MN) 00-0026672   12988
#> 3586                                       Dublin (GA) 00-0026307   11401
#> 3587                                   Wilde Lake (MD) 00-0029566   14973
#> 3588                                   St. Paul's (AL) 00-0029670   14932
#> 3589                                 Shadow Ridge (NV) 00-0029289   15112
#> 3590                                Coconut Creek (FL) 00-0028454   14387
#> 3591                                    Los Gatos (CA) 00-0030401   15819
#> 3592                                    Northwest (OH) 00-0031171   16762
#> 3593                              University City (MO) 00-0030517   16025
#> 3594                                      Oakland (TN) 00-0035741 3915778
#> 3595                           St. Mary's College (CA) 00-0023259    9424
#> 3596                                      Chatham (NY) 00-0031847 2576461
#> 3597                            Loyola Blakefield (MD) 00-0030033   16457
#> 3598                                       Alonso (FL) 00-0031956 2579601
#> 3599                                 North County (MO) 00-0029869   16324
#> 3600                                   Churchland (VA) 00-0027777   13422
#> 3601                               Lowndes County (GA) 00-0031309   16891
#> 3602                                     Kathleen (FL) 00-0027560   13851
#> 3603                                       Vanden (CA) 00-0031366   16723
#> 3604                                       Curtis (NY) 00-0031425   16721
#> 3605                                       Hylton (VA) 00-0024495   10138
#> 3606                                  Winter Park (FL) 00-0034588 3123054
#> 3607                                    Silverado (NV) 00-0028698   14739
#> 3608                                Cypress Falls (TX) 00-0035103 3122141
#> 3609                                            Milton 00-0035744 3915393
#> 3610                                 Troup County (GA) 00-0033887 3054844
#> 3611                                     Lakewood (FL) 00-0034755 3054029
#> 3612                                  West Monroe (LA) 00-0030558   15805
#> 3613                                     Inderkum (CA) 00-0031084   16849
#> 3614                               Canon-McMillan (PA) 00-0031719 2515545
#> 3615                    Trinity Christian Academy (FL) 00-0034107 3916928
#> 3616                                 Bishop Miege (MO) 00-0032221 2577371
#> 3617                                   New Albany (OH) 00-0033147 3051398
#> 3618                                     Timpview (UT) 00-0033298 3055105
#> 3619                             Coatesville Area (PA) 00-0027868   13248
#> 3620                            Cimarron-Memorial (NV) 00-0029620   15002
#> 3621                                       Simeon (IL) 00-0030104   15930
#> 3622                                  Aiken South (SC) 00-0027812   13482
#> 3623                                      Bayside (NY) 00-0027245   13766
#> 3624                              Ridge Community (FL) 00-0030434   15934
#> 3625                                      Fairfax (AZ) 00-0032633 2576755
#> 3626                                      Desert Hills 00-0034480 2987188
#> 3627                                      Sanford (FL) 00-0030050   16463
#> 3628                                           Lincoln 00-0034554 3056719
#> 3629                                      Skyline (TX) 00-0031350   16902
#> 3630                                    Varina HS (VA) 00-0029600   14952
#> 3631                                  Benedictine (OH) 00-0029418   15068
#> 3632                                     Crenshaw (CA) 00-0032171 2510601
#> 3633                              Maynard Jackson (GA) 00-0031564 2576646
#> 3634                                   Palo Verde (NV) 00-0035023 4239787
#> 3635                                       Marion (IL) 00-0035136 2579634
#> 3636                                   Centennial (CA) 00-0028912   15246
#> 3637                                   Washington (SD) 00-0033577 3040475
#> 3638                                    Talladega (AL) 00-0034933 3127075
#> 3639                                    St. Louis (HI) 00-0032386 3042874
#> 3640                 University of Detroit Jesuit (MI) 00-0027022   12449
#> 3641                              Langston Hughes (GA) 00-0035284 3915196
#> 3642                           Palm Beach Gardens (FL) 00-0035115 3862861
#> 3643                                   Clearfield (UT) 00-0031728 2517389
#> 3644                                Spring Valley (SC) 00-0035257 3126362
#> 3645                            George Washington (PA) 00-0035267 3929648
#> 3646                                      Lincoln (IA) 00-0034811 3116667
#> 3647                                       Hudson (OH) 00-0033944 3045212
#> 3648                                      Oakland (TN) 00-0034153 3122169
#> 3649                                 St. Ignatius (OH) 00-0031578 2515337
#> 3650                                         Waco (TX) 00-0023449    8430
#> 3651                                       Eureka (MO) 00-0031393   16937
#> 3652                                     Hamilton (AZ) 00-0022161    4468
#> 3653                            North Little Rock (AR) 00-0031945 3046428
#> 3654                                      Simmons (MS) 00-0031929 2516283
#> 3655                            Long Beach Jordan (CA) 00-0031915 2578388
#> 3656                            Mountlake Terrace (WA) 00-0034167 3122593
#> 3657                                    Mackenzie (MI) 00-0029408   14929
#> 3658                                              <NA> 00-0034850 3045361
#> 3659                                Cypress Creek (TX) 00-0033635 3043197
#> 3660                                   North Allegheny 00-0035440 3123941
#> 3661                                     Chamblee (GA) 00-0034622 3043128
#> 3662                                   Stephenson (GA) 00-0028006   13995
#> 3663                               Roanoke Rapids (NC) 00-0031050   16764
#> 3664                                        Milan (TN) 00-0031263   16920
#> 3665                                      Wakulla (FL) 00-0029272   15075
#> 3666                                       Agoura (CA) 00-0027002   12438
#> 3667                                Golden Valley (CA) 00-0034428 3045267
#> 3668                             Southwest DeKalb (GA) 00-0032820 2576809
#> 3669                                      Collins (MS) 00-0035014 3917286
#> 3670                                     Pearland (TX) 00-0035419 3122441
#> 3671                                    Paulsboro (NJ) 00-0030385   15977
#> 3672                                   Hutchinson (KS) 00-0032201 2577219
#> 3673                                        Lamar (SC) 00-0033121 2576489
#> 3674                                       Hoover (CA) 00-0029409   14978
#> 3675                                Randolph-Clay (GA) 00-0023448    8429
#> 3676                              Upper St. Clair (PA) 00-0027663   13284
#> 3677                           St. Thomas Aquinas (FL) 00-0034881 3042445
#> 3678                                  Palm Desert (CA) 00-0031950 3001171
#> 3679                                     Stafford (TX) 00-0028834   14860
#> 3680                                  Gainesville (FL) 00-0031866 2577718
#> 3681                                       Sabino (AZ) 00-0027980   13997
#> 3682                                    Homestead (FL) 00-0032627 2970181
#> 3683                               University Lab (LA) 00-0033915 3054862
#> 3684                                            Macomb 00-0034312 3049262
#> 3685                                         Brookwood 00-0035461 3917548
#> 3686                           Landmark Christian (GA) 00-0033420 3048402
#> 3687                                      Miramar (FL) 00-0033242 3051924
#> 3688                                      Al Raby (IL) 00-0034410 3128252
#> 3689                                     Westlake (TX) 00-0032248 2512999
#> 3690                                      Carroll (TX) 00-0031902 2514468
#> 3691                                        Ayala (CA) 00-0031614 2468550
#> 3692                                      Punahou (HI) 00-0030278   15867
#> 3693                                        Lamar (TX) 00-0026989   12439
#> 3694                                 Mundy's Mill (GA) 00-0034872 3116052
#> 3695                                      Babylon (NY) 00-0035008 3120810
#> 3696                                             Davis 00-0035627 3910330
#> 3697                                  Ocean Lakes (VA) 00-0032060 2979652
#> 3698                                   St. Mark's (TX) 00-0028041   14152
#> 3699                                    Paraclete (CA) 00-0031427   17497
#> 3700                            Fort Walton Beach (FL) 00-0032114 2576635
#> 3701                               Stone Mountain (GA) 00-0033468 2969922
#> 3702                                 Millard West (NE) 00-0031814 3085243
#> 3703                                   Verbum Dei (CA) 00-0027977   14015
#> 3704                                    Glenville (OH) 00-0030752   16991
#> 3705                                     Hueytown (AL) 00-0030197   16475
#> 3706                             Schuyler Central (NE) 00-0032110 2508212
#> 3707                           Cretin-Derham Hall (MN) 00-0033704 3052889
#> 3708                                   Plantation (FL) 00-0031365   16727
#> 3709                                 Island Coast (FL) 00-0030993   16941
#> 3710                          Philipsburg-Osceola (PA) 00-0023177    9276
#> 3711                                  Notre Dame (CAN) 00-0023298    9349
#> 3712                                      Horizon (CO) 00-0023173    9287
#> 3713                                     Wallenpaupack 00-0035205 3144792
#> 3714                                        Elder (OH) 00-0027247   13777
#> 3715                     Phillips Andover Academy (MA) 00-0025503   10560
#> 3716                                 North Canyon (AZ) 00-0026714   12904
#> 3717                                 Collierville (TN) 00-0034168 2980350
#> 3718                              Ottawa-Glandorf (OH) 00-0035472 3929801
#> 3719                                      Central (TX) 00-0035709 4038201
#> 3720                                      Liberty (CA) 00-0034917 3054855
#> 3721                                     Ensworth (TN) 00-0029879   16361
#> 3722                                            Damien 00-0034233 3122680
#> 3723                          San Diego Jewish Academy 00-0032338 2516051
#> 3724                                      Mount Carmel 00-0035054 3039982
#> 3725                               Bishop Manogue (NV) 00-0035337 3914817
#> 3726                                      Service High 00-0033115 2976115
#> 3727                                      Sheldon (OR) 00-0032486 2967885
#> 3728                                 China Spring (TX) 00-0028374   14426
#> 3729                                       Lufkin (TX) 00-0022455    8362
#> 3730                                 Edwardsville (IL) 00-0032396 2974333
#> 3731                                        Lamar (TX) 00-0035459 3128354
#> 3732                                    Glen Oaks (LA) 00-0031620 2568060
#> 3733                                           Har-Ber 00-0034338 3126350
#> 3734                                   Gwynn Park (MD) 00-0027959   13968
#> 3735                                    Edna Karr (LA) 00-0035128 3115258
#> 3736                                        Palo Verde 00-0034517 3125323
#> 3737                                         Marquette 00-0034194 3121563
#> 3738                                              <NA> 00-0035622 3932392
#> 3739                            St. Paul's School (NH) 00-0035053 3912362
#> 3740                                     Wilcox County 00-0035451 3126348
#> 3741                            Victory Rock Prep (FL) 00-0035027 4408860
#> 3742                                            Walker 00-0034665 3048672
#> 3743                               Noxubee County (MS) 00-0033325 3059973
#> 3744                                         East (UT) 00-0033971 3052515
#> 3745                                      Aldine Davis 00-0035452 4243164
#> 3746                                   West Point (MS) 00-0034520 3914155
#> 3747                                 Lincoln Southwest 00-0034195 3042743
#> 3748                                  Federal Way (WA) 00-0035096 3119315
#> 3749                          Pleasure Ridge Park (KY) 00-0031127   17061
#> 3750                                        Centennial 00-0035566 3122684
#> 3751                                   Minnetonka (MN) 00-0031089   16912
#> 3752                                  Trotwood-Madison 00-0033998 3042478
#> 3753                                        Terry (MS) 00-0033369 3915787
#> 3754                  Fork Union Military Academy (VA) 00-0034497 3048705
#> 3755                                     Crenshaw (CA) 00-0025472   10529
#> 3756                                    El Dorado (AR) 00-0034552 3128698
#> 3757                                North Clayton (GA) 00-0027236   13608
#> 3758                                   Carrollton (GA) 00-0035312 3121587
#> 3759                                Council Rock North 00-0034209 3057975
#> 3760                              Garrett Academy Tech 00-0035509 3918417
#> 3761                              Sidwell Friends (DC) 00-0035486 3913020
#> 3762                                    Red River (LA) 00-0030507   15850
#> 3763                                 Trinity Christian 00-0034434 3917847
#> 3764                                        Moody (AL) 00-0031928 2516029
#> 3765                                    Albemarle (NC) 00-0034699 3039713
#> 3766                                  Mooresville (NC) 00-0029146   15025
#> 3767                                Langham Creek (TX) 00-0029259   14957
#> 3768                                      Central (CO) 00-0027282   13802
#> 3769                                       Waukee (IA) 00-0035036 3144994
#> 3770                             Central Catholic (PA) 00-0027986     169
#> 3771                                     Brashear (PA) 00-0029762   16247
#> 3772                                   Lake Worth (FL) 00-0029278   15108
#> 3773                                     Bellevue (WA) 00-0029678   14935
#> 3774                       Palm Harbor University (FL) 00-0027607   13403
#> 3775                                     Timpview (UT) 00-0034945 2970513
#> 3776                                        Petal (MS) 00-0035005 3691031
#> 3777                               Lake Highlands (TX) 00-0027768   13428
#> 3778                              Mountain Pointe (AZ) 00-0032407 3116110
#> 3779                          St. Francis DeSales (OH) 00-0029889   16327
#> 3780                                       Hudson (OH) 00-0030066   15879
#> 3781                                  Simon Gratz (PA) 00-0030504   15901
#> 3782                            Sacred Heart Prep (CA) 00-0033750 2980597
#> 3783                            Aquinas Institute (NY) 00-0033715 2980142
#> 3784                                Cypress Ridge (TX) 00-0035051 3126302
#> 3785                           Homewood-Flossmoor (IL) 00-0030997   16923
#> 3786                                American Fork (UT) 00-0030011   16385
#> 3787                             Chartiers Valley (PA) 00-0030094   16035
#> 3788                                 Green Valley (NV) 00-0034390 3122687
#> 3789                                Billings West (MT) 00-0033961 2584628
#> 3790                                     Berry Academy 00-0034444 3116695
#> 3791                             DeMatha Catholic (MD) 00-0033191 4081021
#> 3792                                            Elkins 00-0034719 3124544
#> 3793                                 Saddle Brook (NJ) 00-0032470 2982803
#> 3794                                 Rancho Verde (CA) 00-0033841 2980639
#> 3795                                        Davis (UT) 00-0032929 2471470
#> 3796                              Milford Academy (NY) 00-0035469 4411196
#> 3797                                        Allen (TX) 00-0034403 3128801
#> 3798                                           Crowley 00-0035111 4390082
#> 3799                                      Denbigh (VA) 00-0035434 3124030
#> 3800                                     Woodlawn (AL) 00-0032751 2971032
#> 3801                                         Kealakehe 00-0034689 3056487
#> 3802                                 Starr's Mill (GA) 00-0032729 3051940
#> 3803                                        Wando (SC) 00-0033776 2971022
#> 3804                                            Howard 00-0035122 4266934
#> 3805                               T. C. Williams (VA) 00-0035324 3116693
#> 3806                                      Eufaula (AL) 00-0033450 3042370
#> 3807                                 Christian Academy 00-0034643 3050925
#> 3808                                   St. Xavier (OH) 00-0032491 2978064
#> 3809                                           Pacheco 00-0034474 3914861
#> 3810                                            Hunter 00-0033606 3045851
#> 3811                           Archbishop Moeller (OH) 00-0031509 2515422
#> 3812                                       Marcus (TX) 00-0033794 2971565
#> 3813                                   Plantation (FL) 00-0032994 2576378
#> 3814                                              <NA> 00-0034724 3116620
#> 3815                         St. Vincent-St. Mary (OH) 00-0035482 3121408
#> 3816                                           Byhalia 00-0035392 3139626
#> 3817                                          Memorial 00-0034738 3047923
#> 3818                             Archbishop Hoban (OH) 00-0033477 2972232
#> 3819                                         Delbarton 00-0034484 3118964
#> 3820                                   Long Beach (MS) 00-0033423 2971373
#> 3821                              Booker T. Washington 00-0034341 3045376
#> 3822                                      Miller Grove 00-0033226 2978065
#> 3823                               Woodland Hills (PA) 00-0033974 2576666
#> 3824                                       Martin (TX) 00-0033234 3042361
#> 3825                                  Spring Lake Park 00-0035107 3120573
#> 3826                                       South Lakes 00-0032708 2978411
#> 3827                                    Abbeville (SC) 00-0033657 3049574
#> 3828                                  Clearview Region 00-0035550 3912679
#> 3829                                Baylor School (TN) 00-0034117 3115352
#> 3830                                      Good Counsel 00-0035445 3128308
#> 3831                                          Theodore 00-0035506 3126363
#> 3832                                       Jesuit (OR) 00-0035381 3117242
#> 3833                                         Rochester 00-0034210 3045261
#> 3834                                   Fort Lauderdale 00-0034898 3124103
#> 3835                                       Ceder Grove 00-0035747 3126478
#> 3836                                        Notre Dame 00-0035123 3116162
#> 3837                                    Hillgrove (GA) 00-0032670 2577919
#> 3838                                              East 00-0035608 3917329
#> 3839                                   Arabia Mountain 00-0034460 3052451
#> 3840                                   Lakeville South 00-0035426 3921958
#> 3841                                     Santa Fe (OK) 00-0035116 4290803
#> 3842                                  Grand Blanc (MI) 00-0031707 2515838
#> 3843                              Rancho Bernardo (CA) 00-0032799 2577203
#> 3844                               Downers Grove North 00-0034713 3125898
#> 3845                               Dekaney High School 00-0034548 3040024
#> 3846                                              <NA> 00-0035049 4251200
#> 3847                                     Wichita South 00-0034776 4036493
#> 3848                                     Syracuse (UT) 00-0033686 2971636
#> 3849                           Woodberry Forest School 00-0034305 3129304
#> 3850                                       James Logan 00-0034238 3045243
#> 3851                                              Pike 00-0035581 3060799
#> 3852                                            Pomona 00-0034282 3052184
#> 3853                                       Keller (TX) 00-0035673 3115384
#> 3854                             Carleton Airport (MI) 00-0030396   16573
#> 3855                                     Atlantic (FL) 00-0032796 3929954
#> 3856                                       Mona Shores 00-0034458 3126120
#> 3857                                      Lovejoy (GA) 00-0032425 2567868
#> 3858                                        Serra (CA) 00-0033741 3042536
#> 3859                                Immaculate LaSalle 00-0035338 3922125
#> 3860                                       Dreher (SC) 00-0032622 2576703
#> 3861                                           Bearden 00-0031946 2520845
#> 3862                        Thomas County Central (GA) 00-0031616 2514799
#> 3863                              Belleville East (IL) 00-0033399 2975680
#> 3864                                             Vigor 00-0035626 3121578
#> 3865                                Miami Norland (FL) 00-0035271 4034945
#> 3866                           Lawrence E. Elkins (TX) 00-0034539 2976524
#> 3867                                         Lake Mary 00-0034069 3051712
#> 3868                                     Longview (TX) 00-0032851 2577651
#> 3869                                              <NA> 00-0034008 2976179
#> 3870                                   West Point (MS) 00-0032484 2574163
#> 3871                                  Sweet Water (AL) 00-0032905 2574558
#> 3872                                    Salisbury (NC) 00-0033521 3042773
#> 3873                      Silver Spring Northwood (MD) 00-0033188 2470344
#> 3874                                     Los Osos (CA) 00-0031931 2517002
#> 3875                             Trotwood-Madison (OH) 00-0032674 2576660
#> 3876                               South Grand Prairie 00-0034236 3125119
#> 3877                                             Godby 00-0034242 3122932
#> 3878                                            Ankeny 00-0034558 3039921
#> 3879                                 Charles Drew (GA) 00-0033922 2972820
#> 3880                                    Williston (ND) 00-0031031   17087
#> 3881                                       Lakota West 00-0034188 3053777
#> 3882                                         Grandview 00-0034530 3062371
#> 3883                      High School of Commerce (MA) 00-0033827 3916585
#> 3884                                    West Side (NJ) 00-0035152 3137842
#> 3885              Florida State University School (FL) 00-0035558 3126153
#> 3886                        John Curtis Christian (LA) 00-0032909 2976546
#> 3887                                      East Forsyth 00-0034690 3040542
#> 3888                                          Marshall 00-0034513 3928934
#> 3889                                         Kell (GA) 00-0035364 4034773
#> 3890                                            Oakton 00-0034543 3052021
#> 3891                                            Valley 00-0034550 3039942
#> 3892                                     Chandler (AZ) 00-0031113   17390
#> 3893                                        Depew (NY) 00-0032666 2574396
#> 3894                    Hargrave Military Academy (VA) 00-0033583 2971388
#> 3895                                              <NA> 00-0034492 3059941
#> 3896                                    Bellville (TX) 00-0035736 4421448
#> 3897                                       Valley (AL) 00-0033972 2981069
#> 3898                                         Westfield 00-0034470 3844004
#> 3899                                        Baker (AL) 00-0031764 2516314
#> 3900                                           Milford 00-0034656 3050401
#> 3901                                       C. F. Vigor 00-0031879 2514802
#> 3902                                     American Fork 00-0032885 2575636
#> 3903                                      Cascade (WA) 00-0034182 3119531
#> 3904                                     Lakewood (CA) 00-0035331 3917563
#> 3905                         Hastings St. Cecilia (NE) 00-0032921 2576365
#> 3906                            Grand Rapids Christian 00-0035180 3116133
#> 3907                                 Abilene Christian 00-0035582 3055604
#> 3908                                        Maury (VA) 00-0030096   15927
#> 3909                     Handelsskolen Silkeborg (DNK) 00-0033229 2974240
#> 3910                                        Buena (AZ) 00-0032155 2512704
#> 3911                                            Brophy 00-0035517 3117248
#> 3912                                            Wilson 00-0034187 3140151
#> 3913                                Christian Brothers 00-0034938 3128699
#> 3914                                  DeMatha Catholic 00-0035477 3122934
#> 3915                                     Saint Anthony 00-0034076 3048635
#> 3916                                         Paramount 00-0035041 3139092
#> 3917                                    Brunswick (CT) 00-0033795 2982323
#> 3918                                   Fox Chapel (PA) 00-0033965 2970255
#> 3919                                   Bishop McNamara 00-0035578 3128311
#> 3920                                       Apopka (FL) 00-0035724 3915102
#> 3921                               Lake Highlands (TX) 00-0033345 3046702
#> 3922                                      Trinity (NH) 00-0033500 2969125
#> 3923                                     Tilghman (KY) 00-0034722 4037476
#> 3924                                      Paramus (NJ) 00-0034924 3115977
#> 3925                           St. Thomas Aquinas (FL) 00-0028001   13998
#> 3926                                      Batavia (IL) 00-0033426 2972575
#> 3927                                   Mendenhall (MS) 00-0034824 3894924
#> 3928                                        Providence 00-0034820 3116702
#> 3929                                          Oakhurst 00-0034693 3919077
#> 3930                                  St. Joseph (CAN) 00-0031646 2514505
#> 3931                                  Lakota West (OH) 00-0035001 3915238
#> 3932                          Christ Presbyterian (TN) 00-0035007 3122099
#> 3933                            Francis Howell Central 00-0035420 4329476
#> 3934                                  George Bush (TX) 00-0027859   13242
#> 3935                                      Frank W. Cox 00-0035425 3924355
#> 3936                          Champagnat Catholic (FL) 00-0034940 3938130
#> 3937                                   Alexandria (LA) 00-0026814   13050
#> 3938                                    Elk Grove (CA) 00-0033804 2978207
#> 3939                                       Venice (FL) 00-0034963 3917868
#> 3940                                      Wilbur Cross 00-0035203 3138756
#> 3941                                  St. Bernard (CA) 00-0023894   10062
#> 3942                                         Mansfield 00-0034542 3046323
#> 3943                                          Hamilton 00-0035055 4251009
#> 3944                                           Fernley 00-0035134 4036833
#> 3945                                    New Trier (IL) 00-0035613 3912487
#> 3946                              Decatur Central (IN) 00-0035132 3116658
#> 3947                                Strake Jesuit (TX) 00-0032680 2974612
#> 3948                                  IMG Academy (FL) 00-0034958 3917870
#> 3949                           St. Thomas Aquinas (FL) 00-0027778   13496
#> 3950                                        North (TX) 00-0027609   13483
#> 3951                    Oak Ridge Military Academy, NC 00-0034259 3046693
#> 3952                                      Freedom (FL) 00-0033636 2981862
#> 3953                                  Afrikaanse (ZAF) 00-0034508 3056440
#> 3954                             Mansfield Legacy (TX) 00-0032397 2573312
#> 3955                                    Vicksburg (MS) 00-0032723 3123982
#> 3956                                      Weeki Wachee 00-0035105 3121518
#> 3957                              Georgetown Prep (MD) 00-0033273 2987317
#> 3958                                    Avon Lake (OH) 00-0031626 2576480
#> 3959                                 Forest Hills (MI) 00-0027674   13302
#> 3960                                Garnet Valley (PA) 00-0035611 3120858
#> 3961                                        Boone (FL) 00-0034684 3054971
#> 3962                                 Walsh Jesuit (OH) 00-0032896 2578698
#> 3963                                              <NA> 00-0033189 2471491
#> 3964                                        Whitewater 00-0034651 3051938
#> 3965                                 East Bernard (TX) 00-0019714    2273
#> 3966                                             Allen 00-0034576 3051820
#> 3967                               Dickson County (TN) 00-0034626 3044725
#> 3968                                              <NA> 00-0033218 3046441
#> 3969                                      Liberty (CA) 00-0030551   16623
#> 3970                                      Bearden (TN) 00-0026516   12773
#> 3971                                Berkeley Prep (FL) 00-0033364 2980123
#> 3972                                  Catholic HS (LA) 00-0022684    5749
#> 3973                                   Carrollton (GA) 00-0035433 3129309
#> 3974                  Sheldon-Williams Collegiate (SK) 00-0023742   10238
#> 3975                                     Ragsdale (NC) 00-0031420   17495
#> 3976                                     Callaway (MS) 00-0033201 2996095
#> 3977                                      Rutland (GA) 00-0029123   15389
#> 3978                           North Myrtle Beach (SC) 00-0029493   15616
#> 3979                                     Frontier (CA) 00-0031716 2516357
#> 3980                                      Jupiter (FL) 00-0028130   14073
#> 3981                                   Long Beach Poly 00-0034908 2973605
#> 3982                                Thousand Oaks (CA) 00-0034064 3050015
#> 3983                                        Coosa (GA) 00-0028664   14723
#> 3984                            Francis W. Parker (CA) 00-0031876 2576240
#> 3985                              Fellowship Christian 00-0034950 3133168
#> 3986                               Mountain Ridge (AZ) 00-0030405   15926
#> 3987                                   West Salem (OR) 00-0029984   16382
#> 3988                                         San Marin 00-0035077 3128814
#> 3989                                         Glenville 00-0033098 2976299
#> 3990                             La Salle College (PA) 00-0035163 3915776
#> 3991                                         Broad Run 00-0034897 2979695
#> 3992                              West Lauderdale (MS) 00-0028957   15187
#> 3993                                     Flathead (MT) 00-0029682   14879
#> 3994                                   Midlothian (TX) 00-0031568 2466005
#> 3995                                      Artesia (NM) 00-0030524   15904
#> 3996                           St. Thomas Aquinas (FL) 00-0032431 2582424
#> 3997                              Mortimer-Jordan (AL) 00-0035577 3127051
#> 3998                                     Miami Jackson 00-0034531 3139591
#> 3999                                       Gulf Shores 00-0034918 3042565
#>                             sportradar_id yahoo_id rotowire_id pff_id
#> 1    c025b513-9431-4097-bc25-9777bf08f846    31865       13560  44027
#> 2    d0fa2103-69a1-4ed0-a3cd-4eb8d5e342c2    30623       12097  39398
#> 3    9bc107dc-1920-49db-b009-436d1a77955d    29957       11518  11353
#> 4    528bf5c9-1d23-40c3-adda-df21f8f0e2ab    33089       14793  50465
#> 5    ba905b34-8412-4553-9055-3460368cc608    27630        9648   8737
#> 6    30e539c3-74dd-4a9a-9ebb-4bdd0f0d39f8    29924       11101  11302
#> 7    409f6cf2-cfd2-4712-80a2-9a62e0ad75c4       NA       15313  55592
#> 8    4f5ca039-21f3-4045-9c2e-c0b4d5d564c5    26683        8645   7841
#> 9    ba7e7289-6b7f-4db1-85aa-514d4fa0d367       NA       15342     NA
#> 10   ea8d0a80-2de3-4715-bcce-710f625ccb6a    32472       13969  49572
#> 11   56992f39-70e7-4b6a-86da-0a4776504e7a    32623       14330  49116
#> 12   7757384a-6b03-41fb-9c77-3c016a968d1c    29781       11341  11137
#> 13   4f13ee42-4af7-4719-bce6-60a426036fd5    33273       14916  51256
#> 14   db3a0416-6758-485d-89e1-806af99e0991    31971       13586  25444
#> 15   6c7704c2-f833-46aa-9f9c-d975d5ad1297    26621        9101   8419
#> 16   5ce20f3e-0f02-4f53-a2ef-5b076361f2b1    30149       11986  11791
#> 17   f68685e7-9904-47bc-b39a-e1c813435385    31897       13742  49605
#> 18   023af11a-3aa1-4266-b163-31cf6369ef3b    28440       10311   9485
#> 19   dc11299d-6c24-4048-8b2f-f929e4ed0b92    24798        7323   6163
#> 20   fe9c0458-1a1a-4e88-b974-2de7426fa520    32180       14057  36551
#> 21   c03646a8-503b-49a9-8251-b9c44f13a2ff    32440       13787  18645
#> 22   cf0c253d-45bd-48f5-9602-88c3d9ca1082    32081       13709  48850
#> 23   6399b33c-6d3d-4fc5-b142-1a5deb33ef76    27815        9412   9003
#> 24   7bce07de-7179-459c-97a4-279fb53641a2    31612       12973  49601
#> 25   a50e3085-370b-4fd2-b79a-28d3b9c5c1c7    24058        6682   5607
#> 26   2040899a-0b04-4de7-900b-f9e6861c6150    32784       14712  44614
#> 27   6e9763f5-2f5c-45d4-b50b-d7bbf91e1a65    32801       14717  44515
#> 28   3a2a4022-a54c-4325-b521-e46e460559ab    25868        8148   7151
#> 29   67f5e782-f91c-4536-9818-cf4a0e7e821d     8565        5051   3471
#> 30   48700b7b-210c-4ced-9c57-3e21162e7752    31299       13210  66928
#> 31   036131ed-3862-4f06-8379-084d3b2352d5    27702        9377   8809
#> 32   83849bc5-0b6c-4c76-b622-9c7042758e97    31324       13222  49167
#> 33   0e6f6610-0276-4229-9cf1-66f0d011c1a9       NA       15625  56347
#> 34   ec198436-31b1-458e-a47b-9d1cd134300f    31151       12823  48553
#> 35   4f090881-03fc-4a34-b02f-fd1df1e411de    28472       10452   9517
#> 36   b4a1df84-9467-48b0-bf65-053744916892    33218       14936     NA
#> 37   23f29e42-92e5-41b2-88eb-b9fb17a0eede    30308       11982  11950
#> 38   78eb0872-fff0-4fc2-94ee-6a5c518ecaa5    28446       10329   9491
#> 39   5197def5-f444-4561-ad28-7aac10dc748e    25731        8140   7027
#> 40   61fda7fc-a8d7-435f-9397-5657662cd6b2       NA       15288  77190
#> 41   897fc741-34bd-4f34-a1ed-125d56805b70    29485       11247  10885
#> 42   b87d80b7-f129-4f3d-938a-1272f8122589    32678       14525  42451
#> 43   99149c69-e14f-4e05-9c3a-8ae7e3b1f00b    25976        8543   7301
#> 44   476d6de7-0d10-4f9c-96c9-2bd289052dce    32742       14584  26634
#> 45   5a1e63b3-6dcc-48f5-927c-0fc141085f32    29849       11504  11228
#> 46   1f0d9995-7ace-44ab-8d61-2f3924d5b75d    24842        7439   6207
#> 47   d96246d7-aa2c-4d05-9c58-8d6bc5e20cdf    25958        8243   7229
#> 48   c0221755-d6a6-4f55-9ed3-672a9625ee6c    32080       13681  29038
#> 49   87f9b9a9-5362-4947-8fc4-3b718b00566a    29625       11424  11022
#> 50   f4f08533-c692-4aba-84fe-fc21101c7bda    30249       11796  11891
#> 51   b6fe2eb8-3692-450a-98b3-11e47c8b6711    26642        8733   7800
#> 52   1dc22599-4ce9-49c2-bc8a-179a50e13cc1    32546       13963  46231
#> 53   f19b687d-b81f-4104-9151-92e2af7d234d    28521       10279   9566
#> 54   e805571c-fc68-438c-b8db-2d1286d99182    30293       11798  11933
#> 55   90d9c6b2-3970-45e1-a558-b68a977a8995    28412       10259   9457
#> 56   8db0f2a4-42bd-40a3-996f-f6364716b8a4       NA          NA     NA
#> 57   edaad8e3-62cd-4715-b225-0010ee9825a0     6947        4044   1906
#> 58   3699dfd9-d437-43f7-b674-adbb31e7e64b    24060        6444   5609
#> 59   dd5a6b6e-ffae-45a5-b8e6-718a9251f374    31833       13613  38334
#> 60   d4d135fd-b710-4c12-9082-9d6e544b3f8d    32029       13752  32819
#> 61   fd4241f9-ab42-4dba-a701-455b896eca28    31135       12779  47297
#> 62   d8d9b161-7ef4-42bf-89b7-7edf806a0ad1    31104       12667  45851
#> 63   aebf7b65-da15-4499-b1af-6687fa50b2e4    32892       14372  57136
#> 64   28a084c0-14df-499f-bd1f-b975603626b7    30218       11691  11860
#> 65   0d77e008-ec6d-4816-a186-329c0ecdb6be    33126       14592  40616
#> 66   1dc6b133-355f-451e-856f-d02839681578    33088       15106  25859
#> 67   fed820cc-3104-431a-b38c-efa192216035    30651       12301  46987
#> 68   de3421f7-2147-4835-89a5-724e87bad463    26658        8781   7816
#> 69   cad43704-4231-4a72-b616-c66642103452    31519       13022  29556
#> 70   7574eb56-a34a-419e-9682-c4788cfe2019    30523       11890  12122
#> 71   268c8b1e-b217-474d-a92f-4f924273c938    31283       12692  34985
#> 72   0a084635-4e5b-42ed-a85c-7d0ea1ed76f0       NA       15684     NA
#> 73   52f4a43a-64a9-4d69-a9e2-28bd60f68e49    28443       10128   9488
#> 74   81fb7fa0-7ad9-4ef4-bc33-9df9574714e5    29944       11397  11326
#> 75   8506c15c-15cc-4d2c-aebf-270c605fe0ec    27174        9847   8524
#> 76   c9701373-23f6-4058-9189-8d9c085f3c49    24791        7241   6156
#> 77   4484c7d1-025a-4f26-8e9b-48503afb0c68    32523       13469  42237
#> 78   8e43eb21-92e4-4720-8766-c9204259c063    32317       13447  39967
#> 79   1af02026-aef5-4dcb-baa2-9c9c91d22533    30637       12106  12251
#> 80   58266b36-fa48-4f51-b41c-909bf82748f3    32943       14942  47901
#> 81   975555d0-fe82-4e88-90f4-d690f5000671       NA       15514  62890
#> 82   04f9a4be-b236-4eed-9bc4-794f615ccd13    31894       13612  47448
#> 83   5c48ade7-4b9a-4757-9643-87a6e3839e2b    26650        8619   7808
#> 84   ebcd87ce-218c-4144-810b-921c2f59d6e8    31017       12508  47546
#> 85                                   <NA>       NA          NA     NA
#> 86   18fc2ade-5106-491d-9e5f-97926e64459a    27785        9799   9068
#> 87   e2aa4576-83a6-4b81-ab95-49126a0cf1d4       NA       15474  60742
#> 88   5ff63fe6-3b33-4f0d-bc51-d5e84d862b08    30194       11970  11836
#> 89   6b2ee61f-463f-478a-9bfa-e43c8e9b0c2e       NA          NA  42873
#> 90                                   <NA>       NA          NA     NA
#> 91   1eae2610-be1d-4f53-82a2-28cf4a2db352    32686       14526  55586
#> 92   83d45661-2687-4ca9-ac45-91beac7b7082    31028       12581  50393
#> 93   e3a4104a-ceba-4df2-b265-70843ecf1fb0    32012       13795  83833
#> 94   8cfce145-c6aa-40e0-b759-cad33237144a    29835       11596  11210
#> 95   a2802951-e573-4e8f-ad31-14b9ae5f8e7c    26714        8906   7872
#> 96   c9e9bbc5-2aeb-4f72-9b7c-1a688fb235fb    26707        8777   7865
#> 97   fafdc4a3-ddbd-48b4-b10e-cd8a0189dae1    31943       13618  34105
#> 98   3cd103cf-cc2e-458e-94bc-a7a7ce1632c0    29224       10858  10346
#> 99   0a08ca62-e488-4369-8e26-8b158443865f    31179       12999  50351
#> 100  3beaed67-ca01-4603-be1f-78abfb6037b5       NA       15452  43196
#> 101  8584c710-7259-11ec-80bb-7f28873a7ba2       NA          NA     NA
#> 102  fd7b9398-15b3-4967-8758-8743006dd6ff    33107       14907  32644
#> 103  ded1a577-51cc-4f13-8b79-4f4c09655f44    31726       13320  49607
#> 104  ccfcbd2c-6e35-49b9-b131-ba2143665260    29306       10926  10706
#> 105  c41a772c-8458-4f5d-b7b5-8c2a23406fa3    31967       13798  88313
#> 106  73afc75b-68f0-4cb0-823d-5bfe33969766    32717       14540  48741
#> 107  cd9b9d93-4368-4495-803e-f5d2524c8468    32085       13435  29695
#> 108  65a702f3-1e60-46a3-bce9-8b4e3f939888    32408       14018  56895
#> 109  e1fe1900-fae3-414e-8530-55eece80471f    28525       10458   9570
#> 110  8b9bc551-66bb-4948-849f-c0471caaeb19    28085        9661   9316
#> 111  be07b323-a23c-4589-9fe0-29ae6a537de9    28542       10325   9587
#> 112  f5510376-f94b-470c-94ce-88098635c4ff       NA       15236  56868
#> 113  25adacdc-f26c-4955-af91-2d9fede395d6       NA       15662  39957
#> 114  955093e0-39aa-48b4-b34d-259b369e6535    28141        9990   9302
#> 115  e02c98ff-b5d8-4647-a4ed-bba595ae9e5a    31846       13808  46692
#> 116  a8c79523-3d0e-48dd-b4c6-e3d8afd24a13    30426       12292     NA
#> 117  86d7dd69-9957-4853-b069-5ad7e35edc64    32789       14754  57834
#> 118  c639a18a-ee1a-46ed-8707-580711fa33db    26770        8974   7929
#> 119  ccb8931d-221c-41d3-9b9b-a4c4efa56edd       NA       15753  57937
#> 120  6bc85af5-fc58-4656-82da-d02780a0f6f6    28391       10349   9436
#> 121  a2a587d3-2971-41f5-a5d4-828d9cf1494e    29285       11080  10686
#> 122  ee209aa3-145f-4acb-85fd-e8a2420b4d2a    28934       10850   9934
#> 123  dec323b8-fb75-4182-b03d-6c412d3d51a5    33180       15096  43811
#> 124  2c8e1238-0125-484e-b4f2-c0d08b5ef952    27166        9073   8077
#> 125  43aeb127-28e7-4fac-a611-39c38f3f7628    31146       12933  39256
#> 126  b0501e9c-4f03-4bd8-baae-1e39b3ef751e       NA       15484  44047
#> 127  c8d98dc8-ca11-40bc-bd72-7e2f4bd2ba3b    32062       13990  37468
#> 128  68c82358-44df-4884-9e5d-f5102435c32d    31356       13090  50893
#> 129  0a415a08-ea30-40b2-aac9-42689e3e996a    31170       12995  24904
#> 130  b6d2274d-87cf-4427-bddf-ee8a1b4ea652    27259        9806   8378
#> 131  8bbd5520-52e9-4187-889f-bd4552622869    26168        8553   7748
#> 132  d2710837-baa1-46e3-94c8-7dffe08c93bb       NA       15584  52270
#> 133  b4473469-2593-4c7f-8b41-729e1ddb08f6    30718       12469  12168
#> 134  01dd8219-f1df-4a6e-95b2-27317daca89f    29282       11181  10682
#> 135  e2dde73e-9516-4c0a-80c6-8fbf0f47f930       NA       15175  81725
#> 136  e4250936-5b20-4f18-80cd-7a0b8fa7964a    29355       10904  10755
#> 137  10f9c2c7-d03d-45b4-979f-0fd9b6938aa7       NA          NA  41123
#> 138  e1f9e986-6deb-4302-8478-eb64abe7aa24    31183       12850  46673
#> 139  c498bd15-f54b-4371-ab38-549b1c6d9201    32748       14408  41141
#> 140  a54039fe-c6f8-4a25-82e8-80ce45db9a67    31097       12987  44802
#> 141  a6b00103-9678-41e4-b310-fef78c2a6e43    31343       13080  66448
#> 142  c7273f41-5e8b-4e0c-9606-c8c1bf6f6298    33000       15142     NA
#> 143  e5371625-0c83-4f1f-9252-c7e0b6bc616e     9428        6301   5088
#> 144  7e648a0b-fdc8-4661-a587-5826f2cac11b     8780        5610   4317
#> 145  da7cb0cc-543e-47d5-b29a-2ba2b341bd14    26721        8004   7880
#> 146  79a849be-0552-4da9-89ff-11d20a7a764a       NA       15324  40217
#> 147  d4b30988-e8c5-4689-8037-f79a0d3c2774    27692        9319   8799
#> 148  5c079a21-ae9e-4b38-a69a-47706fa8dd67    30980       12489  35460
#> 149  77921652-c664-4511-91c7-77027bbb2647       NA       15239  57156
#> 150  e311a7a2-eddb-439c-86b4-b1f1984186bc    28514       10083   9559
#> 151  da85107c-365c-4d58-90ab-479d97d798b4    26652        8792   7810
#> 152  c44534f8-a567-40e7-b51e-1a72c49cb24e    31984       13494  45934
#> 153  c588e277-fc9e-4187-9358-2b9e1a2b0cd9    32804       14697  51423
#> 154  ee9c975e-68f9-49cc-886d-f1d00286305d    27534        9248   8641
#> 155  37095914-53be-4d16-b5c7-2194dbb6d6c2    31863       13748  46912
#> 156  1f3deb24-9ff8-4769-8f42-825eff7742f6       NA       15265  83964
#> 157  7f48c754-002d-4d0c-ba40-8c402f95a7c4    32543       13685  47307
#> 158  5aab93f1-bc81-4d83-b105-d579a14eb349    32588       14295  48369
#> 159  d4993930-7259-11ec-80bb-7f28873a7ba2       NA       15840     NA
#> 160  08119cab-78d1-4afe-ad0b-e27f0335f35a    33071       14871  47348
#> 161  1b125fc4-5dd9-4eb9-a42f-048e61ca42b7    30995       12467  47294
#> 162  97e65d1d-c738-4812-840e-030f0242bc29    31749       13356  31849
#> 163  cf23126f-055b-4617-819b-bb4bcb84541a    24946        7425   6311
#> 164  926e2674-52d6-4cec-9991-46ee85cc8cfd    30996       12616  48262
#> 165  d8281390-f081-41e5-b55e-75779536fe94    32123       13833  44920
#> 166  b4e5a9af-6d00-4d51-9bb9-c7d5f69898df    29374       11003  10774
#> 167  6335a39b-9cb4-4703-bed9-1835b9fc4791    30254       11702  11896
#> 168                                  <NA>    30110       12193     NA
#> 169  52f8f4a4-3d70-4d43-9a3d-9f7356033f2f       NA       15465  40988
#> 170  d90a2ae8-cbd6-40cd-a545-3501c93c0822    31347       13083  47900
#> 171  4501e6f4-4683-4357-b241-8b4a0b6aae81    31164       12992  44771
#> 172  c1d52f55-4c65-4b37-8457-f0dc028c85bc       NA       15663  52195
#> 173  1b379101-6c8f-42d4-843c-9a3cc44993ff    29608       11426  10915
#> 174  a3f67680-66f1-4efc-b21b-badd19467cc9    32997       14519  41117
#> 175  402f063b-4703-4729-b6ea-3a9d45a314c7    28406       10407   9451
#> 176  d962a98d-cbba-47e0-ad20-dedc094a1822    31370       13411  28990
#> 177  1880777d-9908-4a32-a492-264b4fec967d    29338       10889  10738
#> 178  c3d6c803-1c91-4bd9-956c-7f6c292558c5    24814        7511   6179
#> 179  cbce4c7c-b22f-48de-b653-cdc19f9a6320    29311       10941  10711
#> 180  e8b1322a-6162-4535-b6af-4ca60ce8b09c    33012       15137  27819
#> 181  3c20f5c4-3ac8-47aa-ba3c-c09ddf94c814    31667       12597  49348
#> 182  0b93712a-3c39-4d73-aca5-ca04ed05bd59    31959       13654     NA
#> 183  bf9749c6-6609-456e-a3eb-b8cab21dd76a    30129       12017  11771
#> 184  e431a42b-5abe-49de-9c8c-f143f393591c    29452       11170  10852
#> 185  791b7f98-c5ff-4145-ab8c-c67e3ca801c4    31088       12905  50365
#> 186  ac84c815-7ed4-49b2-b84a-08cf6c016eb5    32199       13914  49401
#> 187  7690ab6a-2ae0-4449-abd5-74ec54403f2e    27081        8688   8361
#> 188  76647249-62a0-4038-a597-8d0aad1ef3b5       NA       15415  77848
#> 189  c30da9e4-f0d5-472f-9c20-45f2bc7eaa54       NA       15644  45644
#> 190  cd6cfc03-9ffc-4a2d-8dd3-7dac5915e637    32628       13730  27582
#> 191  13f716fb-7249-4b0a-9858-8af8cb83f78b    28452       10399   9497
#> 192  04e8ea8f-8424-4196-a0fd-7dff3740c734    24677        7013   6013
#> 193  83128a20-392f-4ca7-878e-689c6e6dfbfc    31160       12459  28854
#> 194  1105ae60-a4b6-4246-a77e-0849179b07b2    30299       12010  11941
#> 195  95f3b8ac-e10f-4f0d-8650-b464b37ded86    32889       14474  55967
#> 196  0333b8f0-3aab-45aa-a684-6d402a309413     8827        5587   4364
#> 197  30f98123-214c-4f32-b29c-ac6f3ff56f39    25746        8204   7040
#> 198  904f702b-e8b1-4fef-a4a0-278d18cc15e3    32741       14380  44304
#> 199  6f695364-f31f-420d-8baa-434539e2b12d    32840       14720  50049
#> 200  b22c91a2-e11c-4ca2-8dd1-54c6bce8225c    32425       14204  26229
#> 201  e738f88d-6a49-4efd-b53e-d031bc8c5772    31168       12571  62935
#> 202  5f9b2c2b-d688-48c9-ba9a-1d9b7f45bcbb       NA       15429     NA
#> 203  7963d8ea-c627-47cb-b46f-a917abb9e9d7    26717        8678   7875
#> 204  7e2c36bd-bae6-42e8-84fc-147106ed7270    27635        9397   8742
#> 205  cb68b95f-ef6f-4e5e-b861-8bfe6cfeacf5    30592       12298  48862
#> 206  ae900153-c5cb-477f-86e0-e5e1378c30cf       NA       15469  57070
#> 207                                  <NA>    30590       12300     NA
#> 208  cfcac921-0ac6-457c-9f37-82324327f3e3    31955       13823  41482
#> 209  b4908ca3-f723-4d41-ab98-58acf0aa4a94    32776       14685  59874
#> 210  00a4b082-e55a-4273-afa9-5b481d9d70ea       NA       15495  41696
#> 211  20a0bad2-d530-4ff4-a2df-5c0a21a1f5db    26534        8398   7604
#> 212  232b1ab6-7a50-48a3-b213-681e782d6daa       NA       15305  82161
#> 213  72bae032-79e6-4a3d-b74c-37c7a0973e99       NA       15482  43449
#> 214  fa059382-e52c-40c8-93fd-bd69decdc1c8    28089       10091   9272
#> 215  0782b3a2-9693-40f6-aff2-a21bc8fa4c5d    33005       15141  51283
#> 216  4b62138a-e222-408c-8595-936d1a194eca    24952        7457   6317
#> 217  bc4c0c7d-a6f4-4cff-95ec-a4d0523c2232    32698       14508  57941
#> 218  98841eb4-0f2a-4073-bc91-0fa8548b305b    24857        7476   6222
#> 219  87745a22-9ce8-4a5a-8935-dcc102ce4b18    25358        7740   6503
#> 220  4706e72c-c7ef-4fa0-b16b-e864a1085dd7    31917       13468  48362
#> 221  b36539fa-de45-4cfd-90be-49d14149e64e    30160       11961  11802
#> 222  32575119-3aca-47cb-aaaf-162c48b7d372    32768       14648  28081
#> 223  0cc99dff-5895-48ed-9f30-e70e916bb52a    26370        8526   7292
#> 224  07247409-1cf8-4e67-a05b-15de83ca1bf9    31750       13353  29456
#> 225  32ad0298-bbc6-4b66-bd4d-e87a169ad27a    32496       13821     NA
#> 226  b3e1206d-38e3-4ad3-be9e-8bf3daa62cad    25737        8125   7032
#> 227  d027528c-6fb1-41bb-9ede-4f45ec731fdd    32315       14126  46219
#> 228  99119082-a5be-4fb0-bebf-ad25cd564b4e    31494       13178  54483
#> 229  20c1c6e8-509a-46a6-8edf-d402d56c20b2    31185       12854  27934
#> 230  08e9f65e-cf4c-4af5-939f-a93d1cf34b2e    27528        9762   9091
#> 231  ec2895a1-4907-4a18-a526-f2db4b663c3e    27547        9423   8654
#> 232  544e4159-3da3-47ad-866c-bf48d7634f25     7952        7073   3148
#> 233                                  <NA>    30509          NA     NA
#> 234  73e133bf-d3f7-4fda-bd25-2fde66cb8ee1     8937        5653   4474
#> 235  7c226f73-a59f-4db6-ad98-2766d05d4d5a    32993       14563  46448
#> 236  e06a9c07-453a-4bb0-a7e9-2c3a64166dad    31002       12561  46416
#> 237                                  <NA>    30845       12297     NA
#> 238  2e50c78f-fa3b-48cf-8531-6eeddc93d88d    27631        9326   8738
#> 239  e2f3af7f-dd17-44f2-a000-d487a29f0f03    32669       13964     NA
#> 240  9e31f935-1e60-437d-9859-e1f2bb936aa5    33006       14404  38287
#> 241  3ffc3993-461e-4477-9def-c9633b7feac1    31424       13123  46027
#> 242  a57b9914-4315-4295-98b4-9b348c52d6a1    32725       14418  57366
#> 243  528e71ec-8fb3-4928-ace5-fc5ffbf26eb3    31945       13427  45865
#> 244  8f5392ce-36c3-4613-967c-abcec98f591c       NA       15667     NA
#> 245  540f8b30-900e-4d17-8756-c262ba5fa039    26804        8772   7962
#> 246  a792cbbf-d96a-48fc-a187-6f7f5b7dd214    29240       11184  10640
#> 247  c0561c0e-ca00-48bf-a38b-2636451c1640    31583       12679  46843
#> 248  94710841-1b2e-4309-82ff-d7a00b4293e8    30242       11818  11884
#> 249  0618f387-9b72-4270-8b8f-dec4cccc9e4a    31056       12559  47436
#> 250  b9bcdb7f-2db2-4bf1-843c-9733f6fe8474       NA       15506  40148
#> 251  dc83f7af-7b30-4c4a-9c93-f67bd8db954b    31901       13786  47083
#> 252  b3d7169b-9cf6-4fea-815a-26e4fb0ec16a    28658       10553   9786
#> 253  9480dd9f-151f-4e6d-b5a3-35f07bda4cac    28559       10252   9604
#> 254                                  <NA>    30894       12280     NA
#> 255  d1ed6f8c-1611-4695-8b48-5adce0de50dd    31925       13553  48209
#> 256  7d80b51f-1462-442e-aa7f-8c320a62deed    27532        9249   8639
#> 257  c65488d4-251e-40fc-9f32-7019bbdaf75e    32871       14415  48037
#> 258  feeee40a-dd63-41a7-89cd-6c95b5456833    31857       13502  61568
#> 259  34cc08f0-53ee-4fc8-95a3-971e6620884c    33001       15135  48012
#> 260  29269863-13cf-4c66-ac3c-5d9a47e2040a       NA       15310  61577
#> 261  630e6b5d-0486-4bc3-a919-1f02687c1291    33040       14529  42198
#> 262  d9f8b92b-69d4-4d83-9bf2-106ee523efed       NA       15210     NA
#> 263  d93dbc83-e604-4823-a24e-d162cbd8d4d9    32762       14636  40006
#> 264  49c9f374-118a-4207-8030-dcdaf938dac5    28437       10273   9482
#> 265  13de701c-c77c-4eb5-b54c-8881ca5e0871    30140       12127  11782
#> 266  e289cb0a-2447-458a-a47b-5f843c0edd3c    32030       13692  49512
#> 267  089763ae-208d-4ad9-bb30-c97c0fcfdcd1    32909       14549  32989
#> 268  09dc5222-9669-4aba-9b67-dc87dfcf01fc       NA       15509  49535
#> 269  d5dee97b-aa96-4fa6-868f-b6dc1f66245c    32416       14253  49395
#> 270  3cd88d26-6c80-47a1-a044-9164fa96459a    31603       12843  25445
#> 271  82100457-f4ee-4f24-8ca2-584bfdc85749    31124       12817  27130
#> 272  5fbc8b9b-db04-46f7-8974-35a73e29d725       NA       15629  83100
#> 273  3443dde2-23bc-4dba-b499-069d501a59cf    31091       12784  49511
#> 274  3a6b8eac-9a76-47e0-b791-b6ee245ae924       NA          NA  43291
#> 275  c128dad7-899d-4bdf-af9b-9c205dbd4666    32013       13819  51433
#> 276  e030ef2b-1dcc-4c66-b8de-0016ca0d52d2    26782        8892   7941
#> 277  95fab6fa-3ee1-47d0-93ad-c7ff41744be7    26841        8639   8000
#> 278  9c84646c-75d9-41f3-9cad-f3f002ca82a5    33358       14882  36116
#> 279  18eae132-a14e-4de6-bae2-77c9ce8f5864       NA       15260  44320
#> 280  f40e0707-1bf5-44d4-b447-7c03255aa423    24006        6576   5556
#> 281  c47a2147-d70d-4874-91b3-8548b26fb3ec       NA       15283  76889
#> 282  3fa3a270-f8b2-4d53-a265-84bc928af5c5    32724       14501  56369
#> 283  ac7b90e4-0f47-4f77-b521-7dc92043a9f3    31605       13230  48376
#> 284  ea2fda83-2817-4884-9e85-973263a4e069    25147        7889   6558
#> 285  0043c962-e726-4ed2-8aa3-b0eb5cdc5567    30379       11910  12092
#> 286  7d7aae3c-c186-4ded-bbaa-df05f697ef29    28386       10448  10235
#> 287  2d19098b-f154-4b28-976d-79182af014df    26637        8668   7795
#> 288  32b5fb32-1fcf-4955-9621-669c246a9fd3    30792       12358  48856
#> 289  840b2183-02bc-4a2a-b415-c62ceecca1b2    31066       12551  48690
#> 290  8b1be2ac-e483-4f39-9bf9-a81be33ac92e    29813       11557  11280
#> 291  73e84e89-4bd3-480e-b862-68502c8c295a    29264       10931  10664
#> 292  f125395e-820f-40d7-9775-ac101292719d    29559       11327  10975
#> 293  adabdc56-278f-48b9-a003-1329b7f2f663    31841       13653  42200
#> 294  4475bb8a-b5a6-4527-bfc7-8e7e03900984    33357       14844  40951
#> 295  bfccbff4-bc01-41ed-aa11-be976160504c    32858       14609  33010
#> 296  88976fed-0ffd-40a8-98ea-0c6c55010000    30986       12612  50905
#> 297  f72d4897-8dd9-48d4-9da9-90deb4550d4f    31204       12498  50897
#> 298  62976179-ae2c-495f-9e94-cb3e49933243    32091       13492  39382
#> 299  1881d1a7-218b-4690-9065-497946d1ec1e    32411       13512  51045
#> 300  9342eba6-e307-4c55-a0f7-993518dd4415    26771        8942   7930
#> 301  b217c699-2eb4-4c60-9d7f-2df8e4232009    29480       11129  10880
#> 302  825fe252-36b9-48d9-a845-29114c5aae8a    30276       11978  11918
#> 303  63ed7895-38bf-44ff-9b8a-8d5b0b5bd1eb    29549       11321  10965
#> 304  392ccaf6-6d81-453f-85e3-7702ac081db3    28516       10456   9561
#> 305  a4d45211-eb06-4c63-9487-ba4ad326893d    31599       13226  46918
#> 306  74a588d5-22b6-42da-8d59-c79d4f7634d2    31870       13498  39805
#> 307  6e18cf77-85ef-41e1-b2ef-5272a39554f0       NA          NA  41743
#> 308  b167835a-3f62-4755-9acd-319c5a3903e3    28490       10284   9535
#> 309  08553010-dfb8-4ca8-86a0-8159355f8705    32402       13520  28300
#> 310  a200f1cf-c926-4e3c-a050-d46abe97548b    33060       14791  14214
#> 311  522a97f7-8cf7-4c50-afe9-1beb6ffadcb2    30176       11788  11818
#> 312  f0deb589-ddc6-4feb-91b6-8922ad26e259       NA       15494  42296
#> 313  f32c4441-b0de-4bbe-a9cf-d7b88acaefe7       NA       15555  40459
#> 314  9164fac3-2540-4f64-ba29-96fb0ce1c7eb    30641       12402  12212
#> 315  7a1b8f1a-9024-4897-86b0-01c63e00305e    30115       11709  11757
#> 316  3069db07-aa43-4503-ab11-2ae5c0002721    30977       12483  46601
#> 317  d8fef424-aa41-4c26-9bce-1265b53cd5e2    32756       14564  40341
#> 318  6249d2c0-75dc-4586-943b-1c103a9eb419    30552       12289  12271
#> 319  adadafa1-dc37-486d-8538-7db1e1b5f71e    24912        7324   6277
#> 320  a961b0d4-5d7c-438e-90f0-2e1fa09f6c89    31906       13449  40485
#> 321  449401ef-0251-4895-8f56-eaf5ef7f9cf8    28614       10297   9659
#> 322  5fb525c5-4e70-4ede-8c49-94ad0cf66b7d    31928       13466  35883
#> 323  eab74cbc-ed11-46b3-bd16-1d4c997adc22       NA       15460  61182
#> 324  ec63ee49-3a03-44ca-a083-3916f0bccd76    32060       13667  47216
#> 325  6130be96-edf3-4361-b666-860c4ec46e7d    30285       11866  11927
#> 326  aa759477-6206-4984-ab9c-eb213abfd020    28974       10544   9883
#> 327  a1c40664-b265-4083-aad2-54b4c734f2c5    28534       10133   9579
#> 328  e6f6dd1f-536f-41be-bf56-7ea6999d5b2c       NA       15436  41838
#> 329  47520723-6d02-4c3b-b786-a7dfcea15efc    30720       12353  12170
#> 330  7092bb09-a161-4ab9-8d19-fdcf1a91bb3d    26060        8249   7330
#> 331  fd4e8681-f2f4-47c7-b954-a72be9b1ca00    24057        6523   5606
#> 332  dc397432-7157-4ce4-976d-b9662cc6f551    32798       14359  55410
#> 333  1d1c217b-6407-40d7-aebb-ba95fa05d127    32877       14356  52130
#> 334  b35211e2-a35f-41e1-b32b-3b31b70330b7    27735        9694   8841
#> 335  5cc69b4f-6ac4-4854-b3ab-5f669e0d8239    33155       14974  47316
#> 336  90b71985-5235-4d5a-b95a-405129be496f       NA       15209  83375
#> 337  9dc1308a-5cf2-45c1-b5ad-fc64fff3e94f    31025       12610  49377
#> 338  20b43016-a174-423d-9551-7f62ababad3c    27041        9135   8334
#> 339  c7c6dc46-a58a-4cfc-b626-2360434671cb    25720        8165   7016
#> 340  a72561d6-fd30-4910-ac44-eb9416e792ea       NA       15486  56289
#> 341  3bed3959-22dd-4ee6-8fc9-7eda34fbeaf0       NA       14904  49537
#> 342  afbc5ac8-8e3f-4cb6-a96d-3b28b039bde9    32679       14367  55593
#> 343  0e4e082e-6dc7-41c4-baa1-2c1367f8f9f9    32783       14581  42883
#> 344  6c162e60-0d39-46b4-bd8d-d2f3c6d6c7e5    32891       14707     NA
#> 345  4d6c923d-4776-4558-a30f-739dc4070ffb    27337        9070   8110
#> 346  3b1bb0da-607a-4502-8855-8ab5095334da    33137       14931  43580
#> 347  0d226e62-3a43-4a9f-a985-05214182146f    32822       14787  60789
#> 348  5f3a60b9-64ac-41f0-877b-cfd2cdfe23c9    29352       10929  10752
#> 349  87e59fe7-8744-4318-a41e-53a18d1f9647    33139       14968  49159
#> 350  88f31a44-caae-4e5b-a786-8a229374a19d    31548       12923  51315
#> 351  47d3d8b8-b0c4-4c4b-84a6-4a6b48975feb       NA       15550     NA
#> 352  5f623fbc-415e-4035-b423-7850cf1153b4    32734       14623  43179
#> 353  ed54f1f3-65b8-4b54-8a64-81858ca9f50f    29714       11571  11184
#> 354  0e72812f-db64-4eb8-a7e4-41347067b375    32057       13989  37479
#> 355  d0d2e26b-f5a7-4455-86b8-096508ac8eea    31997       13523  44615
#> 356  8a60686b-fdf6-4293-846e-92c1b1d586b9    31106       12841  50244
#> 357  fc833ad5-955b-4129-9280-63d8eda84df2    33106       14744  76843
#> 358  9fe70732-0c55-42ff-a79c-9d234fbc995c    31286       13251  38754
#> 359  d96afcfe-32fb-4a59-b75c-94a6184d3136    32707       14355  56444
#> 360  ef0a8abc-074e-4ed1-a053-846c3b1d9cc5    31649       13188  39383
#> 361  dbf199a9-542e-4279-8764-3341b9f80910    31848       13439  44522
#> 362  eb2a534f-2dd9-484c-b464-455311f1a9e3    31218       13014  50198
#> 363  03af0e0d-a443-4b09-9ab5-4f2695248346    26704        8654   7862
#> 364  0d038341-cd66-4651-93c4-e76c6d218135    27640        9393   8747
#> 365  38acce95-f677-4045-bd2e-4580b772adb6       NA       15653  56672
#> 366  9c8292c7-b406-4a31-a781-7c72aac6b053    32677       13852  43883
#> 367  a938a2b4-753b-47bc-ab25-61842c78571e       NA       15320  82488
#> 368  47dedc0e-a2fd-415c-8619-5a46867d83e2    32854       14824  25644
#> 369  21722003-1366-4e06-8d8a-41a01e712c5d       NA       15646     NA
#> 370  689de342-1d99-4a4d-976d-f6573ef3a8c2    33151       14785  13756
#> 371  9615d2fc-fa2d-4402-ac5f-fd62406cf978       NA       15491  41457
#> 372  1a7ff6d7-85c8-4ef1-8db7-b629b451e368    28469       10283   9514
#> 373  f9d87dfe-4a57-482a-a77f-37906daa4382    30183       11791  11825
#> 374  3dec63e9-ad9d-4d1f-8ba2-102d9474df2c    31968       13544  28021
#> 375  d4acfff4-7bee-49f7-abc2-3847a8b85dce    33142       14970  25577
#> 376  06f3a0fc-2a07-4ecc-b5c3-873b2f615809    32044       13790  60063
#> 377  5a09de36-5fac-4053-b3a0-2b56d2519a9b    32668       14808     NA
#> 378  cd0f4ef0-9914-4125-be4d-804a72350ceb    30337       11831     NA
#> 379  3f677102-c26e-49e3-9b59-48bbf0603e81       NA       15534     NA
#> 380  ee399a97-6868-4db1-9381-09073914c2d6    30126       11937  11768
#> 381  e47c71c1-2e10-42d0-b5f8-5651909a0ff4    31352       13087  50141
#> 382  717ebb17-f54f-4052-b9fb-af641a25ebe2    31503       13159  51028
#> 383  e1917291-e27c-4221-b62e-36b5d9df254c    32845       14385  12744
#> 384  05640572-1b4d-40d5-b584-d79bdd7d5c5f    26093        8437   7372
#> 385  3bf0711c-793a-47e7-bcbd-a0ddf350fef4    28413       10034   9458
#> 386  829c836e-8040-48ca-aa20-5ad24f0ff37f    31131       12988  28838
#> 387  e2ee3901-8de4-4585-a6ca-b7d77d271d9e     9585        7078   4712
#> 388  3ed3f6b8-324f-4fce-ae91-b8a2836f6eff       NA       15627     NA
#> 389  cedc5875-2b9f-4fc7-8e86-6895732bafa7    33133       14958  37066
#> 390  b84b415e-a7a5-4d3c-8128-9e58f002578c    32441       14281  25693
#> 391  d57ef862-8cb9-4f27-a294-f86eb26b6cce    29469       11027  10869
#> 392  214e55e4-a089-412d-9598-a16495df0d25    24788        7257   6153
#> 393  0666e6c6-42d9-40ab-83bd-7bbf81e9ac9c    30538       12371  12134
#> 394  13d826c5-9b22-4e0a-a877-02d8c84c546b    30973       12490  29048
#> 395  32205e74-b23f-420a-b312-465b29260745       NA       15242  57373
#> 396  c5e430c5-7a8e-4e29-b30f-1a527f05cb89    28442       10126   9487
#> 397  06f3e98d-7d73-4007-b673-4a74ed72bda3    32975       14919  46445
#> 398  0fe5d2c8-9cf4-4983-b160-468362c1a23c       NA       15580  57441
#> 399  f96db0af-5e25-42d1-a07a-49b4e065b364    30121       11690  11763
#> 400  de3c68c3-9c11-4c0c-82ef-bc0d536820c2    31687       13059  24481
#> 401  cbe71aae-2475-487f-a78d-c1d7f021c097    30177       11812  11819
#> 402  a25c5a77-967c-4a4f-a885-0178868bbf67    28407       10264   9452
#> 403  3eba23df-f60c-41da-9094-74c146b017cf       NA       15552  51985
#> 404  ed8a8fd2-df67-45e7-a34f-984afb82f6ea    31071       12858  42130
#> 405  1d55ba37-c09e-4945-b7ae-8d84e2357283    30740       12375  12239
#> 406  a41b8454-0326-4c56-87a2-f2aac3814961    32921       14570  40411
#> 407                                  <NA>    30681       12269     NA
#> 408  cbee2fd3-e5f2-4316-bffd-531f1873f032       NA       15371  84025
#> 409  2da353f0-5570-4539-bd42-1b0a7c017210       NA       15775     NA
#> 410  69388223-d1e7-46c3-9106-e10edb7073e9       NA       15214  84271
#> 411  3885b40b-c31b-4cd6-a0fd-3d24bede2771    30959       12533  66438
#> 412  1e664071-60d0-47da-94c8-e5c8617e11f6       NA       15226  61643
#> 413  e81fb788-1478-4936-ae12-f6ed7ec23476    29785       11191  11254
#> 414  6bb4d6f8-c8fb-4ca7-a416-a7010526114d    29703       11257  11107
#> 415  d8202e6d-d03b-4cd1-a793-ff8fd39d9755    30994       12477  48267
#> 416  08df3736-14f2-465e-af74-cdcdebe19a66    33095       14642  48124
#> 417  430446f6-a74c-496b-8f49-4464e7d8149d    31517       13019  48017
#> 418  8482bc94-0eb0-4e92-8f99-ced135f3cd5d    28026        9284   8999
#> 419  3714df7a-a59f-4f0b-8689-0ba0a5ada62a       NA       15544  34130
#> 420  04401033-2785-4a87-b19a-312f45a53502    32907       14579  43467
#> 421  22e0f7ed-9b46-4a75-9780-d9b66c245744    33336       14583  50532
#> 422  4ed347d1-170b-408e-b360-46a83557b56a    31660       12780  66576
#> 423  a7450b47-b784-490b-8edd-b5502f16366f    32037       13986  49569
#> 424  f4c59ced-4d11-4314-a761-ec0883edd3c1    30225       11993  11867
#> 425  c3ff85db-bad4-444c-9123-812c933c8227    32027       13430  50326
#> 426  d5efd828-7339-43a7-ad7e-6f936dbbabb2    26372        8567   7288
#> 427  99b81b41-fb3b-4650-940b-9cb3770021ba    32720       14627  56259
#> 428  f40995fc-bd95-41f1-b9ef-4ab938c3aafa    29259       10928  10659
#> 429  abb612d4-f5b9-4644-b9ed-f13fa0da7e98    29358       10930  10758
#> 430  b6fa8c3c-c729-4178-8e9c-c7e784a872c1    29401       11223  10801
#> 431  43ccb78e-353d-4d0b-ac51-4103415a568c    29419       11060  10819
#> 432  e1072f9a-86f7-4d01-89a6-33fe0186f232    32833       14706  49346
#> 433  6bbffdec-af71-4378-b0cc-e1375643ef57    30166       12052  11808
#> 434  f817da48-83fb-4172-b4cf-0bacc532b4d7       NA       15191  55685
#> 435  e9799059-f592-47e8-aab3-e2027fe7b148    28488       10453   9533
#> 436  fdfb980b-1493-4698-9b97-f445a8f495da    28423       10450   9468
#> 437  19269eae-f3f2-47ac-b755-843489f29f65    26676        8659   7834
#> 438  0a6c2bfc-19a4-47f9-ba60-74265af6e947    31115       12711  28451
#> 439  881eb214-c981-46c0-a0cf-34023e773754    28427       10067   9472
#> 440  253afa4e-a404-41e5-82bc-4c41508498f5       NA       15325  52000
#> 441  e2d85e2a-3d88-42e7-95ca-8db79228135c    25799        8350   7090
#> 442  2d233d49-fca4-4ddf-a73d-21f4451ce3fc    33156       14853  79271
#> 443  f3adad78-ada5-4ded-bb47-cbf8518f7bba    33175       15052  87179
#> 444  d96ff17c-841a-4768-8e08-3a4cfcb7f717    28227        9633   8932
#> 445  306d7e5a-f0f6-4b30-8484-5d933361278e    33176       14979     NA
#> 446  b94f3978-ba88-428a-924b-3fbfdf04b058    26653        8695   7811
#> 447  a18446e0-c116-4d12-83d7-6b12c5fb983f    27636        9414   8743
#> 448  3291c582-9377-4bc2-8ee5-61d887873797    30978       12644  50892
#> 449  2814f1e7-dca6-4bd9-80a9-9af480d10546    32825       14680  35241
#> 450  ea59d8de-e3df-4a7b-9778-7d6dc4892fc3    31085       12640  51221
#> 451  8cbac569-6612-41fe-ae95-beb9e4771ed3       NA       15724  12488
#> 452  5a79cba5-d633-4ed0-8aa7-a244060432b3    32557       14305  35771
#> 453  0a605e2f-4c81-453d-941b-4e9f143210f8    25898        8285   7177
#> 454  e5ea211c-bcd2-4a7b-b6ef-911e7e796266       NA       15270  62775
#> 455  7b2e9dfa-96c6-4bbf-80c4-094f9683b217       NA       15725  24176
#> 456  33c74bf8-7621-48be-a769-e219703988d9    27533        9251   8640
#> 457  614c6237-8fe9-4a62-beec-0c44ca0fc2ad    27578        9343   8685
#> 458  57bd3249-bae3-4e13-b4d6-f86dbc4978e7    24801        7418   6166
#> 459  10d49d75-aa4a-4d26-b9b5-c74f4e3c9ac8    27839        9384   9020
#> 460  6fc3f73e-9c19-41cf-aa95-df4d83e29e9e    25725        8199   7021
#> 461  f5fe1cf6-ce57-4d6f-b2d4-6ebc3a18e336    26016        8532   7418
#> 462  ff4c90f1-60a7-40f4-ba21-c7abe6800000    25370       10021   6508
#> 463  70d87779-f25f-4dff-8c5d-82b818090c57    31009       12565  45576
#> 464  1a4b38f7-48f8-43b3-be9a-96671feb1fa6    33173       15167 109304
#> 465  b99b9548-ad04-4361-b145-0c1942fdd89d       NA       15268  59879
#> 466  23ce41df-3f29-4f67-9fb5-b9778ac931f8    29265       11062  10665
#> 467  95bccf33-b911-4bfa-96b4-a15b9a160c68    29290       10897  10690
#> 468  a5838673-7753-426c-a18e-5195fbfdcc37    32897       14830  20919
#> 469  00fdaebe-c8f6-43fa-addb-6a57dc6c5969    30826       12449  46238
#> 470  46aab8e6-3ca9-4213-a6cb-87db90786f6b     7122        3874   2148
#> 471  9eaecf8f-eb0a-49ea-a8f5-3f31c08e0fa6       NA          NA     NA
#> 472  0db05e51-1e24-4f1a-9008-2e610e260c5d    32247       13840  47018
#> 473  20e8addc-8e4f-4c4e-937d-3788de9c1e6f    32259       14150  13026
#> 474  2f995e2b-1e30-4cff-809d-68c0366dda3a       NA       15551     NA
#> 475  80ebeab8-891e-4a54-80ec-3f102fed7cc7    31670       12941     NA
#> 476  ccb2f18f-1454-4ec4-a9ae-2d7f5c20f86f    27719        9769   8826
#> 477  d2a0e5af-3850-4f16-8e40-a0b1d15c2ce1    24822        7355   6187
#> 478  c8232b55-6617-4dd9-a7cf-cf14cd9a29ab    25798        8066   7089
#> 479  52a3af20-6028-11ec-825f-ffd58f2574ca       NA       15812     NA
#> 480  cf15be8f-9117-4531-a517-2b9c7cb3e9e1       NA       15416  82118
#> 481  02880089-ccba-44f0-9d6c-fe6f12d15e5b    31662       12513  45753
#> 482  02af99e0-3c84-4d4e-937a-a9f29a02323b       NA       15281  41668
#> 483  90908a56-901b-466d-8689-943075da96fe    28115        9644   9205
#> 484  a8342d20-9901-49a6-bc45-79f192418188    30232       11758  11874
#> 485  1c9e1cd5-8cb1-4a15-a2c8-3a0c0fd5423c    31905       13556  45719
#> 486                                  <NA>    30721          NA     NA
#> 487  8d3ac8d8-e18f-4485-acc6-55c79adcc2a8    29666       11364  11062
#> 488  a37a5bfd-b48c-4d8b-817a-d8ce7ca3592d    28548       10150   9593
#> 489  036feeb6-9a22-43c5-a8e3-7ac611d8ff49    32713       14436  60995
#> 490  48c56733-6644-42ee-9020-07bd2deba1ad    32576       13639  91465
#> 491  fd85786d-3900-4dc0-9b30-334ee30413ed    24070        6532   5619
#> 492                                  <NA>    31665       13242     NA
#> 493  bf52ff53-35a6-4696-ac6d-3fa952dc2c87    26701        8807   7859
#> 494  48d7bc31-808f-423c-afc8-45c2c5dfa45f    28730       10524   9964
#> 495  0063fe36-d8c2-43e6-8ab1-af890eb58cea    32841       14537  55307
#> 496  5de11f0b-8da9-42ba-9a93-db7f0a58543b    29420       10990  10820
#> 497  bafe8df1-66b5-4200-8fb3-ff188c25a4e2    32843       14510  48236
#> 498  422f272f-ca71-4fd2-a37a-d1e323c2728b    32256       14130  47906
#> 499  bbc981ff-556b-4346-abea-f6efc0f94001    32137       14012  48107
#> 500  00a63233-ecb5-4415-94ef-723c6556b85e       NA       15560  61510
#> 501  0fd32417-8410-4a8f-8919-386c433bca43    27589        9264   8696
#> 502  78abb68f-453d-4992-901a-a5b1121e680d    28023        9961   9276
#> 503  0c8b0581-9ed2-488b-bcaa-ef783261dfd1    32011       13678  46618
#> 504  8ffe9816-bbce-463e-a860-937253af6497       NA       15360  81653
#> 505  338adc8a-173d-4b1b-a5de-92818bf96823    28399       10028   9444
#> 506  5e11c306-6387-46ed-8a6d-3ff7a8210ed5    30173       12009  11815
#> 507  12178d3d-49d3-4cb4-88b9-cc8f044bb684    31140       12774  49507
#> 508  972f93d7-158b-4464-b119-952f298cea52    29510       11473  10898
#> 509  ffe9639a-7ce2-436a-a291-868e66e9dab8    32976       15079  43000
#> 510  73c958ee-0d55-49e9-a613-f4475b444fd5    31116       12671  49059
#> 511  57a21028-b3a1-494b-ade8-7e94c7108823    31534       13263  50431
#> 512  72a42703-19b7-417c-87ce-344fd792f5ca    29244       10886  10644
#> 513  16e13f52-32b1-416f-83ae-1cbf2f92cffc    26265        8825   7279
#> 514  0da88ee9-26f4-4d59-aa66-1e2dbda05580    29245       11052  10645
#> 515  0bf5f31d-e2fe-441f-845e-7573cc21b22d    30320       12211  11962
#> 516  656b68e1-651d-4596-8f6d-c97b4e4d9536    29295       10905  10695
#> 517  4ba33131-8214-45bf-9ce1-5ac08f1b68c5    27675        9609   8782
#> 518  7917b396-b7e0-4722-9a5a-7c608dd0a6ff    31562       12791  51394
#> 519  89c84a59-18ad-4aeb-8879-d4ba7dd1491e    31024       12564  49162
#> 520  f46bc3a8-dbcc-4d96-8d6e-50034429de29       NA       15507  77205
#> 521  41d217b9-ec7b-4d72-8a0a-5f0e3a16b693    30216       11919  11858
#> 522  17d1f9ee-f65e-4c4d-bf73-a69b2fa17877    31047       12495  48457
#> 523  ddde7b09-faa0-4fc4-a45e-aa38c3905f6d    29273       11180  10673
#> 524  5165ce25-382b-4809-83b7-8c66d93c2aef    27905        9637   9195
#> 525  b84b99f3-5fac-46ed-b892-5800159edbf9    32287       13881  50115
#> 526  f94e5435-8cfe-411d-97c4-b5324f7f3a54       NA       15457     NA
#> 527  3f4fe254-f18f-4b56-83e0-c37cfc72c7f7    32817       14684  42993
#> 528  2f1b4df5-a65b-4b13-8a86-81c03259e822       NA       15318  56462
#> 529  1ad3e535-2b5c-48a8-82f0-c7a933d250f0    30586       12183  12093
#> 530  5c24d0c5-076c-4db5-9bd0-e67f7c42ad50    31039       12815  49894
#> 531  42bb4895-bdfb-40e2-8119-f5b06611bf1b    29400       11114  10800
#> 532  34de0b93-9cab-4987-915b-25ef8480cae7    25842        8324   7132
#> 533  58359280-c012-46af-8b1a-358a24159421       NA       15185  58438
#> 534  cc5a9d21-10cd-4966-ad17-44edb238834d    33122       14951  44473
#> 535  fc28047a-18cf-4431-9e1b-317db75c4495    27056        9118   8042
#> 536  915f567f-ca74-426a-8ed0-123c45f67baa    30178       11933  11820
#> 537  1374a32a-6215-4ba7-ba0f-a26d24535059    29063       10303  10110
#> 538  49379bb0-8f09-466b-86fa-62b4c4c73051    32850       14604  45419
#> 539  729fbed4-df66-4368-8954-62c3bee79cb3       NA       15366  52575
#> 540  43c8c11d-0e5b-4392-bbfd-32cc2dc15cf4       NA       15440  41497
#> 541  be44e57a-7623-4b1c-a6fd-7a30795bb8ac    32470       13720  46035
#> 542  746b7ba2-1ee3-4d42-8cf8-11bf4df581e1    27561        9436   8668
#> 543  acc143ed-53b2-49c9-81bc-16e6c98ffcae       NA       15383     NA
#> 544  67da0db1-ed58-435d-b8bf-f7ffa02d8a24    31831       13943     NA
#> 545  d152b2d5-402d-47f4-a6d1-7870e5a32df5    32777       14661  34788
#> 546  ac012bab-43f3-4e8c-9cf4-0fb20ffa55a2    31904       13436  29407
#> 547  cbe52cf7-a9fe-495c-bd77-3a22a7f7208f    32885       14736  49681
#> 548  d6ce86bc-7c3c-42c5-82eb-c8bc51e7e94d    32904       14743  25685
#> 549  b2d80e3c-1485-488d-8033-52443c63909b    30568       12232  50640
#> 550  75741cd3-8b9f-445f-b24e-47c8c51de618    33174       15066  28092
#> 551  3fec685f-b7bb-45a3-ad9c-e27c3fbc9951    30306       12186  11947
#> 552  c44bdac4-0732-4f94-8bae-df47ecec5656    33108       14735  43250
#> 553  05cb1d47-3517-4410-a61b-75adabbfb910    32735       14647  29623
#> 554  d7eec5c7-c401-485e-b0c8-fb0784c07b27     8497        5308   3859
#> 555  d3b0e29f-d97c-4fc4-ae29-c5266686e39d    30326       12213  11968
#> 556  53d7b565-4811-4641-a54d-369312591457       NA       15623     NA
#> 557  d14302ef-0224-4c92-961a-6d10452936ff     9406        7087   5066
#> 558  f2f29019-7306-4b1c-a9d8-e9f802cb06e0    32138       13504  46401
#> 559  3023ac10-4e7f-425f-9fc5-2b8e6332c92e    32671       14442  28022
#> 560  a8c3bcd7-69d0-4c5e-a876-6b33857942bc    29435       10882  10835
#> 561  5bf3aeab-9430-4b76-a4fc-e973a0c8b3b1       NA       15223     NA
#> 562  478fcd24-2617-41d5-a900-b272aa6ef515    32014       13548  45775
#> 563  e601812f-ce24-4e99-bee0-e33c1e9014e4    30227       11698  11869
#> 564  ebae3f19-b8bb-43d6-ae78-d21e9dc08b61    32148       13534  40065
#> 565  7797f36e-87e8-4282-b6d2-bdb1774fc3b3    30161       11707  11803
#> 566  f7397b71-3756-4b1b-9f61-8618164a4098       NA       15304  27303
#> 567  897df186-8ae8-4eaa-8a83-90952b47ab55    32034       13783  47019
#> 568  165b77bc-9a63-4b1b-9111-70994af6c864    31843       13585  41651
#> 569  8048bdd1-62cf-4d01-8257-741a585dae8e    25733        8119   7029
#> 570  95cd7ce9-e92a-40d9-997f-c7b16d0efd83    32169       13688  46951
#> 571  ca6c7b35-6ae1-4ba7-ae98-1f26174e407d    30364       12224  12007
#> 572  309b8104-8407-4365-989a-f726251714a7    33208       14524  47191
#> 573  19858900-5c8e-49a7-ab02-34ef625724ca    28545       10462   9590
#> 574  15a4f552-ecaf-45bd-9006-aa5dda93bee6    31884       13809  47259
#> 575  b2d98b60-b4b3-4610-81d2-2154c723fdbb    33171       14634  47234
#> 576  3e2e74e9-18a8-4275-9437-b275db27e2ff    30290       11881  11932
#> 577  8f32cbe6-9c50-4bf7-9e68-057d718fb490    32469       13877  48110
#> 578  75a646ac-b2d2-42d9-91c7-3b00fdf71ef9    31223       12569  48192
#> 579  c272aa3f-4ef7-468c-ad4d-a4eed44a6ab7    33168       14588  47964
#> 580  7963b029-5de4-4541-b00a-44eefe4349af    32703       14506  61211
#> 581  fa99e984-d63b-4ef4-a164-407f68a7eeaf       NA       15183  84270
#> 582  76a5edec-5ff7-49fa-a8ec-5768a372279d    29288       10822  10689
#> 583  88856dfa-45ce-4b6e-bbf7-4f8413ac89ca    29440       11076  10840
#> 584  ee79ad2e-353a-40cd-9344-c9d84f7e4b63    32438       13626  48080
#> 585  671d2fd7-41bb-457a-8e93-904ee7d94eb1    26745        8706   7904
#> 586  a21c5573-d9eb-4c4d-838a-12b63c513a1b    32830       14552  46752
#> 587  2303e1eb-fa31-4cfe-b93d-7c2e1b683baa       NA       15275  83341
#> 588  54feeb01-a1d6-4313-b8b5-5663f698b5bd    31878       13485  43254
#> 589  5b9acfe7-f166-4a55-85f6-a654799b08dd    28972       10423   9881
#> 590  a5780ea2-376e-4187-8be1-7c7fd2d0a12f    30286       12008  11928
#> 591  8de972e7-c997-4444-83a5-10f975d4fff6    32396       14192  50480
#> 592  aefdc3d3-0851-4782-b298-f06f137d42c9    30974       12572  49558
#> 593  07dbf3ec-0d6b-42f1-a2e8-7dd437339417    33306       14716  50394
#> 594  1bbe7ce0-3707-4d4d-b8f6-7577008f1763    32714       14507  60685
#> 595  8c824157-eb33-4378-bf19-6c738a186ceb    30204       11997  11847
#> 596  78ca0233-a32a-4435-ba06-6ececaa3c537    32145       14155  50353
#> 597  24a58900-649f-4a29-a34c-26ff92b63be3    30342       12041  11983
#> 598  9b96ef63-04bd-41ae-b59c-acc0f2561d19    31063       12625  49206
#> 599  5af719d9-4a47-4a93-a522-a5060fd0df79    30224       12004  11866
#> 600  ff01b89c-fe58-46a9-bc86-0bec8671f428       NA       15363  55910
#> 601  3d405d21-bfdd-4495-afe3-9e96d1972ee2    31023       12836  49397
#> 602  eb2c9e63-3a33-441e-aa95-462eaf97a371    30333       11932  11975
#> 603  20395574-a767-44be-8e79-e1b15eef0f11    32492       13859  50290
#> 604  016d31ec-9b32-47e2-801b-9724c0a30f62    27529        9243   8636
#> 605  5f313f6e-4a5b-495b-8442-176c145f68c4    32834       14409  43751
#> 606  a85a0ba9-674c-4f37-a944-474fc6cdf557    30114       11914  11756
#> 607  dcc7a0e1-05e3-407f-84e1-fdedf8eecbbf    30139       11928  11781
#> 608  3d78f1f8-958d-4eb4-a238-442aa9f22333    30148       11689  11790
#> 609  445efcfc-1646-4823-89f7-8b6005266d13    32758       14353  56734
#> 610  82fcb439-d5da-4f6b-a68c-17778fe19ce4    29337       11019  10737
#> 611  252da24d-9eb7-4871-ae76-199918f412d8    25847        8150   7647
#> 612  4a4f2ec4-b750-417c-8fa3-f1ec6386f032       NA       15590  82501
#> 613  85e3651c-cde0-48ed-a5ea-93477a1fe99b    31510       13182  46441
#> 614  2c35ed5f-7317-4776-8ee7-0438e0286508    29410       11068  10810
#> 615  04ca77dd-b55f-439e-a593-37dfc8ea8320    31950       13856  44959
#> 616  2b6a749f-5e78-484f-8a87-92c6da991b19    31136       12798  46131
#> 617  67ebb029-28e4-499d-a198-de1129d16e5c       NA       15502     NA
#> 618  12d28404-63e1-432f-adde-c93631a5c39c    32417       14254     NA
#> 619  d2be306a-9244-42f7-a3f6-46595f59f850    31819       13896     NA
#> 620  d40b2cf6-59e1-4af6-a91c-f2206303564c       NA       15237     NA
#> 621  0790a8d6-5316-4204-91a6-8508ca48973b    31987       13609  43190
#> 622  bcebf5f0-0224-4cc8-9a78-1aefd55bfc87    25029        7606   6394
#> 623  c362b855-a313-4b46-ab26-a82082e1e8ee    30345       12151  11987
#> 624  7ca273b2-a4bc-44c4-a670-98d86942adb5    31459       13145  34845
#> 625  894c783a-ddcd-4dba-b337-06d7db037a6e    32767       14517  57942
#> 626  14b52c32-e9f6-4b64-aa22-1d96bb20cf84    30274       11983  11916
#> 627  c7f8e21d-25fa-4a9b-b4ca-ac65f548031c    32377       14168  50780
#> 628  513aad03-6d8b-45cd-96ed-ad0d56e942f4       NA       15505  58089
#> 629  471db686-fa8e-484c-8525-0169b0a8f773    31912       13614  12666
#> 630  43a74ae6-ddb7-405e-8ccd-69d14da6c374    26068       10024   7336
#> 631  0207678d-d682-4916-ba20-74a218d5b6b1    27563        9421   8670
#> 632  e3a0e17e-fb75-4284-b89c-ddbc758f3d20    32414       13995  46301
#> 633  c5ae93f5-f293-4e9f-89a0-6d8bda64ee1e    30902       12290  39676
#> 634  8f0e2ff1-fa77-4049-aa94-159a37ed5c51    32021       13915  28671
#> 635  d7afa203-07a1-406d-bb1d-eb81f331955b    31618       13300  46887
#> 636  9a147206-ba5e-49b9-801c-a7f6832be2c5       NA       15498  59854
#> 637  543deccb-0e8d-42ac-b213-dfd458fc0602    32680       14456  58467
#> 638  0e7d7ddc-6515-4034-8857-5ab9da6b7c25    29242       10977  10642
#> 639  9a76c690-1946-4860-9564-a0b7b9bbaf0a    33360       14652  33672
#> 640  cdf8908a-7092-4054-a49c-a9884211aaa1     7275        4442   2316
#> 641  1b3d350a-478b-4542-a430-d12cc96adc22    26483        8065   7323
#> 642  30198d30-9769-4e10-ac86-b4c91d940802    30971       12619  46518
#> 643  7738fea8-7ea2-4c4c-b589-bca90b070819    30563       12511  12282
#> 644  0752f1c9-fc3e-44bc-b6ad-03f8f7f4191c       NA       15266  40568
#> 645  27156b0b-e82d-4d02-8a04-ca1891d77110    31145       12555  34761
#> 646  a2e0f742-e608-4e29-99cd-e7cd765afba1    32026       13670  45913
#> 647  a21cba9e-32a9-494b-b2a1-d454b65872b6    33179       14881  45749
#> 648  3aa50696-ee45-41c3-b5d1-dda4c81feb05       NA       15669     NA
#> 649  4bd60b33-9fbf-4156-ba2b-8264ac37b418    31005       12886  45783
#> 650  f46e812f-14c6-4af8-9316-01a880adebc5    32608       12678  45734
#> 651  46cf23c5-7096-4f18-a3d8-59f0befc95ff    33309       14532  57184
#> 652  0ef0d0ca-2d2d-455b-ab63-a20c01303e37    30199       11739  11841
#> 653  ffa1d197-25af-43a9-ae61-05ab20a0a5be    26909        9575   8051
#> 654  491a4774-9f2d-4b70-9933-2c7c89abbeba    33312       14694  36925
#> 655  58bad26f-f848-4968-8dfc-d4f9c8d4d77f       NA       15691     NA
#> 656  f58a5899-8b78-46e8-a29a-ba6273b7d872    32785       14576  26394
#> 657  90c2a93f-d837-4e1b-b57c-56648903a8db    29315       10748  10715
#> 658  013477a2-0271-4441-a0af-9bc25924a2f6    32273       14131  94365
#> 659  ab6618ed-8500-40ed-993b-7d3507dc52dd       NA       15539  47378
#> 660  8f86fcea-90e8-49ea-bc78-5c7659313e57    30142       11734  11784
#> 661  6259f62d-e16f-4369-a3be-ca02f79f3026    30246       11879  11888
#> 662  06e41dc1-d5dc-4bdc-8fc3-e0d7c3a99ac4    27591        9454   8698
#> 663  924edb03-29a9-42ae-92dd-ef7e8a498095    32857       14457  61439
#> 664  7e34053d-00bf-4f3f-a464-329c8f5057d0    29406       10830  10806
#> 665  98374ffa-8c40-49ce-bc85-745ad7d74f91       NA       15334  84135
#> 666  f1236815-5ed7-4bab-808f-700c4516fd7d    33302       14571  27003
#> 667  f5b61bef-6214-4d70-9a34-d58da29ce2d5    32816       14485  41178
#> 668  27ff4c5c-e34f-40a9-8dcb-b568cb52ae08       NA          NA  26635
#> 669  32884cc4-ff90-42d0-b02b-f9a7df6ce6fb    29443       10936  10843
#> 670  cf93a57e-129e-4e81-8d40-d8772ee0403c    32522       14223  49466
#> 671  02753dc9-52ac-4ed1-8086-7894d35a3bd1    32721       14389  41817
#> 672  6445ca00-93b4-46d8-8ac6-451ae70a75f5    29423       10921  10823
#> 673  3efde273-cfbe-4485-9ef1-d40ea147f99f       NA       15557  83051
#> 674  884b6094-1ebd-4b72-b957-ad33a3ab984f       NA       15549 100412
#> 675  6d62aaa2-fe41-4672-941f-7314a0b9b367    28289        9842   9243
#> 676  7ff68f1d-204c-4d49-9179-ecb2514094dc    30205       12024  11846
#> 677                                  <NA>    30782          NA     NA
#> 678  e44308c4-2505-4b79-855a-18d83d407fc5    32793       14708  13094
#> 679  7111b5cc-d74b-416b-9c93-c2fdf7ad193e       NA       15216  83377
#> 680  f9c86838-11e5-4582-a03e-c15e02b2013c    30262       12019  11904
#> 681  708e045b-17fd-4f81-87e3-8686b165a278    29478       11088  10878
#> 682  dfccabc2-00ba-4eef-9686-1e1aff2f1dbc       NA       14362  42631
#> 683  3ec4f630-592c-4848-a76c-c30ecc090ecb    29305       10957  10705
#> 684  2e9ef3ac-eca5-4eb9-a41d-f404dfaae460    32045       13890  49408
#> 685  3cb26a5c-9c90-46ad-b539-e29ad6934e30    30128       11695  11770
#> 686  b7f8bf4e-a1e5-443e-8deb-3916c817a1a8       NA       15321  42718
#> 687  d7068799-55b7-47c2-91d9-0e532957939e    30193       11902  11835
#> 688  3e3bd10a-6462-47f8-8938-42518781d060    27562        9344   8669
#> 689  1df2f078-18d8-4bb4-9d6a-9ba4bcb126bf    30255       11951  11897
#> 690  5c913725-c52a-4633-b3b9-efa6a9d2cf05    28448       10168   9493
#> 691  63cef4ac-6e22-497b-9f8c-fbccd0694d17    27662        9415   8769
#> 692  a28daf84-6354-49e6-a047-1bc549997f29    31086       12548  48557
#> 693  22c50029-dccc-464e-81fe-236c34b167cd       NA       15605  56673
#> 694  c6c5ae5d-59c6-437d-9768-34e377fddcec    31890       13514  44519
#> 695  e627dd8c-8b33-4a26-829f-5aeceefe57f9       NA       15611  56800
#> 696  5bc24739-494e-4d0c-beae-e15231743bcf       NA       15284  42754
#> 697  12b626e4-28f9-4f67-bf0f-d8d665f1de28       NA       15607  36668
#> 698  fda10175-38e3-4678-a94c-ccd6008d40ec    32752       14451  28094
#> 699  fb48038c-8f33-47a5-abb4-cda19f66c853    33099       14658  45767
#> 700  5a001d28-b271-410a-8c91-3159a6096258    27544        9266   8651
#> 701  34e32cca-13c4-4a09-93b2-569cddb3c12e       NA       15654  41585
#> 702  0c827cf4-d8ac-4efc-b030-019baa3c7216    31922       13509  41714
#> 703  96d94c76-9563-460a-91e5-47b99f29587b    31020       12458  46216
#> 704  0cddffa4-a061-497d-a487-359e66744416       NA       15695     NA
#> 705  93d11276-45d2-4168-a9b7-df0cbf12dabb    25881        8179   7163
#> 706  b6ab79d0-cbb6-4e2c-8a9d-2e4a092325bc    30989       12479  50950
#> 707  bc8260d5-231f-4337-9979-7c1c40bc6cd0    32205       14068  50675
#> 708  41bc429b-f4c2-4edd-bbe1-9a36a178caeb    33105       14610  44722
#> 709  b4eab0bf-9e1f-43f8-912f-d33ac517bc46       NA       15182  81360
#> 710  bd6ca667-99e9-42ea-9be7-a680945eece9    29417       10912  10817
#> 711  cc9c2006-e72b-4073-afcc-69c187cb28b7    29251       11143  10651
#> 712  4a78d325-99ee-424c-bf79-33dc1bdada74       NA       15346  30669
#> 713  3128aa52-4c62-4096-bf31-bef0fe8d6abc    25549        7990   6586
#> 714  b620e5ee-840c-402d-97be-9b2e0405e1f8    32207       13865  46233
#> 715  79c0e337-bc7b-4abc-9660-0d919251c83b       NA       15269     NA
#> 716  5478c682-15ff-4932-97f3-6725c413c2c1    33183       14946 117754
#> 717  48efc038-96b7-4c63-a33c-41f6abe6d3de       NA       15206  29601
#> 718  6ee71282-c2b8-416a-8de1-29c0185d9b7b    25780        8251   7072
#> 719  4595c8ea-9d85-4504-8a34-2c8a02349105    30788       11841  12324
#> 720  c744ade6-bce2-4c71-8f1b-742cb183c8eb    32901       14832  34311
#> 721  86197778-8d4b-4eba-affe-08ef7be7c70b    29369       11008  10769
#> 722  7905e9be-2f66-4ff5-a6e9-dbe281bf4822    31932       13446  38265
#> 723  33b0227d-4c21-4e71-b4cd-be35f7db9123    31960       13590  27126
#> 724  c4e6f302-b6a0-431d-a1f0-25efa2e7a8c7       NA       15661  36101
#> 725  3ea081e8-a3c6-42c8-8deb-42a9bde10e98       NA       15660 143793
#> 726  bba755a2-63b6-4ac1-b806-0609816135de    33100       14657  40693
#> 727  bef8b2b4-78bd-4a4d-bb5d-6b55ada9ef6a    29238       10736  10638
#> 728  d033bdd4-2a32-4b08-a9a7-8365933816c3    31096       12835  45932
#> 729  69568326-f210-4b88-a5cb-10376c64893e    30707       11750  12253
#> 730  7f59e894-4ce1-4803-a556-2e02add60bc2    30431       11785  12049
#> 731  c3f2ea91-98d6-4d37-b5bd-3c7ac07e5b24    24796        7349   6161
#> 732  2ff5e7ad-4ac1-4e26-9572-69bef348b1bc    28854       10260   9719
#> 733  9b1a3246-4f3b-47f7-9bf8-a33d6e454723    33093       14693  39461
#> 734  d723ebff-0e9d-42f8-93d2-fe0c02252de8    26578        8560   7636
#> 735  38b32cb2-42a0-44ce-87ae-bf16c338b3af    32250       14132  47147
#> 736  2dcc8e56-ac32-4774-a011-b1e65ca73786    30267       11899  11909
#> 737  43e8a6ac-d451-4dbd-b145-797764f91494    30784       12179  12320
#> 738  8caec1b4-e0b6-4a84-b8c8-617d6e91ef6a    31107       12514  47304
#> 739  0f369885-8ecd-4ca0-a3dc-df8530a0db6e    33101       14478  42266
#> 740  82a7e1ff-019a-4f4b-aeb6-c41420e44891    31777       13378  48078
#> 741  a964f59b-af2b-48e1-b64d-c376cc1d8c28    31178       12773  48170
#> 742  36f62824-1cdb-4e9e-8a11-55df97e562b9    30352       11849  11993
#> 743  00f88be8-45f9-4237-b2b8-3271ec790d07    28392       10055   9437
#> 744  3860693c-99a2-4484-99db-1d43e3ff7fd4       NA       15559  84424
#> 745  9e174ff2-ca0e-4e6b-96f7-90f0088f7edd    31051       12810  26075
#> 746  c9ef678b-959b-445b-b32a-81c767c8ad65       NA          NA  61327
#> 747  a72ea15b-5199-4101-a300-846e1c655add    32687       14411  61570
#> 748  09903f88-830a-4db2-8de7-1647c1f2eb6c       NA       15577     NA
#> 749  3bedede2-77a8-4dd7-bc43-137c0ff08153       NA       15244     NA
#> 750  17f52030-0a86-408d-b7e3-194ed4374fbb    31601       12909  48230
#> 751  8753f2f2-16df-41c8-b25d-c93ada64d78c    32753       14515  41924
#> 752  ec606880-b9d9-4765-b70d-7f249e06c2aa    28376       10667  10247
#> 753  c63eb787-fa1f-406b-82a1-2eed0a65b58c    28438       10408   9483
#> 754  8a7fa9bc-f589-4458-9a58-8ac3432a3df9    28705       10429  10000
#> 755  054f4c09-6bc9-49c9-a466-80abd2a39e74    27542        9272   8649
#> 756  34853ce3-5e1f-4b23-b730-6f51444291ac    32932       14738  45258
#> 757  bc399631-6a3c-4515-9f8b-acc9a08bc434    32747       14711  50327
#> 758  aaa9228d-7399-4b53-a2e7-259438bd2959    30271       12016  11913
#> 759  5c753156-6ba2-4e25-9fbd-492c69e06ff0       NA       15403  83119
#> 760  c2ee7e58-321d-44b6-9db8-f333b75b3a1b    31026       12782  51576
#> 761  977e4e40-c596-43c3-a5a9-2141f6590b89    27549        9288   8656
#> 762  155980c2-e289-48c4-a047-09c08d0ce7ae    32164       14198  51189
#> 763  03773859-cfd5-44f0-be0a-8ff82b6055fd       NA       14998     NA
#> 764  f7b49d9d-2ce4-459f-8065-fa3b52d28069    23995        6622   5545
#> 765  2df474e5-7117-4650-8d53-34b3fd0f1bbb    29332       11174  10732
#> 766  965df459-3f21-4a93-9a99-15559eb977a4    31634       13195  50535
#> 767  5c1cb09e-be4b-43e7-b35d-98db06cea707       NA       15220  76725
#> 768  a2f1a595-4454-465e-a190-0312a2ea3acc       NA       15382  83243
#> 769  fedf6815-1c7e-443c-8d99-633c72e81179       NA       15053  48558
#> 770  92c8bc67-756d-4e3c-981c-3df010e15e2d    31903       13451  28075
#> 771  20d66704-9c12-467f-a6ca-9cf9dc00730c    27763        9785   8869
#> 772  440bf3a1-d373-4f11-b702-26fb8f62c035       NA       15608  50306
#> 773  da25e165-3aec-46d0-8f4a-ff48e078c679    32661       14426     NA
#> 774  9492f51a-22eb-465f-b3bb-aaee81ce76f5    28982       10793   9891
#> 775  29815a83-1d6b-4e1b-b1c6-9bf44e7166c9    32254       14144  94361
#> 776  e1b3b636-39b5-46cf-aa7f-216b09ead7e6    27748        9400   8854
#> 777  1fb9a153-f1e0-4396-81fd-c3b1d331338f    28771       10592   9732
#> 778  10969a29-e4ca-47d3-9100-0017774f2cc2    26723        8676   7882
#> 779  ea01fa3b-cebd-40c3-9de8-3dc7f5e44e58    32765       14602  43069
#> 780  b556a98d-16aa-4a0d-9134-1b59c46cc640    32225       13713  47121
#> 781  64321852-52e3-4ac0-9b3e-898f0b1e500c    32851       14624  41339
#> 782  dbed6759-8ce2-4f1b-8757-aab4ec66dcc9    31382       13954  30097
#> 783  570c17a4-c14a-45a0-afda-93ef879b2604    31873       13545  47008
#> 784  22b2030e-ec57-4f96-b722-57b3e495c83d    29329       11042  10729
#> 785  e731bbc1-09b2-4cf3-8aa2-00d00f9b2d29       NA          NA     NA
#> 786  6444feb1-f5a4-4b45-9a45-79308a4445fd    27120        9948   8437
#> 787  13a9ad48-6886-4390-b2d8-9c79cda111d1    31092       12689  51029
#> 788  faf72326-5e36-4bdd-9843-5d2a6b4ee6b4       NA       15422  58095
#> 789  c16fcef9-ecdb-4696-9c92-5d5b959aafeb    31117       12846  50879
#> 790  7f35aa83-30f3-4997-b5de-11b0c19e90cb    32220       13907  48567
#> 791  f8f0760e-8f04-45bf-9371-fa33c945bc1c    32848       14757  42659
#> 792  6ef5045f-9215-4354-a1af-3f86e4c4a03d    29461       10894  10861
#> 793  92e78492-1e80-453e-ab31-862e12ffe7d7    32134       13973  49805
#> 794  db60d5c7-835f-4dac-b0ae-843a99882f9b       NA       15249  44299
#> 795  a473e7a2-8f31-43ad-b87f-c39e6635f1b0    31076       12968  50720
#> 796  5180ecc5-bbd9-42b6-b227-c5efdb53cf80    33197       15013  35858
#> 797  66313049-299d-4e58-beb9-8e051ab6548a    30975       12877  48526
#> 798  cc69eb61-a6f3-4d24-970d-c31e4dfcf6b8       NA       15707     NA
#> 799  e9b50746-32c9-478c-a8cc-3f037e762ecc    31792       13391  15267
#> 800  74ee9029-96c6-4a9b-bd20-1b2ba18c14b5       NA       15481  43021
#> 801  04d09b84-6c99-4d99-a1f0-c30d3360ab52    32666       13699  30352
#> 802  291aca07-a3b7-4666-a8c0-2e0c01024de5    27217        9935   8530
#> 803  c03a2bf7-49d3-48fc-9062-0a2937a17647    32622       14201  46284
#> 804  80422fa0-20c3-40d8-a3e6-93f55b09b872    33227       15114     NA
#> 805  8bd08ef6-5d55-4fd0-b7db-1489d88c6ebd       NA          NA 112915
#> 806                                  <NA>    30813          NA     NA
#> 807  6a213f8c-74e1-4901-8841-bf5730a23c4b       NA          NA  22443
#> 808  16423bd0-6239-454c-9ec8-f90477de17b1    32188       14065  46669
#> 809  09fab9a8-b0af-4580-bf55-5c9167912f89    30133       11779  11775
#> 810  80b403da-381f-467e-883b-5b83ac02aac3    26788        9022   7947
#> 811  32b2d6f6-a636-4d73-927c-361c1aa809f5    32942       15012     NA
#> 812  71a2444a-a6b1-4e62-8974-2d858e2c5b73    33266       14431  40119
#> 813  d4cb52a9-f6b4-42ed-b40b-27bff5f1eea7    27560        9245   8667
#> 814  94325301-e0ad-4a9f-a0e5-ffec0f529be3    31874       13736  39517
#> 815  9ab44516-2a26-4049-b630-66539c7a5dfd    32221       13620  46487
#> 816  d4f0aa89-6309-4977-b779-7501eb8c8508    32502       13559  27436
#> 817  2af6db68-3ad7-4699-8f86-0140fffce577    32966       14396  42425
#> 818  0f8ccece-d663-4069-944b-f318f64c60b7    28403       10064   9448
#> 819  889dcdc5-3d88-45df-9677-5ad7ff87c011       NA       15306  77803
#> 820  9424475a-fba7-4bfd-b79c-f372ad28082a    31228       13067  31615
#> 821  0864f928-283f-40e4-9c04-f2b2b374e237    32611       13917     NA
#> 822  248b6e0b-bb1b-4dd7-8eb2-b5f7e98c77b1    27668        9362   8775
#> 823  86c5152c-c823-4127-97e6-2fedf532e8e8    25822        8304   7112
#> 824  67e5566c-73df-43b7-80ae-3d50d68ac189    32224       13601  46247
#> 825  582dc00e-e7ec-4ca7-bff0-f7b1d604017b    30287       11897  11929
#> 826  5d0fe7a9-51a2-4e72-b2ea-54721b44db71       NA       15564  40860
#> 827  cdc98acc-9eb6-4b44-81bb-61d7b8a3b55f    31852       13426  42388
#> 828  617aee8a-70be-4bdf-9a71-2e2b74e647e6    32788       14369  41933
#> 829  a195e517-f732-4e55-a84c-2ce132a73c65    32086       13444  38305
#> 830  b55ae5ba-593f-4560-9cab-14e10698e01d    31010       12586  48164
#> 831  eaaa4a61-c2a7-4926-8e9b-3ec71be2f991    32685       14458  61103
#> 832  030f3ecf-f32f-497d-96a8-8f28d44fc311    32016       13735  48023
#> 833  ccd5239f-e8ba-484c-acf5-af0bd9f6dadc    31083       12654  45416
#> 834  2a443351-5e63-4a49-819e-912b51a745f2    30511       12061  12087
#> 835  0830e644-2d6e-446b-9da6-57d7e3472fcd    32929       14593  34045
#> 836  8cd3d1bb-5b04-4351-bd03-4b4f9b9e33e4    32922       14621  42134
#> 837  89338a12-65a8-4670-ac99-97281732ff79    32716       14462  61590
#> 838  f3debe3e-27e4-4c4a-867a-ec537b5a7826       NA       15405  84137
#> 839  379f98b1-2f12-4f9e-8332-61cb930ac97a    28279       13530  91248
#> 840  8fde3481-68c2-43c4-a9d4-de73f0a259e3    31547       13272  38709
#> 841  44176cc9-9025-4dec-a790-fbfa57686a6c    30990       12888  39137
#> 842  a8233d9b-6384-4220-9cf3-25158e942d70       NA       15358  41974
#> 843  3e4c9bb7-6ff1-4bf8-bc25-cd6717ddf568    31978       13744  50533
#> 844  790ae305-a3ea-4a98-a13a-31dacadec04e    32673       14424  55674
#> 845  eaacee31-0a3c-4f9d-be85-86490ae16f6b    33293       14599  42189
#> 846  5f871c3c-9df8-4869-a967-9df253747a73    32097       13589  44429
#> 847  91fbc46e-2757-4169-bdfb-9a87522cba02       NA       15762  55983
#> 848  8c348caf-34d8-44a8-a781-fee8064ae258       NA       15261  56203
#> 849  7de23fa9-4c27-4dcf-bfd6-caf571065cb8       NA       15202  26144
#> 850  5cb6a7f0-892e-413a-a4fc-a7dbc60ff478       NA       15682  83025
#> 851  b80be347-fd65-4a40-bdad-e11c75bded39    33190       14849  91112
#> 852  d014789f-6cc0-435b-bd18-9faaf12ffd6e    33296       15130  49545
#> 853  f90ce4a1-b876-4114-958a-e90768761749    33189       14699  51071
#> 854  2786ef4a-83aa-4408-ac82-cee3e5c86e71       NA       15683     NA
#> 855  6b8cdb8a-db1d-4a3f-85dc-37cedef65c0a    31052       12747  51266
#> 856  cae34950-dcb7-4021-ad21-0a8ae7cf47f1    31913       13805  51336
#> 857  ab47d1ab-af14-4054-ace2-0cd2fc1def85       NA          NA  26617
#> 858  461b6e57-a2b0-4648-ab1f-b3ca4b111fe3    28732       10526   9966
#> 859  195083b0-4c73-44a3-a33d-4839b6196e27       NA       15599  43073
#> 860  30f9ff1e-e66c-40b4-b6a0-46186de3b932    29794       11055  11162
#> 861  30119d63-584c-4fd6-95aa-67b7af4998f5    25724        8152   7020
#> 862  cddaa0c5-2d55-47cf-93aa-cfa344604710    33247       15015  45507
#> 863  0670801f-0ef3-46b6-ad6b-62475db6b787       NA       15195  43679
#> 864  dcd1b7b0-5768-4b66-b760-30dbcfd04b93    31572       13280  48759
#> 865  e03775ef-3287-476c-9386-ff16ea31d7b8    26846        8969   8006
#> 866  564fdf8b-c21e-4889-b371-e8ca079ae9b7    32905       14833  28074
#> 867  da8694f7-3e30-4500-b890-bd28c7bc0ddc    31480       12662  50714
#> 868  cc1cc1ef-551b-444e-be5b-1eeb5c3a4177    32745       14668  37070
#> 869  8af5d867-302a-49ae-9acb-fede2cebe979    29398       10951  10798
#> 870  2cf5f42b-7200-4c65-85d9-2b0e5b8696fa       NA          NA  40976
#> 871  cf95d473-31b5-4bf4-b52c-386567c51caa    32791       14678  37181
#> 872  deac735c-af0a-4f01-ada8-379ef66917ba       NA       15512     NA
#> 873  bd1f047a-978f-4643-b55f-f4d3b0719a4e    32002       13812     NA
#> 874  8fb2ca06-3d13-4552-98e0-7b913b4ab5b9    29949       11403  11331
#> 875  e91734d9-8e7d-4e55-9027-e7c338cc809a    32737       14448  44152
#> 876  ba760d2d-a35a-4f9c-912d-05217aff53ab    32985       15083  82302
#> 877  23df1eb7-f589-4e49-bb31-0b4ce983fe32    32457       14211  94372
#> 878  dd62d18d-3438-408f-8b53-a68399bd4a04    32266       14103  39043
#> 879  16c53e66-de15-43da-931c-bf3a3e056505       NA       15489  58120
#> 880  61e1881b-a33e-4d33-b518-017145d5fc03    30237       11980  11879
#> 881  4da59648-13e4-4afd-b36e-6adf539292ff       NA       15300  42663
#> 882  37476573-91a5-454f-a849-baf46c293940    31167       12907  49706
#> 883  f7d0d3ea-6de1-4adc-b431-166c6dde9cc9    30135       11918  11777
#> 884  abdf27dc-a54d-427c-a745-173f1c485292    31753       13361  49023
#> 885  5314292d-aac5-4fe1-be7e-8f2ddf2d45a8    31949       13843  36248
#> 886  b53384f0-6eb8-4d50-80f5-a2f955183317    29867       11156  11250
#> 887  8bb2d40a-6dd2-4108-9810-5def1b45f192    30189       11957  11831
#> 888  57deb6ba-ce26-4ccc-a859-adf0564fb78e    28489       10323   9534
#> 889  17a17a1a-787d-46b3-94c0-8d4e1928c492    33024       14851  28071
#> 890  6bbb8551-be80-4eae-a1a5-9f877f917a05    30970       12983     NA
#> 891  865d4bf9-5d13-42a6-a8f9-a4e9a93c7375       NA       15522  76996
#> 892  00a28b92-3567-45bc-9fdb-61276dc57755    32867       14719  57037
#> 893  7141ec7a-4f3d-44a4-979e-6644ab9e8f7b    32358       13715  34735
#> 894  d897b70f-29d9-477e-a72a-c9bfbadb70d3    31431       13109  21956
#> 895  d446443f-130c-4bce-a300-a15cf66f27f1    33207       14393  46465
#> 896  a259d6b2-0238-4f22-b3aa-de7132cf9285    32272       13630  46508
#> 897  aba8f925-ffbf-4654-bfa7-a25d3d237494    29235       10729  10635
#> 898  4a096c4e-7738-43b3-984c-7ea604a96742    32972       14496     NA
#> 899  cc4b5f58-a11c-4450-a1df-617ad88336e4    32705       14394  57212
#> 900  122e131c-b08c-4b10-901d-481a20aeffb8    30247       11777  11889
#> 901  0deb1dc9-0945-470d-8352-220d26d03d7d    32596       13960  94383
#> 902  de456390-b27b-4146-87b9-0267f1ea8db4       NA       15296  83740
#> 903  be8e5962-f2d9-4316-9fdf-212a95dbb590    31258       12725  49166
#> 904  8106a0d3-1cc9-4038-8c1b-9c7886a6bcba    30870       11820  12307
#> 905  ad15f429-2d3a-4fad-b378-2ae972a474c6       NA       15188  81788
#> 906  8255ee3e-cd6d-445a-8f45-7ac60fa3e794    30270       11797  11912
#> 907  b38b6c46-7b53-4c5b-864c-04e261c97ddc    32455       14210  48584
#> 908  1b17a67d-c771-4e7d-80ea-fb1d19adb200    29250       11020  10650
#> 909  f993832a-f81f-4706-90b8-80fd193bdfd7    31181       12697  42062
#> 910  8f182089-7730-499e-8f2e-87bda32debfb       NA       15681  60994
#> 911  3d2f2c64-3d4e-461b-a3e7-677f74e6c5f8    33064       14632  47214
#> 912  826c6c22-2a3a-48bb-befb-8e552fb391ea    33186       14364  61072
#> 913  0cafaac9-20fb-4e5a-9362-158d8a4e7904       NA       15701     NA
#> 914  21a33144-63ee-4125-ac44-3fc911a39d50    32551       13686  47123
#> 915  bd1120b6-38b3-4225-a4b0-20660a149d0d    31840       13610  40912
#> 916  7bfe9525-ad16-4e26-9d65-b48276eb3fd8       NA       15575  41248
#> 917  dc51b38c-dc82-44ee-a88b-764d681ce58a    32561       14246  94379
#> 918  26ef0447-29b8-4dd1-9831-dcbf8132bb74       NA       15332  84470
#> 919  6f124753-5c6c-454b-97c7-0f9b4d14e7c2    31769       13418  26104
#> 920  3bd012f5-1fdf-4ed7-b660-5013122df93f    32836       14466  29614
#> 921  40a9d668-269b-48ec-be2f-128d89aeb20f    32189       13919  94356
#> 922  682eda79-0026-4ad8-8f45-a61ce42cb908    30230       11871  11872
#> 923  e0a31d02-9d1c-4dab-adb4-a5d9bbee8b36    29631       11429  11028
#> 924  4d224244-dbb8-49db-b8d9-8bb974cea82e    32878       14666  28148
#> 925  e669f022-4065-4ef7-b850-a90e8b2367c0    31589       12832  49349
#> 926  35e016e2-c6cd-49c5-b1b5-73f03b81ff4d       NA       15297  55912
#> 927  5bde0a71-c7ec-465f-ad35-c195e1d10b29    31069       12778  49355
#> 928  ae0498b4-0ccb-4b11-9449-f26c621d7c79    30146       12020  11788
#> 929  ff89ab1d-4c9c-4e8b-943d-6a9305c5793e    30212       12013  11854
#> 930  dc9d65a1-f955-4ef4-9b36-807c3ec73821       NA       15636  42496
#> 931  7ca47182-01e0-4eee-9590-de9af571488c       NA       15517     NA
#> 932  db9fa46f-f0f6-40b8-a207-60d46173d7e1    30988       12549  49350
#> 933  23424024-3b7b-4de1-9b0c-09d170f845b3    32268       14104  26015
#> 934  3acd2909-ef8a-4a20-a859-001e6244d57f       NA       15377  44443
#> 935  e1b066fb-d077-42a3-9f5d-4ed560c9d777    31853       13810  34247
#> 936  81aaf55d-df8f-47d6-9bf1-06b78df37bf6    28530       10390   9575
#> 937  959f035c-b8ce-45a3-bbe3-fda439c1e9f1    33222       15070  25687
#> 938  41ff2f2c-6ddb-4bc5-9712-3664501f7af9    32906       14779  43076
#> 939  b9aaf941-b081-4566-ad9a-72acbbeea4eb       NA          NA     NA
#> 940  0df44cfb-8dab-4fc1-8556-108505a4b428    29371       11119  10771
#> 941  d848e4e6-ff3e-421c-9bd3-c2f62a16efd4    29261       10973  10661
#> 942  3bdd0681-066b-477f-bca9-6b38bad6d8e9    31657       13237  32708
#> 943                                  <NA>    30919          NA     NA
#> 944  855efef2-4393-4959-9712-3fd144a03110       NA       15604  56597
#> 945  00ba8fa0-93ee-4e40-823a-d03a2639fce1       NA       15613  44570
#> 946  ca113409-c714-40f8-82db-727eae1e455e    31436       13114  48604
#> 947  f4a43515-f437-499a-8c57-086eb579c5af    30676       11780  23112
#> 948  b5d116d8-11d4-43b1-8f0b-9a3ba26648c9    31876       13669  46298
#> 949  e9615c8c-3a7e-4b10-92f8-86f48edbe9a4    30018       11453  11435
#> 950  13bbc7df-2a25-44db-a79a-89ba6c1ac009    32862       14471  36661
#> 951  2bd96d27-08b2-42b3-ad89-b01442c07fe2    33352       14903     NA
#> 952  e0856548-6fd5-4f83-9aa0-91f1bf4cbbd8     8447        5363   3809
#> 953  189e33b8-0a9a-4fc7-b2e1-e5a552779a5c       NA       14650     NA
#> 954  ede260be-5ae6-4a06-887b-e4a130932705    28426       10316   9471
#> 955  99847f76-5bf2-4cbe-8573-9a477f7fb472    31844       13651  42905
#> 956  91584998-260d-4d2e-a154-e4b6f7886ff0    33067       15001  77573
#> 957  a5a7243e-d842-400d-89ff-5d451338426f    32996       14725  36669
#> 958  872967b4-d1ab-4b27-82e9-c40774fc995e    31184       12964  50089
#> 959  586bc34d-f368-4d82-96b1-816d08fa2837    32912       14365  56703
#> 960  ab9bd5b1-eaf9-4f2d-8acd-fbc143980b17    31058       12919  50203
#> 961  5203e275-5554-47de-bc0a-5b13639e5b50    32058       13883  30242
#> 962  eafbc0f8-2e3b-4014-af9d-81fc14b5009a    25736        8134   7031
#> 963  af3599a5-5eb4-4dd4-87ab-e0032ebfa644    28510       10328   9555
#> 964  25a643a9-3b59-4739-8430-2713a818fb69    29349       10935  10749
#> 965  fa797d7d-4537-4e2e-8fd1-cd8831894092    33225       15072  50275
#> 966  fc081a72-124d-4648-86a4-45aebb95a5ba    33221       14572  42548
#> 967  92e24ebb-25e5-413a-95d4-26936bdb6a70       NA       15255  57754
#> 968  3267e534-526e-4db8-8e1f-49fc7ee8aedb    32276       14106  39094
#> 969  ef978985-2123-411b-85bd-c59c04618dbd    33104       14723  50192
#> 970  3b676675-0ed6-4892-bd6e-e03cd92596f2    33193       14611     NA
#> 971  6cb85ce9-39d3-4453-9104-36adef874db1       NA       15380  41448
#> 972  d525b4a5-5207-4c1c-8647-7560a151e602       NA       15348  41583
#> 973  659751d8-c58c-41c1-82a9-8a201a4ecd0d       NA       15448  41746
#> 974  7788ca8f-88c8-447f-9110-3cfd3ca5efd8    27595        9696   8702
#> 975  1e5595fd-5488-4762-9987-f568eeadecc9       NA       15398  59992
#> 976  a750e7ca-12ab-4d7c-bc65-f58793c3ed16    26732        8736   7891
#> 977  1073ac8d-d12f-4ad0-845d-5351503931bd    31727       13323  27626
#> 978  0ce48193-e2fa-466e-a986-33f751add206     7200        4307   2241
#> 979  e5094779-e94f-4052-8597-bdbee3719f6b    32696       14371  40306
#> 980  bd684ac3-89d5-4b6b-84df-2a4a9b04cae1    31336       12819  46540
#> 981  e2104140-4ce0-42a8-8b00-346b4a9258b2    31189       12950  23519
#> 982  ef87e355-8e0c-40ed-a85d-bca4896d4f1e    33235       14573  40448
#> 983  27dd5b6e-ea65-4622-a6b4-460fd144407c    30295       11763  11937
#> 984  e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3    32732       14370  57165
#> 985  0a040f48-4fa1-479d-ae9d-3ab1457539ee    32054       13454  26392
#> 986  0f5abff3-bb58-43bc-a915-daa341bf3a67       NA       14379  57306
#> 987  1306d6f4-5de3-4bec-9c86-3e5ab8e2d081    25863        8314   7146
#> 988  c589d918-f69f-4284-aa85-5f9c30e006a4    32275       13879  60822
#> 989  9c21e9af-681c-41ef-9b00-fbc9e1668ed1     7777        4891   2973
#> 990  921d49c2-64d1-4108-a3a3-0c237e17748a    33367       15181  62825
#> 991  dbda3235-5f3a-4c16-81da-48c093ad6c85    32063       13527  39770
#> 992  7874d188-0fcd-4af9-9289-27c27e2bbd16    32764       14629  47034
#> 993  e0755328-7fe1-4df7-9dfb-93e9cf9ef5be    32056       13528  47119
#> 994  e7a9186e-5e19-4f70-b45c-527c888e6fc7    32876       14827  47743
#> 995  dac819b2-245f-4845-a73e-b6f92fbe3abb    29304       11087  10704
#> 996  7c9c7800-69d0-459b-812b-a07ac48e9f2a    30777       12389  12193
#> 997  3283f152-d373-43b3-b88f-f6f261c48e81    24851        7256   6216
#> 998  e7d6ae25-bf15-4660-8b37-c37716551de3    27581        9455   8688
#> 999  8b66001c-c41f-406a-9583-d8b6848ea6d2    32409       14023  48211
#> 1000 228b0dd8-3f75-4b60-90d1-59036858b8ae    32488       14002  94375
#> 1001 9281d541-8bcb-4785-a02e-76150910898e       NA       15376  84096
#> 1002 0b97067d-9e06-4ec0-97b2-e1cb491e12a6    31177       12560  47967
#> 1003 e47ca6ed-c988-4cad-b4a4-181c67463748       NA       15441  61212
#> 1004 aecc1809-4628-4c3a-8b2b-c8f2858d2492    30339       12216  11981
#> 1005 6a23db75-021b-4808-99e6-21a33d34202b    31268       12628  48135
#> 1006 e7f0a505-8060-403e-a3b3-9d4e88dda1dc    31144       12934  47809
#> 1007 f7365f88-4cd0-42e9-9e4e-7bade08e9e5b    31607       13297  29622
#> 1008 fa7bdbe5-23b9-4cba-9015-98c5e2d09c9e    32019       13664  38275
#> 1009 4bbe8ab7-3ae2-42a6-a471-fd2b344843a2    32059       13603  28704
#> 1010 16e4ffec-959d-4210-8702-36c0bf20dda5    29340       11141  10740
#> 1011 1c41b4ac-bec1-4943-b0a3-5b57642faaaa    30264       11999  11906
#> 1012 411c2af8-64c9-4982-8d72-3ba4c683c0db    31318       13218  66930
#> 1013 aecd8785-d22b-43b4-bbff-76b7e4319ed6    31166       12994  28196
#> 1014 486c2ff3-5e42-4bad-9849-2084ad0af423    29291       11045  10691
#> 1015 94f04ef5-238a-4f38-b45a-de2e7f3b9f9e    27782        9332   8888
#> 1016 bb9db665-7f9f-425d-9e4b-df78c65c8b97    31038       12606  49048
#> 1017 d6969476-95dc-42e4-9cd1-a1e8ae6973ff    32961       14491  43528
#> 1018 acbf5978-d7da-4d01-8f1d-22dd65d4484c    31886       13820  55615
#> 1019 5cb1fbaa-96f9-4211-96b7-f3492f2bc467    27607        9298   8714
#> 1020 f9ae156c-f690-401f-b964-34b0ff6187f9    31652       13189  51146
#> 1021 0a63f97d-9cc2-44d0-b65a-ac2e78db73f9    31321       13219  66931
#> 1022 7d1d8954-3836-4bbc-9d70-cd85e57c7c69    30196       11938  11838
#> 1023 b7337487-017c-42f4-b500-6802a35efbfc    31156       12990  50152
#> 1024 ae3bb00f-84e8-439f-ab56-38c6838b8b97    29317       11070  10717
#> 1025 3180d257-5f46-4a25-b50a-3311235bc8b3    31256       13285  48452
#> 1026 e1048910-1b5f-4d91-8702-f5ad06844b24    30164       11950  11806
#> 1027 bc69c92c-58ff-44b2-a18b-07a08ee78dc6    32760       14550  48407
#> 1028 df08d4a5-2979-469d-9775-ed34fc3f43ee    27687        9409   8794
#> 1029 0681ed0d-6b7a-4582-85b8-2692f0c2f058    31982       13538  48718
#> 1030 23a30b80-1549-4ae8-afac-0fa99636c71e       NA       15610  48676
#> 1031 7e2046da-1bdb-49b6-abb1-c35e725d84a3    32709       14406  44526
#> 1032 426048d5-8634-4df9-a0cc-b92f2c76a03d       NA       15697  27376
#> 1033 eb904c68-f01b-4af3-9427-dd6a6c35511b    30307       11944  11949
#> 1034 016a6d56-0b72-490e-8dae-41b5d3d2db63    30222       11921  11864
#> 1035 54f13aa1-4a2f-46a3-99ef-743c1d3ee234    29301       10976  10701
#> 1036 89580a43-ec9a-49d3-86de-07810bcb8cdb       NA          NA     NA
#> 1037 203b60aa-cb94-499c-a4ca-d3c6b94dddc4    29792       11031     NA
#> 1038 f50c9bb7-2782-4390-a84f-b47e71d6018f       NA       15602  60761
#> 1039 2c33ff53-6c16-46b5-a3b0-20db70fe430a    30583       11979  50712
#> 1040 fa4ae025-fd66-4752-94fa-63e22ae8abd4    28935       10673   9836
#> 1041 bcbbd7af-5a61-41f2-bae6-1e034755e7ef    29442       11233  10842
#> 1042 2e9e0b4e-d7f6-4d9b-850f-e1a5a8e17a5b    33103       14920  36346
#> 1043 bfe704fc-266d-4f6a-afbf-c903b5934e23    30448       12360  38587
#> 1044 ccd34e5b-38a5-4633-8279-77e3a47f5424    32222       14081  49722
#> 1045 37aa17f7-890f-40ad-ad48-57d70f2708a9    32100       14034  44987
#> 1046 14656a50-c687-48e0-a2d9-819709e3ffa3    27660        9712   8767
#> 1047 b220a72d-6870-418a-98af-ef50632be774    31552       13276  26296
#> 1048 462bfd22-1159-408f-8f92-7fde712ffc3a    27599        9375   8706
#> 1049 417f4ddc-b1a4-432d-bbcf-e95236c10efc       NA          NA     NA
#> 1050 b23e22bb-d478-4312-a085-e7642017ccfb    24662        7107   5800
#> 1051 8abf63a5-6f5d-46c2-8a3a-b9b03d0cab26    31855       13743  25472
#> 1052 f9ec0e39-86d2-4f99-84d6-b4e7bb387d8b    27360        9104   8365
#> 1053 ac8909fd-d860-4c28-884f-291ff7cd370e    31044       12575  46375
#> 1054 30fedd72-bf59-4a35-9aa9-dd01b1122c09    27592        9427   8699
#> 1055 e190fe08-2f57-49fe-858d-9762dfe1ee7b       NA       15528  41626
#> 1056 bb5156b6-adca-425c-b336-54507cdd0cf8    31887       13811  46961
#> 1057 813c2073-8f69-4f6f-94a6-6819cd14b4f3    29247       10964  10647
#> 1058 aade4e57-ef71-473c-bf8e-18be90164351       NA          NA  60118
#> 1059 3e061410-a4e0-4e16-8043-2f63842410a6    29404       10961  10804
#> 1060 99b8d78e-6d23-4e85-8eef-d286ba5ddc0c    24925        7438   6290
#> 1061 ca2ced2e-dc69-403b-8675-b92b7a0b3a75    27948       10096   9234
#> 1062 db392145-7bee-4453-8762-ec946b3130b3    30371       12599  12204
#> 1063 f6153509-d21a-439b-a33a-007a9f25218f    33119       14921     NA
#> 1064 d2f6de91-089a-4845-9b90-bfbc00487444    30711       11829  12255
#> 1065 7d51fab7-2d52-4d19-a021-19a123af0d10       NA       15542  52269
#> 1066 eec5265c-7731-4bb6-8af2-4f98a67f9ab7    30125       11712  11767
#> 1067 7f3ef024-eb34-46af-8b9e-544cdf09378f    24967        7357   6332
#> 1068 4d517d8f-fe4d-4c89-9a2a-fee836ba4a71    29441       11026  10841
#> 1069 9a5ebed1-839d-40f9-a86e-ba9c65c7c7e6    33098       14565  45958
#> 1070 bd8052bd-0898-430b-99c9-2529e895ae79    26813        8765   7971
#> 1071 2c8670ae-0c23-4d20-9d2b-f4c3e25f8938    28474       10148   9519
#> 1072 82f459c4-bf23-4d60-9eb6-b062994f5517    31041       12892  45747
#> 1073 26e66f79-5f08-4ee1-bbc5-85c8f5f7fddd    33161       14659  83711
#> 1074 608ebe54-1b57-4775-808f-ab2e02637a75    32796       14667  36501
#> 1075 d6647491-8a3c-4f9f-999c-823823bd478d    30468       12230  24606
#> 1076 0cb5a32a-a340-4671-ba2a-93f5fa6aee8d    31068       12568  47050
#> 1077 8ffb5c07-4aa1-4796-b1ab-30c1ab0ccc4c       NA       15369  77887
#> 1078 6733b953-de77-44e5-acbf-c2d3a0940243    30627       11887  12247
#> 1079 362244ff-545a-4123-8b4d-6a4bc6f24ce1    33364       15179  14811
#> 1080 0b504d67-639b-4ba8-979a-498a3086257b    29341       10994  10741
#> 1081 973bfe3c-6d0d-4130-a79c-f860650b1da6     9037        5813   4717
#> 1082 fb815f81-3759-4194-bff9-1982fb2dd9a0    31626       13304  38435
#> 1083 bd56a50c-5fae-4ee2-8363-f74ae07b6887       NA       15200  61441
#> 1084 c682e8ea-fe48-45d2-af60-682a6125ab22    28417       10208   9462
#> 1085 bd01d907-cd57-48cb-9136-5692a4764a20    28464       10210   9509
#> 1086 b6b954eb-4591-4b7a-86b9-a481f15fdd58    27548        9260   8655
#> 1087 95f9c4fe-b5b0-4075-bdd8-f5b458373df6    32141       14048  33158
#> 1088 a7bee0dc-2f5a-4073-a785-85a34c60dda1       NA       15248     NA
#> 1089 5b6cc8aa-ee60-4533-b261-58930228faae       NA       15341  42194
#> 1090 66990fc9-f98d-4712-8a0e-524372b9102f    29252       11089  10652
#> 1091 3f0613a9-f060-4b43-95cb-3b263f05cd0f    27747       11514   8853
#> 1092 d0dcbe53-8c71-4488-b468-785a756ee489    32171       14187  43823
#> 1093 bbeb74ae-87d4-417d-ba57-670391baf8ca    31866       13474  49564
#> 1094 91714138-9d0c-446d-b509-709d95f9202b    31080       12527  28495
#> 1095 1e9a3d33-62b1-4fab-9b06-b4d61ef1accf       NA       15649  43308
#> 1096 81a5c010-2e89-4b65-a924-015cf4ea3f94    26648        8637   7806
#> 1097 c9b2e966-bdfb-4ccb-be3c-42473f63929b    32463       14216     NA
#> 1098 901c84c7-ef46-4c9f-9941-ac8becc02986    29655       11319  11052
#> 1099 72100db3-2daa-4c17-aaa8-6c2c52bea5f3    32881       14828  27069
#> 1100 cbfb7144-357e-4feb-82d7-a6104fdbf908    30669       12431  51596
#> 1101 8d44783d-6149-4e6c-8a5f-5fead0ec7677    31976       13764  49217
#> 1102 26421b57-c32f-45d3-abcf-c23defaf4f2e    31941       13760  51304
#> 1103 294b8433-6560-4117-82e9-79f51d361b0b    28503       10404   9548
#> 1104 e005ee7b-3fb4-4219-8de3-a9b0302cb2dc    26917        9105   8117
#> 1105 c2ec4712-147c-49b1-b6ec-fdb298913080    32755       14704  49434
#> 1106 b736f05a-38a5-47b4-aaab-734667967ac2    31373       13094  31342
#> 1107 bc6aa137-cef3-481e-a87a-e06dad32882c    29933       11374  11303
#> 1108 c7fccdf9-dd52-4483-862b-d58a94560135    29302       11117  10702
#> 1109 39ee3bee-1177-49cd-a78b-7a790ffd0b84    24759        7214   6118
#> 1110 5486420b-b40c-4e7c-ab47-9d70b1673c3b    26680        8690   7838
#> 1111 4c52a12f-6745-468e-86d9-977ffa512c4b       NA       15264  56713
#> 1112 7b06a505-ea09-4f2a-adad-f0f1c9b3ebc9    31034       12800  48475
#> 1113 d22c6b00-da97-4ccf-ae49-f06405fccc3e    31022       12799  21702
#> 1114 8f36321c-c317-40ce-ae09-fca8694083b4    33212       15021  28668
#> 1115 f89332c7-decb-438a-bf7c-220d6c28e098    30338       11939  11980
#> 1116 08875a0a-0a3c-4fc1-b5f7-41d510503628    30309       11930  11951
#> 1117 994f3d7b-1f01-45fe-ba66-4d853d4b09fb       NA       15227     NA
#> 1118 8b1f53bc-d0c1-4fbb-8d7e-3ab7188132a3    31881       13761  26554
#> 1119 a1be5d02-d5c4-42f6-8749-7ac2ff2a6f09    33220       15025  87178
#> 1120 2a5cf817-b88d-4dc0-a8e2-bd6212aeb4e2    31109       12589  48873
#> 1121 6575474c-d106-406f-9b90-ef9b598a213d    29950       10942  11332
#> 1122 4ab9df5a-3e40-4402-9f68-bbc659a94784    31526       13170  48935
#> 1123 fae57441-a198-4674-8a37-401b64d17961    30257       12202  11899
#> 1124 e26bb68a-8987-40b6-a2d1-af013a13306a    32863       14613  28310
#> 1125 d97529e5-f1cd-4fe0-8697-4b51bbe52fd4    29241       10925  10641
#> 1126 cbbf7b76-cd26-462e-bc18-d80f5109723b    28522       10276   9567
#> 1127 78e57787-7682-44bf-9cb0-60afd0e9ea66       NA       15508  41530
#> 1128 22febe45-170a-4f01-b144-3b35b44c7da4    32819       14691  47339
#> 1129 e98ed960-2119-4811-b863-d086ef4e1ddf    28850       10758   9830
#> 1130 c8bbff7b-3b6e-413f-8945-24c01bfd84c5    33211       14437     NA
#> 1131 375b0d7f-8d03-4111-8c1b-62907f0326a1    31366       12775     NA
#> 1132 e0710cfd-f7fc-4514-a99d-f5144fce08a9       NA       15771     NA
#> 1133 c3e579cc-6693-47c4-91a9-b688935ae048    31048       12506  50884
#> 1134 f9a138e3-829d-442f-8345-43d1cdbac225    31006       12845  49684
#> 1135 73040fb2-2b26-444b-956e-df0927985bb2    31191       13000  38526
#> 1136 6bfc1107-7883-47db-85ef-3f8f24222a20    31372       12967  21605
#> 1137 6c338c70-42d9-4d35-bf87-04fe7e2f690a    31921       13782  50954
#> 1138 08765a08-c1cf-4065-81b3-67cbad7e0e17    32883       14799  34816
#> 1139 e653effc-2bdc-4bfe-bf3d-272e783ae4c4    31996       13984  94351
#> 1140 b0ad00bc-3b30-41ce-8892-f8105e0943e2    31205       13010  49834
#> 1141 8da0fe32-1758-44ed-9acf-21b3721cbd0d    29588       11414  10940
#> 1142 d3fee51d-67f5-413b-a4b2-bde86b97babe    30976       12503  12954
#> 1143 e550d0d9-2e56-4c71-8a9a-8a683daf32a3    31007       12937  46794
#> 1144 ec7404cc-ff2c-4afb-aebc-3cde1322d5de    30303       11821  11945
#> 1145 10bc7a15-0e66-4cdc-bec3-5a60b0b39159    26624        8727   7783
#> 1146 a3cf95a2-4994-4ee4-a07d-b27004183a6c    29310       10975  10710
#> 1147 8237c04f-a1c4-4c31-b5de-3afb3c81389f    30534       12390     NA
#> 1148 59f4acd0-971a-4470-ab8d-17900a4b128a       NA       15328  60555
#> 1149 d0b866b8-6221-492c-a80b-4a12bbd13e64    32795       14531     NA
#> 1150 e97f5ca9-186e-4346-ae65-1cd757ada455    28535        9706   9580
#> 1151 bcf6e7cb-0fc7-4301-93fd-6a9aa4806cfa    33229       14894     NA
#> 1152 e9a5c16b-4472-4be9-8030-3f77be7890cb    29236       10856  10636
#> 1153 3833681f-0164-4dbf-bfae-ea33115daafb       NA       15635  57189
#> 1154 ed5bcd2c-6335-4c0b-93b7-2116684a9b02    31074       12630  48103
#> 1155 925195a4-06ba-4e37-ae7d-a3d6a5419139    32711       14455  57488
#> 1156 413f7971-4d5b-496d-a11b-f623e9bc3b7c    30256       11765  11898
#> 1157 473a6858-7c99-4521-982b-fcbaacc00b74    30243       11787  11885
#> 1158 f1f4a350-cc5f-43a2-bde1-829058d6c338    33216       15022 105607
#> 1159 782c4f21-74b8-4fb1-b9a9-f908e4de81b1    31176       12998  46647
#> 1160 eac50030-7a34-11ec-b2e6-312b7e6900be       NA          NA     NA
#> 1161 bcc0167c-05fd-4b23-981e-60b8784ceb33       NA       15245  40630
#> 1162 6aed0540-7ec8-11ec-8905-19cf1c3e187f       NA       15869     NA
#> 1163 bd413539-9351-454e-9d61-4e8635d7e9f5    27299        9081   8520
#> 1164 8809c0dd-786b-4255-a7d0-333c9498c19a    30112       12196  12078
#> 1165 71c657d6-a2d9-48f3-b6db-dd4372e910f4    33007       14375  47286
#> 1166 59754f93-ff02-4f0f-844b-699b5e56f211       NA       15792     NA
#> 1167 2c73720a-702f-4f39-9b54-c4da9d9f632c    33214       14908  47033
#> 1168 be29caf2-9942-4e21-939a-a29407555c56    32882       14643  48329
#> 1169 db0c3b1c-8d18-435a-864a-cdd696f963b6    31891       13525  47940
#> 1170 18a3fb57-3220-4fa3-af42-20e179ec896f    33215       15020  84418
#> 1171 5c54defd-6f6d-4884-9fcb-80343d2d72d3    33027       14461  39931
#> 1172 40caae08-0389-4c59-b796-d924047f57f9    31073       12484  47698
#> 1173 f847b563-8a08-46ca-bb57-aee8431a87fd       NA       15570 143358
#> 1174 617269c1-88b3-45a6-b4a8-b2806a0cdaea    28547       10244   9592
#> 1175                                 <NA>    30839          NA     NA
#> 1176 f374262b-d642-4d05-9584-5955548ee4d1    32292       13854  91479
#> 1177 7fc949b6-a1cb-4f9d-a06d-b65773409a44    30502       11868  12303
#> 1178 b8426cea-f8b9-4061-8d56-e70d1230103e    25802        8098   7092
#> 1179 1aefd5e2-1f85-471a-91a5-4aad4cf6fe6d    32704       14378  29049
#> 1180 dd7640e6-d81d-4605-b900-451bf40e5bd6    30203       12015  11845
#> 1181 8dde622e-645e-4e89-85b1-a8aca7bdfd7e    32964       14875  47826
#> 1182 fad54673-1232-48fa-91b5-ab5f9e87781e       NA       15619  42903
#> 1183 095f659a-2aaa-4961-912c-66f337755787    32102       14036  51088
#> 1184 7ec05721-dba9-4e27-8cf0-92d626754624    27661        9612   8768
#> 1185 a887ad59-0e4b-4a9a-a7e4-cfd9f42fe7fb       NA       15359  83217
#> 1186 3db8b3b4-d3f5-4b35-bc19-ee56ec6d29da    31262       13040  50380
#> 1187 15a6249f-f4cf-47c2-8251-8a3a802b3db0    32827       14687  42544
#> 1188 b12174ec-fea9-4e05-b54f-c00e10920245    30321       11989  11963
#> 1189 65e778fa-4639-4973-bb82-c76efa2ff309    32105       13768  49268
#> 1190 250da6c8-2222-4438-9800-60d7bbb449d7       NA       15199  76641
#> 1191 9b80f314-0cd8-4a35-918f-a405b680e879    27180        9111   8220
#> 1192 039d817f-17a4-471d-8949-197335dcd1ad    32893       14829  76692
#> 1193 18f174c9-a956-4c14-bd23-9e799fef6dc7    30226       11994  11868
#> 1194 02c7bde8-3715-462e-a268-95b3f2e19311    30317       11927  11960
#> 1195 852b00dd-fd1c-4edb-809d-912a6472cd07    29278       10891  10678
#> 1196 3971d35c-17f6-400e-8970-86bbf92cc744    30999       12470  48753
#> 1197 56c81bc7-72ac-4356-a737-b8010f931b56    29297       11044  10697
#> 1198 8f5245fb-27ed-4a5d-93ea-ca354e670731       NA       15439  43427
#> 1199 dd7be5f3-c615-4621-92e1-2434519cb1f9    31839       13642  50235
#> 1200 36248cd5-f747-4960-b66a-a5d4f481e098    29920       11356  11341
#> 1201 887dc7b2-fb32-4126-be14-509b40424d34    30181       11942  11823
#> 1202 c9bbb2aa-f044-400b-9f09-5321604a3b79    26887        8723   8159
#> 1203 96d75855-2d83-4e13-b395-846d6aaaadec    32973       14722  27300
#> 1204 7f911008-146b-43e9-a292-9ad90c621087    28420       10058   9465
#> 1205 a94f0507-44b0-4fb5-9e8c-fd21157ec1a6    32743       14714  28072
#> 1206 79a2bcb9-b390-4486-b64a-db81b246bf68       NA       15421  56913
#> 1207 57cec700-8671-4865-9174-a2a33e558702       NA          NA     NA
#> 1208 f0c7de3c-9e8b-4c3d-b42f-985f29ce163f    32174       14189     NA
#> 1209 6a2ee9da-4df9-4486-8060-8362a20bbb40    32911       14755  38876
#> 1210 dd7218be-5eaa-4d51-94f8-a9f68d2f0af9    32810       14747  51048
#> 1211 4d094a58-1cbe-4ede-abaa-cd2f1a492f0d    32083       13831  30076
#> 1212 96c822e6-5484-476b-8ab0-64b3cff791ef    28515       10374   9560
#> 1213 4688d4e5-bbea-41c9-8a6a-c06bc34ac7b4    29111       10835  10140
#> 1214 1cc3eb84-9087-4d8d-9136-2f84712bddf8       NA       15392     NA
#> 1215 74439c42-a6db-4a9a-be25-559f3e03ef59    32690       14523  57945
#> 1216 5ca7e14d-40e0-4074-94c7-51c2f6e2daaf       NA       15647     NA
#> 1217 86e5c278-2cd6-4633-ba0b-bc5e7a1c1372    33159       14852     NA
#> 1218 66e776e7-f354-4939-835b-a23dc889c6ae    29270       11064  10670
#> 1219 fb18e325-eab9-459f-a559-b482894eb0f5    33129       14956  34710
#> 1220 62ae1c72-f5ef-4c45-bac9-aac5569b034c    27880        9971   9257
#> 1221 53b64223-ded9-41c1-9d2b-a8c2de8963d0    32786       14544  84236
#> 1222 56657521-aabb-4c6b-a6d1-9b809e6495b6    28455       10267   9500
#> 1223 b90a3e2a-66fb-4b1a-a6de-7482fbe2d1b2    27942        9449   9126
#> 1224 f5eaf900-592e-4a3a-8514-4426dce7d3c3    27621        9443   8728
#> 1225 3fa9a860-a1ee-4355-ab3e-ba81490a4385    31269       12687  29035
#> 1226 ca8b966f-3c0b-4219-a28d-0c020c365ff4    31099       12635  46980
#> 1227 c9dcada0-7f61-48af-84fc-d147a31c60e6    33145       14959  41855
#> 1228 a7f7153a-c574-4f57-a8cb-760aba8eb629    30147       11815  11789
#> 1229 8f07843a-6f68-409e-8cdf-1207f521b12a    31867       13480  41665
#> 1230 8301d82b-0ad1-4988-a978-2925e2ae9377    31216       13013  29214
#> 1231 5067e5ee-bae8-411e-bc05-011a88a3d954    31142       12822  38809
#> 1232 c81ae6df-f87f-4197-b68f-a460321b48b4    32859       14562  17287
#> 1233 aaa8b42c-4d87-45f6-bfd2-e31cfed9a736       NA       15357  77632
#> 1234 6608fdbf-6c93-47cc-ad44-9da2fda598ce    30217       11833  11859
#> 1235 ce079a73-5884-4184-909a-8feafd4645d9    31972       13473  45810
#> 1236 bc43e18a-c2f9-4e49-a90c-41a95cffa736    33123       14773  45980
#> 1237 3a29784c-832f-4e41-a4ac-71d4f9ad410c    27585        9516   8692
#> 1238 970693f0-0af4-4627-ac0c-bf519f7433ee       NA       15385  57185
#> 1239 5fc196a1-2015-49c7-85b2-1adbd2c33cf5    33138       14660  22425
#> 1240 47b995cb-8e6f-49ef-a6a9-4ba8cd649c78       NA       15367  83684
#> 1241 42b57148-fc06-4aee-b40b-bb941271b5b7    30860       11768  12329
#> 1242 590c9b25-25d4-447e-afa2-1284c95e17a9       NA       15190  52287
#> 1243 86533fa3-a5f5-41c7-9942-e33ba6b5c18c       NA          NA  46235
#> 1244 096f3b4f-34cc-448f-9fb1-9a7f30a1ecdc    33181       15168  82001
#> 1245 e5c6b0d4-3e77-422b-a6d8-574a10ed385e    28561       10249   9606
#> 1246 8a1f0e8e-6521-4a94-9934-ad4f76a25fd9       NA       15566  42353
#> 1247 7c7b5515-7786-4e24-9ce0-34e6a8bd5727    28365       10033  10211
#> 1248 d479a777-b53b-4bbf-a8e4-0c1675ac48df    30891       12276  51842
#> 1249 a96e777e-120a-4843-8bfb-59069bd1bd52    31918       13478  37213
#> 1250 ad2a1d03-020b-487a-bd5f-7ca9fbc250fe    30661       12271  12051
#> 1251 a0498a95-9dc3-4df5-8f51-a1564fb3de57    29978       11213  11371
#> 1252 c871b3a8-72c4-425e-a357-2de37e033c8d    30278       12205  11920
#> 1253 fc36fcb2-0125-42c4-a8b4-0a2ca9c15ef3    32069       13619  47946
#> 1254 1a2fbc23-e6db-4d2f-a152-2c774341b7c4    25876        8223   7158
#> 1255 2b0e3931-07d2-4b03-9b28-489258465ac2    32978       14922  84213
#> 1256 32494eca-34f8-4d7f-88ee-e3319128e8e0    33127       14784  40293
#> 1257 2e0badcd-b78c-40ee-a83b-a1bbb36bc545    29257       10739  10657
#> 1258 502b3a6c-e965-478a-858e-964b4ac2296c    26631        8793   7789
#> 1259 131d3b1a-5746-499e-98ee-4bbf67cd377e    32712       14358  61220
#> 1260 c2a7bd8a-d141-423a-8810-0988a59ff0b4    31031       12820  47702
#> 1261 b4dadef6-a938-4b34-b83c-b64d4a297e02       NA       15464     NA
#> 1262 1f181c47-ad84-4758-a295-4c4f5c56120f    31000       12590  34057
#> 1263 92b059b3-6b1b-4db4-a535-ceba629176d1    32808       14688  40588
#> 1264 a76eb878-71ee-418e-a46f-b35f6950aa95    32033       13703  49329
#> 1265 bb5e3914-d941-4f05-8c45-bc9c520490ef    31359       13017  49368
#> 1266 04f6abef-834f-470e-9c15-8c0cc62fde4e    31293       13257  43034
#> 1267 02d1b3c3-f292-4174-89fa-9ecc6286adb0    31862       13475  33356
#> 1268 83b719f1-e6ac-4611-8235-c2f6bd198fa3       NA       15713  56307
#> 1269 73ec5a10-dd68-448e-938f-25021cbc3004    31895       13824  50426
#> 1270 046b6d1f-cc56-486c-8d45-45b3a150b141    31094       12781  51264
#> 1271 0a47c250-8857-11ec-a871-09dd6a6e826e       NA          NA     NA
#> 1272 d1e46e40-5e8c-4b5a-ae03-5d0093b98633    28036        9680   9253
#> 1273 6fd330e6-8cab-4351-b9e8-bc6ffb125b1c       NA       15711  34622
#> 1274 475db95a-f1d0-4bd2-8974-9e5d71d91412       NA       15712  42913
#> 1275 8c8b7d6e-6ed8-4a10-8ae9-b50300bd766b    26692        8593   7850
#> 1276 fbf2dd5f-b324-424d-8cd3-335b0d695c6a    31015       12530  50417
#> 1277 b200f413-296d-49f3-9ef2-f60e21c2f5fd    26726        8656   7885
#> 1278 8d70fb9f-48a2-4c2b-a4c5-50b233ff0710       NA       15588  56353
#> 1279 490c15eb-accc-4441-be7d-c7114e1e42fc    28451       10322   9496
#> 1280 e93e7aee-b38f-43d1-ab96-6eeb7c6f1392    29460       11241  10860
#> 1281 9e9d2934-a273-4e39-a413-d991d083297b    32847       14823  48415
#> 1282 96d1c6e6-a450-476e-987b-c1e469c43f1b       NA       15361     NA
#> 1283 17206178-c048-47ed-9f79-9f4c5efd607b    33052       14997  89210
#> 1284 757c55e1-2f3a-41d2-a211-16bf577a1586    31916       13746  31534
#> 1285 67760ee1-c969-488f-b449-b8c37e7e32bb    29356       10907  10756
#> 1286 632a8382-27d6-45ae-b3d2-a37157e09ab7    32952       15077  40292
#> 1287 c02b49d3-ddc1-4ffc-9f40-487199882fa5    29289       11217  10683
#> 1288 6ee96e28-60b0-4e30-b014-6962e7d1c3db    32074       13706  38524
#> 1289 a1182eb3-26cb-4d34-b29a-df673973f08b    31045       12971  49970
#> 1290 ef7b5ce8-a929-46be-b9f3-328752c6d125    29271       11074  10671
#> 1291 80715ecf-ffc9-4a93-a305-2193451b3382    28556       10468   9601
#> 1292 725011ba-b505-4658-a2b1-5d41f941223e    30518       12609  12333
#> 1293 806f81d1-6d4b-465c-8a16-b1a767c30fb0    32048       13682  39268
#> 1294 4ceb866c-8eaf-49b5-9043-56228e43a2e5    30346       11783  11988
#> 1295 aafe4b32-1a8f-4691-9702-3141c14ff5c8    31070       12847  51487
#> 1296 12645147-c0fa-4aff-a395-496f8b9fb275    29309       10933  10709
#> 1297 9b2d5497-738b-47bc-bd96-2c550b4649ee    32733       14520  57987
#> 1298 2cae991f-878e-434e-9f76-fad263fad23c    25728        8133   7024
#> 1299 919cdf12-3811-49d1-a7a5-65ff29a59434    27647        9643   8754
#> 1300 46689e7b-4a03-463b-9978-1496ab89313e    31495       13179  51099
#> 1301 fa443b6d-6d31-4030-9afa-b223f08b03d7    32359       14180  29188
#> 1302 83ad043c-d1e6-45b3-9e06-3f148538db46       NA       15286  81322
#> 1303 996a0607-8046-46c2-97a0-b94ff9f5a1c8    27494       10606   8580
#> 1304 9e324b1e-b03b-44cc-83b5-1d483b4051e8    31724       12703     NA
#> 1305 8e6af99d-a697-4be5-ae7f-f1ddc12bd15a    26643        8731   7801
#> 1306 a5a9fe33-3879-485e-8d9a-212d295133bd       NA       15431  59996
#> 1307 a829e280-38b4-41fc-a46e-a5c8034dafd2    32766       14534  47004
#> 1308 382bf27a-8afb-4ffe-b7b8-9a960b98049a       NA       15438  62960
#> 1309 eb6c7e5d-987f-480d-9618-43f56e0b565f    29482       10909  10882
#> 1310 4ee0937c-1250-4456-93d4-2d6afa064d5a    29312       10960  10712
#> 1311 24c28a64-43b0-4855-a9e7-c46c7b30c15d    32951       14695  36957
#> 1312 edfc712a-54f7-4c34-a838-c50c14dbf7dc    32960       14574  33007
#> 1313 11cad59d-90dd-449c-a839-dddaba4fe16c    30123       11839  11765
#> 1314 f55053e4-4bfd-495d-981a-d62e3662f01b     8834        5685   4371
#> 1315 d7c63db7-dfe8-4cd6-a684-90342d12fa26       NA       15262  12659
#> 1316 f77479d7-51a5-41f9-8924-69526dd078cd    27624        9529   8731
#> 1317 13ade86a-20c7-48fe-9d18-b3bfc135f5e9    30301       11766  11943
#> 1318 21b65d27-e517-4301-8a08-584f73226de8    32630       14334  32342
#> 1319 c2a19a09-74a2-4ace-8cc3-6dfb65070a70    31500       12839  13014
#> 1320 8aa01565-4481-443a-9951-642c98ded113    32702       14514  57279
#> 1321 776e4a24-08d7-46f4-a713-d384cd567f21    25983        9180   7431
#> 1322 fa7465d1-4d84-452f-97c4-cdc14c607a34    30273       11800  11915
#> 1323 9d699fbc-ce11-4e42-a9b1-c94ecee8f613    31053       12557  46227
#> 1324 7df12cd9-5890-4a9d-b78d-0987de2cd804    32880       14449  44820
#> 1325 bb7a78a0-def1-4e82-b04c-15236810229a       NA       15767     NA
#> 1326 380b6bd1-1ef3-4cc2-bf3f-c992ba1151e7       NA       15203  52008
#> 1327 c97dfcb6-b999-476f-8487-f3848e92df17       NA       15459  60878
#> 1328 c3859e06-5f23-4302-a71b-04820a899d5f    26686        8783   7844
#> 1329 a01ffd42-5fdb-42f8-95ab-157025e3fba8    32600       14306  94384
#> 1330 789c00d3-a9e2-47fb-9a8f-45af1fe39fbe    33031       15110     NA
#> 1331 0cc4e449-185a-4b08-9f07-c907ad0c3e05    28505       10248   9550
#> 1332 2e0b66c0-0c32-11ec-b47b-ad6de152e0ae       NA       15798     NA
#> 1333 46b16198-116f-4913-85db-2bc21462bd66    29360       11163  10760
#> 1334 bc25629f-1501-4f58-ae46-c6cf502a4b13       NA       15446  40689
#> 1335 fe6dc768-d576-476c-b150-53b85af2a1d1    31888       13532  42683
#> 1336 5226f6a9-a6af-45f9-93ec-669542f3cfc9    31129       12672  48181
#> 1337                                 <NA>       NA          NA     NA
#> 1338 5727f7d5-35a6-4ad9-a96a-8408f8a84bd3    30679       12184  12163
#> 1339 b228c353-bb1f-4ba8-aa6d-d18ecf297259    26561        8415   7618
#> 1340 9e55ec9a-ce18-4b4b-b69f-e2d82c219846    31496       12504  42345
#> 1341 01d8aee3-e1c4-4988-970a-8c0c2d08bd83    29399       11222  10799
#> 1342 11b9bcde-b2c8-412b-9689-4420182ca928    30682       12446  12137
#> 1343 bdb77276-7191-4454-85c2-e1693a33d709    31114       12746  66915
#> 1344 57bda6af-7324-4e96-a207-525501224c41    31911       13508  27377
#> 1345 da918fe0-eb5d-42c7-b952-2f5da5197c20    29846       11528  11242
#> 1346 ca53fda9-d20a-4bc7-b8dc-deef28355399    29239       11111  10639
#> 1347 a40a9b55-7850-4572-8197-f57a5354f921    31422       13132  55724
#> 1348 65a08ef1-9b9e-4863-bfa0-38d70472ba4b    33264       15777     NA
#> 1349 170d9d12-0595-4636-9b42-822ff93a6d94       NA       15443  33693
#> 1350 8532ebe4-1d3f-422f-8579-a683900c9c6b       NA       15733     NA
#> 1351 4d383922-53ab-48f8-bb8a-29176ea3ffbc    32075       13958  49012
#> 1352 c72cb618-fb6b-4327-8ced-91088c936c81    32869       14698  45326
#> 1353 90434aff-bd29-44be-8e76-056e412a9624    29653       11316  11050
#> 1354 1cccc54a-c168-4359-bfbc-30556db0ca73    31893       13507  51172
#> 1355 66dbd211-6835-4c06-9e4d-9f74cffac250    31555       12675  50473
#> 1356 60871327-0349-4246-8996-4a594addd8cf    32868       14595  49751
#> 1357 e22127ac-1bc7-4f68-bc34-6e20f82a4c24    32603       14310  49103
#> 1358 74761bca-f09c-4a06-8dd4-5f3cf2a2b897    33058       14999  43958
#> 1359 e1754596-4764-4686-8359-dc53fdabbd1d    29430       11231  10830
#> 1360 b222de39-0a5e-4bbe-b239-083a500194bb    32774       14702  45255
#> 1361 aee4f924-aaf5-4351-b503-9fce1ade59c5    32589       14297  50513
#> 1362 d92a275a-a102-4768-965b-60fffe155288    33263       14980  44597
#> 1363 58643249-5d94-48a2-8ea2-13cab4ca2a89       NA       15616  56428
#> 1364 724c3e97-bd2a-4d48-850e-352829e51708    31966       13802  48706
#> 1365 21c60b9f-98f3-4b6f-8911-89aba2622347    31165       12993  49935
#> 1366 8bb5c7ef-e7be-4015-8874-2f0982286acc    27541        9391   8648
#> 1367 3f44e069-a9c7-40dc-bfa9-cd403ee9cdbd    29280       11162  10680
#> 1368 17bb3390-5232-402b-b229-c478b22dd200       NA       15591  82429
#> 1369 073d1bf8-7a0e-4c2f-b890-dbbd47978737    33252       15087 108840
#> 1370 7e4f9b27-edc4-4f5c-b77a-81604220a454    32130       14014  38540
#> 1371 26138e8b-b776-492a-9684-b1c07e51b25c     8291        5370   3653
#> 1372                                 <NA>    30372          NA     NA
#> 1373 d58166e2-24ee-4dd2-ae22-36b05634eb6d    31643       13526     NA
#> 1374 2b90e091-ef78-4753-93eb-0acf3632c206    31977       13673     NA
#> 1375 2ceadd29-bdc5-4143-b4a7-0533050e0f53       NA       15628 136106
#> 1376 d0412c6f-ac97-420c-a9e2-1ca587c480b2    32135       14013  38268
#> 1377 42c12021-abf6-40fa-b989-7ea52d0e7070       NA       15228  81399
#> 1378 eacc232b-701d-4a67-9ce5-61b9b931fd42    31130       12788  50130
#> 1379 13c4b449-65e4-4a3e-9152-85e9cbb2b8c6    29243       11034  10643
#> 1380 cc9528c4-3a18-4d3f-8d8f-cfef4dcd2d38    24789        7421   6154
#> 1381 210bfe87-1c9c-48c3-951c-81aef4b2c763    31988       13773  48498
#> 1382 49abd11f-fe2b-4d15-99ed-f316d2ec67e1    33261       15090     NA
#> 1383 00cc0e57-b433-42e3-bc18-f7c4bc941a7f       NA       15208  58187
#> 1384 a0ebc174-02ad-4bf4-8c0f-517d04a29a95    32754       14390  42845
#> 1385 7874842b-9b5f-4307-81cd-37f48e981e9f    31201       13008  50959
#> 1386 56b26b71-8f1e-416c-a7e5-62cd67c98f4b    32306       14127  94369
#> 1387 12f55b0f-17a3-495c-9654-fe53f4c20716    26979        8904   8043
#> 1388 5fb654f3-cc56-42ab-842a-5eb8c3cf8999    31162       12890  31982
#> 1389 ff826814-d167-4337-a9a5-9d0ac09ccd6e    31390       13413  46167
#> 1390 d24f72af-88e3-46d0-b132-1fe77e5c893b    31059       12848  46249
#> 1391 ec810fdb-ae6f-49ad-9538-31d1e6dfa578    28445       10270   9490
#> 1392 8ef99bbe-602c-4796-aa04-833f357991ba    32126       14016  13976
#> 1393 b7a0f6d0-af4f-4134-8382-c59c4283576e    32001       13497  35941
#> 1394 e564d902-3387-40ac-9428-774e367a3f4d       NA          NA     NA
#> 1395 9290324b-eb17-423b-8019-e5d26839fd45    31003       12853  46290
#> 1396 14ab97c3-4ace-4bb6-99de-3b22dcf610fe    32920       14606  41813
#> 1397 f1ce3e7d-6afc-4db4-94f0-475bd63507b3     7804        5005   3000
#> 1398 9e885643-3f46-49f4-94e9-714a3b1f586b    31393       12701  39316
#> 1399 65b9a754-40b9-446b-b9c0-b2dee46ba3f6    31929       13574  36800
#> 1400 13c216ca-a01a-46a8-98fa-4fd1d70cbf00       NA       15456  40972
#> 1401 ad9a0044-67f0-4303-ab38-a8459e32a9cb    31081       12656  46104
#> 1402 61980614-1609-4b68-b11f-05aa30fefb89    33149       14954     NA
#> 1403 380435a9-1833-4381-a12b-498a43732798    26350        8381   7252
#> 1404 2ab1b694-1013-4661-85d4-55415d3b147f    31803       13403  46454
#> 1405 ade43b1a-0601-4672-83b6-d246bc066a19     9265        5971   4924
#> 1406 da837572-0558-4946-9af4-aeb11582cca8    33258       14429  35299
#> 1407 1376da0d-0448-4a37-bd99-842c4580eeda    31001       12880  27589
#> 1408 74980532-8158-4b56-91db-5053878737b4    32722       14383  57206
#> 1409 7f5c931b-4ebd-4309-a1d2-e04a5cf782e8    31537       13185  12888
#> 1410 748d5fdf-8a06-4cc1-a8b1-257f4377236a    32915       14625  45828
#> 1411 380c4d9b-d4c8-456c-ba50-25519edde899    31902       13450  41193
#> 1412 5c4763e0-656f-4d97-b72e-7939c2610558       NA       15207     NA
#> 1413 8da63045-f139-4422-9bd7-efe46c7fcf13       NA       15285  45835
#> 1414 39cb1520-dda8-4167-95c4-4947c8383bc4    32806       14586  47338
#> 1415 bdbb1693-3509-494c-8308-ae26a415fc96       NA       15322  34255
#> 1416 0df7912d-9e81-47ea-b4f7-d04986df4ee8    29344       10854  10744
#> 1417 3a337668-7978-4310-b17c-8e1279ba4a4d    33044       14377  36419
#> 1418 b5e95ece-3b71-439b-b7b4-ae102f9e7c08    32125       13711  47311
#> 1419 6414998b-5831-44aa-8bd8-39e42a323c2c    30373       12316  12206
#> 1420 618bedee-9259-4536-b0ff-fec98d2a20de    26664        8628   7822
#> 1421 cdfce34c-8220-4074-9ea3-70c5593cd38b       NA       15731  42212
#> 1422 5521ba64-e615-4d50-b9bf-490498571ac7       NA       15467  27948
#> 1423 354dec38-b88b-4ba0-8974-859123f27c45    27540        9255   8647
#> 1424 7f39a9fe-319b-48e4-8882-ac817ed8ce30       NA       15173  52050
#> 1425 8e1285f7-6e4c-41e4-aac9-92e09f9f32b2    32727       14430  47447
#> 1426 ccf4746d-903a-4d51-8874-30953a304a84    33254       14926  47918
#> 1427 2806e915-c46f-492f-8a29-71d3a85e5620    30182       11863  11824
#> 1428 5ec01774-4a79-40aa-be4a-e33c71bd5bf4    31641       13036  48036
#> 1429 7dc49535-f9dd-44b0-94f2-08ac6470130b       NA       15229  77965
#> 1430 8a55e15e-9385-4648-8123-bc5f50f6b304    27689        9702   8796
#> 1431 9e82eb73-21f0-469a-ac85-b4fde70a6a4e    32542       14307  56123
#> 1432 68b3f7e5-cc33-41e1-833c-8f48cb70bf72    31810       13555  91247
#> 1433 02b08a8b-a3bd-44d1-8930-e6f51b029a22       NA       15218  76625
#> 1434 479b4819-3377-4255-9156-c1ce82cbf1d4    29342       11178  10742
#> 1435 86099301-67d0-4370-8e42-d14f34bbbb91    30422       12357  12040
#> 1436 45c926b6-0f2f-4d29-b806-d21e4ea89ba2    31121       12726  37492
#> 1437 de185684-3a02-4e63-b2b1-405e562b3a77    25189        7924   6457
#> 1438 279be739-bfd5-47aa-8302-fc58bcba37d5    31892       13668  33880
#> 1439 d89b689d-8095-4c08-8ebc-008d9c3bf41e       NA       15763  51269
#> 1440 f3a7ab39-ead2-4dbf-b760-d652b8a26853    32856       14521  41662
#> 1441 fb888bc6-7899-4fbc-b520-52bad1547ee5       NA       15433  61274
#> 1442 bfdeb053-b503-4f35-968b-78d8a9997473    31381       12684  49154
#> 1443 01c52412-7257-4213-b8b3-effa7c5dd5c7    30987       12464  51368
#> 1444 60c63a9a-f44c-4f12-b724-f65bcb8cce77    32503       13851  38297
#> 1445 bab100c6-1a6c-4411-9286-f719244f5d35    32982       15065  27949
#> 1446 9da6119d-b135-4b90-9f9d-7d08ab00b15d    31860       13757  49949
#> 1447 6c48b2a7-924e-43ec-bcd9-f1cda06b2332    24021        6681   5571
#> 1448 efe64fc8-9987-4fe6-b7a4-e2ff363cf443    28604       10333   9649
#> 1449 1a8230ec-fc21-4aff-9624-0f87add5f952       NA       15609     NA
#> 1450 c82a3f67-90b7-4cc8-ac3b-e6cf469cc541    31054       12785  48940
#> 1451 aa82ed23-934e-451f-ac47-65c63a84bf16    27686        9395   8793
#> 1452 0df7834e-6373-4f30-9935-5c05d28e752d    31128       12865  49636
#> 1453 538cf938-8f65-435f-b8fd-2856ce5c4e6d    32987       15093  40117
#> 1454 d46e3db5-f89f-4211-b8a7-baeb1a35df46    26764        8730   7923
#> 1455 4c751137-cb2f-4399-9e5f-1cec4b59611b    28194        9677   9289
#> 1456 65bfa813-7bcb-461e-8716-7072e4705ad1    31488       13175  46904
#> 1457 058c99fc-470c-4579-a165-03e043335cc1    26800        8896     NA
#> 1458 cefd0600-93f2-4e0f-9624-81e3dc495c1d    31808       13496     NA
#> 1459 d468dfe5-8ad2-4c8b-b7ba-0962316a2156    31962       13814  51276
#> 1460 dcbf373f-7336-457f-888f-02596a391d89       NA       15311  56345
#> 1461 1ce88c74-024e-4288-94ee-5dca10362153    29237       10914  10637
#> 1462 c0ef478c-d387-40ac-b35d-4bc034f24a12       NA       15378  42449
#> 1463 c6303f3b-9c18-4afe-b0bf-d8270ca9db21    31089       12787  44485
#> 1464 79bf0ca5-a8db-4c39-a40b-67674ccb60d0    32693       14434  58099
#> 1465 4f845d14-46aa-4748-bd7f-5fadec6a3199       NA       15784 143811
#> 1466 40941261-cfd0-4e8d-b895-21fb7e20b407    31018       12844  50084
#> 1467 ae372a9d-6f85-4e37-a910-47fd77483ebc    32977       15080  43856
#> 1468 c5e24b59-cafa-4174-b5dc-e02f5934fb2d    32032       13855  45378
#> 1469 30bfd566-e867-4ee7-bf19-d36794ed39f1       NA       15603  43500
#> 1470 d073c3c0-b9b0-4382-84d0-5de88a427ad6    29322       11030  10722
#> 1471 77c36756-9d3a-4746-bba1-8ff32542cf74     9803        8517   6979
#> 1472 e735b2ad-8c89-450b-8241-3f602016b897    32980       15081  49589
#> 1473 b04382c6-7138-4dd4-8ad8-3e10ce8403aa    31125       12797  23918
#> 1474 0a821a41-cff9-4b6d-9140-301a09edf895    25861        8305   7144
#> 1475 c30928f5-eef3-4aa8-be16-fa5d960b955b       NA       15554  59909
#> 1476 2b129eab-b967-4d0d-bc6e-28c0781bcdd3    28861       10849   9728
#> 1477 0045a36c-f464-49e0-a25a-9210edc94bc1     9678        6162   5214
#> 1478 af291d43-a51f-44ce-b8ac-430ec68c78c8    31998       13627  29466
#> 1479 f0a8f8e3-b9e9-46ed-85e4-eec6452a8a44    32676       14446  28237
#> 1480 62542e04-3c44-4b75-8165-be674c8be75f    32782       14494  13750
#> 1481 e5b8c439-a48a-4f83-b63b-1a4d30e04cd3    30423       12401  12164
#> 1482 21e671a3-1260-4e1a-954c-005a290cf06b       NA       15432  57308
#> 1483 e6c3f896-0223-4fc2-be09-c959ea4a475c    31221       12724  29539
#> 1484 72c54860-db73-4fe1-bbf7-8fe1413c0952       NA       15177  59971
#> 1485 cb3ce7d5-ab02-4a97-b165-1c62ad497727       NA          NA     NA
#> 1486 42931961-6deb-4e33-bbe9-bf8f77d29da0    31923       13659  91462
#> 1487 3d169c3f-93fe-44b5-8495-681241f285bb    30772       12437  12188
#> 1488 2f80e90d-dbff-4395-81c9-4e61c247d0f1    23998        6540   5548
#> 1489 305c4a34-6428-418e-adf6-09f60e83c674    27623        9426   8730
#> 1490 d6e66d88-b014-4de0-84af-45358dc4bda0       NA       15765  42701
#> 1491 2ac90a86-c585-4c12-894d-a805a0c94cc3       NA       15252  60896
#> 1492 4f246e92-3d21-450f-977a-dc16892c7238    32456       13602  91014
#> 1493 3b7a1409-d154-4e5c-8c94-9d4a0e0993c7     9353        5981   5012
#> 1494 5cb0bf9c-03b4-4201-97c5-a59c6db50841    29789       10885  11160
#> 1495 7c9e5221-50be-4c58-89f9-aa61cf67ed25    32944       14943     NA
#> 1496 8346e196-ce56-4cfd-8438-f3c39131b327    32547       13999  91472
#> 1497 5f424505-f29f-433c-b3f2-1a143a04a010    26699        8627   7857
#> 1498 a42da2a1-42c0-4d45-85f0-ab5c9af37e6f    32890       14414  28025
#> 1499 857fcc59-10e8-4194-bd7d-41bc5f72a47f       NA       15447  62979
#> 1500 ec7af934-a7f3-40f5-9fc0-210022dd6180       NA       15786     NA
#> 1501 4c449f2b-a566-4c9c-882c-a70991d1aa54    32821       14428  40221
#> 1502 ae9495b2-4c62-4e14-8e43-beb53e1ae28a    32201       13575  34164
#> 1503 12f27311-7cd6-4ca5-ba7d-571e9de5e1eb    30120       11885  11762
#> 1504 9691f874-be36-4529-a7eb-dde22ee4a848    24063        6506   5612
#> 1505 20a45a8e-a917-439d-ba28-33b84ab2401e    32345       13652  47058
#> 1506 bbf8d4d6-8f5d-4847-ad1e-0d205d38f0c5    29283       11126  10684
#> 1507 264d21d1-1bd8-4ce4-975a-4adc56f06928       NA          NA  41179
#> 1508 e94ac14d-0122-4dc8-ad20-b71226cb8cfe    32348       13701  56167
#> 1509 b34aa9fb-3f93-481b-8f68-7330c39e6e20       NA       15387  55948
#> 1510 e11ce848-c797-460b-bb46-6b9ceae48542    31676       12669  50564
#> 1511 23525664-b547-413b-9221-b09091b90edf    32809       14709  55619
#> 1512 c5e92aff-ce1e-4ce0-b838-6149f8ce875f    31872       13572  41968
#> 1513 a278c39e-7d4d-48c2-8145-2f8ad882ebeb    25772        8172   7064
#> 1514 f14e6b34-3c77-44e7-bc9c-6c691d3fe46b    26645        8641   7803
#> 1515 120bb81f-08e5-493a-ab96-c7a65bb110ec       NA       15676     NA
#> 1516 dba7bc1b-c414-404a-8845-4b0245df64a9    32552       14267  51405
#> 1517 a6493c08-f70e-4aef-ab07-914625b9c047    29446       11036  10846
#> 1518 c8f74b89-065c-4857-be4e-4fcf897a5bc0       NA       15340  77847
#> 1519 959bc1bc-f0f4-4f57-8d9a-3325344781ca       NA       15473  60692
#> 1520 d5a270bd-6f41-4637-ae09-d5534f1a4d3e    31671       12906  49255
#> 1521 c281fdc7-76a9-4734-a13d-19ad354c67db    31723       13318  49120
#> 1522 198b8c48-abe7-4fcb-9aea-6519fa650b18    32055       13547  49407
#> 1523 26b6ac3e-facf-48eb-ae5b-afd30b2544b2    31859       13546  34646
#> 1524 06a67b3c-d482-4767-b2ce-49edd8777525    29876       11362  11218
#> 1525 f2f71ec1-cc13-4215-aa5d-1948c42c6b28    31134       12722  50440
#> 1526 ed2317f2-1cc5-4a84-a46e-7423a9a1c730    29299       11142  10699
#> 1527 5ec1f072-8ce0-449d-bbc0-5e8160836007    32024       13755  56503
#> 1528 108759bf-8c78-41c6-a409-b87c63985c21    31836       13649  25955
#> 1529 83436be9-f646-4cb6-94e0-99a939298e3f       NA       15303  55015
#> 1530 41524c86-8ab6-42e9-871b-a00e29cd2705    29303       11146  10703
#> 1531 0cd46b5f-5397-4947-9331-8d3420af7852    31420       14560  48993
#> 1532 3ae55cda-ad32-46c5-bde7-470755f37f3a    31938       13459  26316
#> 1533 461b76db-dbf6-44c1-8cfa-a3c3edb100fd    32031       13818  50228
#> 1534 c187d2b3-5d96-4035-a166-db6689b463bf    29381       11069  10781
#> 1535 61b04d13-ebdb-49eb-9f5a-ea85355d6360    28580       10330   9625
#> 1536 9d53adf2-4c3f-48a4-b7f8-6bb7f207c1f8    26672        8669   7830
#> 1537 74473bcc-5bdb-4650-8549-8a8a12874cbf    30116       11945  11758
#> 1538 344f10b9-b272-4f2f-8d1e-468f38f59f5e    32061       13573  36493
#> 1539 d2d8345f-8eaf-4f61-8df8-df6e808b6aec    23978        6583   5528
#> 1540 50ffb7df-ae23-4211-a495-3beac62a6522    32007       13462  27832
#> 1541 7ade135c-0760-4548-b7d9-cf1174e2be33    32344       13806  34934
#> 1542 9294afec-7804-41ba-b948-51a213705abb    28643       10512   9688
#> 1543                                 <NA>    30636          NA     NA
#> 1544 58b30f9c-384f-4e36-9e79-d4442ce8bb31     7257        4532   2298
#> 1545 c34c65c7-541a-4f33-8473-beb11e3b43ad    32341       14114  46085
#> 1546 704cc12d-78b1-482a-bd2e-06dc9a633ceb    30634       12105  46744
#> 1547 55fe8587-9190-4ad9-8517-fcb330341ed3    32779       14626  41715
#> 1548 7bb70550-c28a-4e47-9a13-cc0c0fef8b38    31137       12842  28121
#> 1549 c008f3d4-7141-4d58-aa63-cb86088b0c0b    29098       10646  10065
#> 1550 7c1a8ecd-e3e5-4123-b89f-36e58b99126f    30633       12428  51674
#> 1551 a5111f5d-0b0c-4745-874c-672904200c32    29758       11311  11100
#> 1552 6e16ec27-2cd9-49b6-848a-df17d654683d    29347       11098  10747
#> 1553 385953af-6b16-42b8-9a58-23fd8d50d935    29718       11113  11190
#> 1554 cdbaf089-9c7e-418f-829e-d903c28b2628    25823        8224   7113
#> 1555 9fc6e49f-c863-419d-9dca-8f0da3f3c9c7    28436       10356   9481
#> 1556 f50ae8f1-aebd-4e3d-bbf9-f92921044e72       NA       15472  42208
#> 1557 99e9c388-c562-40d4-b225-e99c57cb55ba    30281       11975  11923
#> 1558 93ff0e6f-fee3-41d1-a913-6111cd9ebef1    24886        7483   6251
#> 1559 378df3b9-0a5c-4d68-a173-79bc0df07a66    31251       13128  27036
#> 1560 9240e2e7-b6dc-4498-9abd-eb79a1df5462    32160       13467  37023
#> 1561 9dd63f16-866c-443a-856b-671913195f3d    28454       10291   9499
#> 1562 24c73eb0-7260-46cb-820d-7a64c71e499a       NA          NA  60235
#> 1563 df94ce97-af26-4f12-be2d-14779270e670    30272       11792  11914
#> 1564 1c435ae4-8e29-4006-905b-7fa34f87604b    28459       10274   9504
#> 1565 eac6612e-0eab-4a65-9057-60fc95d9ca3a    33326       15145     NA
#> 1566 36f93677-a95b-4362-ac5f-6722f5c05b6d    32386       14171  36038
#> 1567 9f026fc0-4449-4dc5-a226-2e2830619381    27564        9317   8671
#> 1568 4e4ba1f9-35c6-4e41-85f5-d8f12d32f459    30284       11840  11926
#> 1569 7c16c04c-04de-41f3-ac16-ad6a9435e3f7    28390       10074   9435
#> 1570 61694ab9-b099-408e-b48d-6a643dd069ec    31856       13582  45953
#> 1571 a0b93053-d349-4dd1-a840-24577102699b    29307       11002  10707
#> 1572 c78c299b-7c73-40fc-9155-2ede7f9849c7    30000       11522  11395
#> 1573 3b4fbc3b-3481-4117-9b27-32fd31d02aef       NA       15463  42174
#> 1574 86363c46-567e-41d6-a59a-3fed9ca64591    29560       10902  10927
#> 1575 47e64968-acea-454d-a95f-107a90960aab    31035       12852  34693
#> 1576 adb1984e-17b1-4efc-9af9-94cec5835c91    32072       13721  46978
#> 1577 b751192c-daae-4ea6-b4a8-c3639047bc45       NA       15450  58468
#> 1578 e4085e9f-ab3b-4dd6-9cb0-bf6f2bd428fd    30985       12526  47013
#> 1579 bd30c0ca-196e-4f7d-b37d-d4d52dd40b62    33315       14869  36271
#> 1580 14c97c9f-26e8-4944-9299-f90de6aeada3    28592       10215   9637
#> 1581 d3fab07b-f02a-433d-9612-cb0a751f324d    26416        9203   7406
#> 1582 9c3a67fd-5c6e-4689-9e08-9ff6d4db6c9a    31969       13822  47043
#> 1583 064c4eda-1b10-40ac-a9d2-66caf76a213a    32511       13615  34427
#> 1584 8f249da2-2528-4f68-8587-4400c924aba4    31194       12627  41406
#> 1585 1624b5cf-0032-4093-af56-e4dea4f64149       NA       15533  47663
#> 1586 a28f7368-0306-4d20-855f-285a1a09c09c    30150       11751  11792
#> 1587 34c523c7-bc58-49f0-a9cc-f9edd91fe00f    31981       13749  47509
#> 1588 3e618eb6-41f2-4f20-ad70-2460f9366f43     8826        5581   4363
#> 1589 5abee27b-2710-46ed-b110-fece5c2654e8    32751       14577  28486
#> 1590 977bcabb-f79b-4e96-91f9-c8e44f73c3e8       NA       15333  48304
#> 1591 1b7258f3-ea04-47ba-b315-cc709fef4bfd    29527       11487  10998
#> 1592 abedbff7-21c5-415b-b890-259b5bebf400    30418       12450  12227
#> 1593 8d56094a-7aaa-45fd-bfb1-348f2a994d99    30716       12930  12259
#> 1594 aa1debbf-691e-481a-a004-9e25e2e80660       NA       15597  76643
#> 1595 64b1bda8-8c0d-4c17-b8a9-6b5ef292c924    28415       10412   9460
#> 1596 f1eaad31-8784-4db3-b52d-ea0fe22761dd       NA       14721  49432
#> 1597 b4b346b6-6175-407c-a6cd-103368a1609f    32700       14713  61155
#> 1598 fe85708b-4644-4f77-ba2b-5726ff83439a    32689       14547  28080
#> 1599 03e6a751-5206-4f9e-8ffa-f92672f7c159    32443       14077  50356
#> 1600 41ca30bb-890b-4d30-ae2a-2b12eee9423a    30159       12037  11801
#> 1601 e6bcb4f1-c2c8-4dd9-b826-af01182875f2    29272       11061  10672
#> 1602 d766ee35-8ece-447d-94e6-1d33ba427b02    28835       10430   9892
#> 1603 30915dd4-f19f-48cd-8425-f2cf29246b66       NA       15196  83873
#> 1604 f0c60c6e-513b-40df-9794-d555ed59202f    32740       14696  43049
#> 1605 3f0926f7-103e-44d5-85f0-e53ec48fe452    32223       14080  27732
#> 1606 94001c44-9eea-4d2b-a766-079ddcb2e8b0    29479       11244  10879
#> 1607 30b045f1-b8e4-4ae9-b062-5181847b508c    28435       10416   9480
#> 1608 7c73efae-bf01-4226-a2f8-ec6243da9b99     9467        6221   5127
#> 1609 3c7b7eef-6c99-4f88-8b1c-cdf93864f2f3    29607       11420  10914
#> 1610 98166be9-2705-496d-ae1c-3bbcc2fe60bb    31451       13139  49190
#> 1611 32b601e7-4491-479a-895a-2f96add83e09    31951       13537  50458
#> 1612 cd15f1c7-fe18-48a6-928a-fa9336accb5b       NA       15761  82319
#> 1613 2300fe3b-c81f-4786-ae0c-0c229644239d    29266       11155  10666
#> 1614 764df188-bced-410b-ac54-84a86ef125a9    30190       11917  11832
#> 1615 c85c0efc-3391-4a8e-b8a4-370b32fd09ce    31208       13011  66917
#> 1616 e9746156-842c-475e-806d-4bcb26032e3b    33239       14715  44035
#> 1617 60d48e85-931c-45dc-b62f-024503a2e09b    26705        8672   7863
#> 1618 6c640668-de81-49c4-a0da-e367e1747923    31845       13758  50293
#> 1619 54814199-dd18-408f-9dc4-ce59a121431b    30655       12141  12214
#> 1620 9666a6bd-4321-4acd-823e-b872943a436e    32726       14538  44582
#> 1621 890deaca-e542-4565-95f7-b0bacc9c46ba    31823       13932  92926
#> 1622 0dc9b1b4-8974-47f8-9faa-006f7cc72de2       NA       15500 100786
#> 1623 1fcb4a37-ca9d-44ef-8f2e-7d4be04c32ea    32781       14476  41471
#> 1624 5ffb654f-0de5-424b-aa2f-ad511deb5b51    31199       13007  29578
#> 1625 7b47d190-168b-44bc-bb91-a688fe28f768    31983       13887  30267
#> 1626 28b0d2fd-18d0-442e-a9ec-70b2f8065ff2    30221       11959  11863
#> 1627 16661483-3da0-4461-ac44-46fddb386e19    30188       11981  11830
#> 1628 b0b9a957-389f-4a08-9a68-177fcb59c50c    29976       11554  11373
#> 1629 d3ba3eca-c71d-449b-b5f1-7397a9cab3f1    30736       12383  12236
#> 1630 3b4c4797-d35d-4885-93a3-06d85242b522    31815       13561  15301
#> 1631 53e7c80e-8bf9-4ab2-ab3e-80cb556ea784    31043       12596  28091
#> 1632 f6d7cf0f-72d2-473f-a44b-4a253587ca0f    29448       11234  10848
#> 1633 2e0122de-812b-44fa-8bf9-084695be95e3       NA       15263  56902
#> 1634 5a422c26-d686-4ad2-af10-d7d691150e27    29807       11474  11169
#> 1635 1b3524b6-bc24-4d9a-947f-ebda67be1c41    32855       14651  35517
#> 1636 c7ebe543-7fec-4123-bc6e-b0d509af22a2    32708       14589  46139
#> 1637 7d58beec-bd16-475d-bf08-9137b86aef17    28894       10300  10019
#> 1638 d4b7a6b6-9ad3-4bc9-b781-dc09e9a5ba01    28709       10802   9989
#> 1639 6d96bf47-e8c7-4683-8291-74dc426a38cb    31910       13581  38554
#> 1640 5f3cc875-e802-46b2-81ad-3ffb7a3a1662    28292       10053   9277
#> 1641 ad2258ab-67f0-41c2-bcf3-f3ba145187dc    29325       10919  10725
#> 1642 fbaa74ff-f6d3-4bbc-bdc1-12aae7fae484    32364       14184  94371
#> 1643 26ad9c27-de38-495e-913c-6fb2428e76d3    32675       14465  60326
#> 1644 23461354-f2d7-4e36-9046-fe9cde6dd413    32662       14587  46440
#> 1645 5c424ecf-07c8-471e-a400-8d5f834af2e0    32439       13913  28219
#> 1646 0dbbd211-0372-4751-9751-e4df4ab1f8eb    33265       14453  57472
#> 1647 cad49098-1523-4e52-9f50-caa3423e1bb6    32066       13505  45914
#> 1648 8322b598-ab65-4b2c-8a54-af37f67a062d    31379       12715  12660
#> 1649 7d4333b3-8979-4920-9cfc-13fce89b7a3f       NA       15331  40903
#> 1650 38abfa4e-ad62-4392-89a0-ac2a012efd87    31986       13510  39258
#> 1651 0e7e6cbb-0e88-4a74-b457-1753851e37f3    28990       10202   9902
#> 1652 31c376b7-2e10-473a-aa54-d9f709a5b93e    28465       10084   9510
#> 1653 d0ca076f-a25d-436b-837e-07dde16be635    31869       13448  46254
#> 1654 7e666f6d-b92d-44b8-af06-8fec36a3b834       NA          NA     NA
#> 1655 478f29fe-7f2e-48a0-b086-b8c509621689    30616       12073  12114
#> 1656 ea33f7b5-21ab-4c76-bb68-252cbeda6de2       NA       15556  44146
#> 1657 412be3f1-210a-44b9-828c-d35cc6a1119c    32688       14513  60816
#> 1658 f9093247-ea7a-40ea-a100-bc5103fa5cfd       NA       15545  41851
#> 1659 53fd9a69-1b10-4fd6-90e7-ee84cca9e041    30577       11889  47149
#> 1660 144b61dd-de7c-4433-a3dc-606dbaa8e897       NA       15788     NA
#> 1661 57df4c36-e48c-45a4-a1ae-f6e86bf5d21e       NA       14760     NA
#> 1662 7e42a22a-c47b-4387-aeeb-2cc2e76dc1d8    31093       12807  47257
#> 1663 87171077-4c1c-4b67-b159-2cc6242988e0    30158       11898  11800
#> 1664 1012cbe0-7eba-4169-bfca-183a0204e1a7    31012       12764  47153
#> 1665 ebc576d0-a98b-4f82-aaf9-901a3911487d       NA       15246  60859
#> 1666 2958ea86-e2dc-4719-93e5-cc9d093ca963    28046        9491   8943
#> 1667 0ff9a975-669d-4851-a95d-ab28d9fc29c4       NA       15404  84088
#> 1668 93cb5790-1012-4c42-bccb-5748c27ba7d6    30231       11861  11873
#> 1669 e9ee9209-dd8f-4e4a-be3c-407756a2749c    28402       10152   9447
#> 1670 10952a8e-9da1-447b-a016-c699db00c5f0    27874        9485   8931
#> 1671 b103b096-6be9-4f87-9ae4-5d217f560685    29854       11508  11231
#> 1672 98c0ca10-7f77-11ec-9f57-3feb616b61c2       NA       15870     NA
#> 1673 bd783f2e-b931-4d3e-ab71-60fa1431f598    32750       14460  61361
#> 1674 6124c4d4-337b-4926-b3f8-d2feb1c16fa9    30955       12447  47417
#> 1675 fa6b16fe-d3cd-4296-a0e6-03ad13d27a57    29433       10981  10833
#> 1676 095e0c1a-0bea-4bc6-868f-e4bbe2ce6c30    29255       10818  10655
#> 1677 73af6932-2701-470e-9668-02d6cb35a5c9    30350       11717  11991
#> 1678 497758de-5f0b-481f-8c68-7aa5e21df322    32447       13445  38855
#> 1679 acdd0b8b-d840-44ac-9dfa-05fe8baabe09    31850       13785  46013
#> 1680 c10aceb5-abcc-4e42-a399-cce8e5832671    32759       14363  42472
#> 1681 2177026c-2b34-4b88-bc88-50d7c9962064    31149       12958  50511
#> 1682 6a43da23-5843-4490-8927-bd6196fe2576    33128       14955     NA
#> 1683 0a7535b0-e2ba-43ca-b739-ca51fa04805e       NA       15449     NA
#> 1684 ef3475dd-30bc-4f1a-9c44-4a8ecaca476e    32839       14522  55576
#> 1685 9b14942e-0ddc-436c-a6be-5947a39589e5    29287       10880  10688
#> 1686 b5fb8706-5436-422d-a4df-2d5235b17aee    28558       10470   9603
#> 1687 9f3b934e-52d6-4e16-ae92-d3e60be10493    24792        7300   6157
#> 1688 96fdd2ed-d54e-40f5-beb1-40c5b3fd4bfb    32049       13797  34222
#> 1689 450f301e-e19b-4111-a6be-4bb20fbf7f2a       NA       15478  38408
#> 1690 cd09c042-0bfc-4866-8d3f-a14ef4c3d7fc    30304       12007  11946
#> 1691 e11eff18-b567-47c2-99e6-f4c6bc3d10c3    33029       14598  49299
#> 1692 e135eaa4-1688-487a-a924-4d83b16977df    32875       14479  43395
#> 1693 407f1923-6659-4564-800f-25b8746d6d3e    25739        8202   7641
#> 1694 ba7fe857-df63-4aed-803a-80993b157be4    28476       10318   9521
#> 1695 e97a02d1-666b-4df9-bfd4-c375002965c3       NA       15444  42447
#> 1696 74013f08-f920-4de7-9740-cc461d84beec       NA       15232  43974
#> 1697 74013f08-f920-4de7-9740-cc461d84beec       NA       15232  43974
#> 1698 fdc01035-18e4-4928-808f-26ee414948d4    29636       11432  11033
#> 1699 3a10616d-e6bd-4328-ac4d-db423b0abbdb    32895       14732  35624
#> 1700 68356887-b59e-4210-9726-828ea7f83928    32787       14612  44550
#> 1701 54475db4-f0e8-4513-bcc8-7e76362c19f7    24075        6572   5624
#> 1702 d38bd9b4-1927-4cca-84da-5c7dd5b21716    30427       11903  50170
#> 1703 ce8b21f7-6f93-40e6-8068-0432e10d855f    32800       14499  56962
#> 1704 a091c7f3-468a-4ee8-aa1f-b8bc4cca00da       NA       15171     NA
#> 1705 6371b42c-2783-49e8-8def-ce4d7dc91081    30168       11946  11810
#> 1706 81e211e1-547a-4475-bcf6-8c8ffde057f5    26636        8670   7794
#> 1707 39fd7f0b-4be2-4fe4-b228-65c9e5442552    32991       14770  36851
#> 1708 9aa0b292-f4ad-4517-83e9-717567edec19    29759       11313  11101
#> 1709 bb9341c2-14f2-4fbf-9bbc-e6efb3d0f18a       NA       15354  56802
#> 1710 07c51c65-489b-4bae-b997-f1a0f35deffe    29114       10660  10156
#> 1711 1cb784d8-de4d-4962-a775-c7379b7053c2    32022       13776  27844
#> 1712 5690a8b7-c298-426f-be4b-4bd2f0046ae5    33021       15109  47044
#> 1713 971fc9e5-bebb-4a2c-a822-8c52f92a3d07    29951       11599  11347
#> 1714 b5be5cc8-6947-42c4-aaca-090f06a47e46       NA       15194  59993
#> 1715 8afd3fea-20d7-4a2d-9ce4-e610f7961e3e    32025       13645  28394
#> 1716 d124ba69-9d3b-4e2e-bedc-032eabf95646       NA       15709     NA
#> 1717 a60226b6-cc0e-45bd-b31c-097242ae07f7    27665        9438   8772
#> 1718 c410eacd-2692-41cd-97c4-4d7a0eaf1dd5    32728       14518  41973
#> 1719 a78d3d14-3cc9-4adf-96fe-dc7660cb4c2d    32925       14838  83163
#> 1720 a2aab80d-174c-4639-beac-e2b70bb3625f    31538       13266     NA
#> 1721 0c9102ea-9fe8-4900-9d33-8eab299cf9ce       NA       15276  40313
#> 1722 b345f3db-d5aa-43ba-9f17-914c54864236    28433       10353   9478
#> 1723 bf73d658-02c9-462b-b4b2-5208b612f810       NA       15462  43158
#> 1724 299cb403-1cea-48da-baaa-b55510a6b78b    33034       14906  47621
#> 1725 c44b31cd-0480-4aa0-b500-12e9ba0765ac    29321       10948  10721
#> 1726 598a8d06-43b3-40f2-b4e1-59e06baddf83    31975       13847  49840
#> 1727 23616a22-8266-4b0c-b0b9-5f8187178168    27537        9247   8644
#> 1728 f070d4ef-1904-47f2-87d3-b9e2788789ed    32802       14740  28251
#> 1729 740ac0fa-f4b9-4944-9b7a-78b97c5dd1cd    26583        9967   7633
#> 1730 53d25371-e3ce-4030-8d0a-82def5cdc600    31067       12795  45547
#> 1731 e20a7609-8129-400f-87b9-d11dda3836b4    28388       10172  10236
#> 1732 bbd0942c-6f77-4f83-a6d0-66ec6548019e    25812        8057   7102
#> 1733 91ead748-e3b0-4926-bd3b-3e327b44e6bc    28477       10176   9522
#> 1734 631e6ad5-0a97-4b3a-a45e-6179b0ec6c4e       NA       15470  60556
#> 1735 aa9c3e2b-711b-44ed-9cb3-0fbed3f2fead       NA       15350  40265
#> 1736 567fe739-5425-4d78-896c-f1486813910d    30253       11761  11895
#> 1737 8960d61e-433b-41ea-a7ad-4e76be87b582    30154       11700  11796
#> 1738 ae4faec0-509d-4080-b5cb-d1a44d062858    31934       13477  45817
#> 1739 482c1032-765a-48d3-b46e-b47a809dbee4       NA       15579     NA
#> 1740 6ca35fe6-900c-4903-aa23-a5ca55ac6a3d    29509       11470  11369
#> 1741 60ff28ab-0edc-43e3-8517-cd57c78f6347    31032       12476  46854
#> 1742 584c0cd5-fe93-40e1-8155-9abcf06d79b0       NA       15259     NA
#> 1743 5e8ec29b-9769-4071-b9f8-3722cd138fc1    31403       12940  31698
#> 1744 44dd8731-122b-4f26-a599-10c5aa37acbc    32873       14825  46282
#> 1745 5b712aed-201c-43dd-b978-b7b6ef91178e    24891        7413   6256
#> 1746 780a48de-d092-4e87-9c34-8d1b45a154cc    31077       12899  47164
#> 1747 ed0e6a30-83d5-4f4b-bf49-f7ff80e21304    31882       13583  42060
#> 1748 ca393469-d587-4bf7-905d-838e960de851    33124       14864  27766
#> 1749 f0d17dfa-ebf3-416c-a8d2-c6bc30675103    31127       12809  47124
#> 1750 cb5e14e8-87a7-4bad-9fd4-abdd50628abb       NA       15567 143780
#> 1751 39156891-0d05-470b-8b64-751602820bb1       NA       15287  61324
#> 1752 3bf5c049-9daa-43ba-9758-c6c895a9d462    32846       14641  23503
#> 1753 2fa2b2da-4aa9-44b5-b27e-56876dfe2ad4    27277        8986   8288
#> 1754 97eee51c-7403-4ccf-90a1-7d8a2aba7ed5       NA       15295 100887
#> 1755 9a2cd41e-a6e8-42d6-aad4-65c42939d733    33253       14402  41247
#> 1756 814e9529-e00f-4d02-925b-158ba1c6f840    32079       13867  47882
#> 1757 046c51bc-319e-4fbb-9cf3-f6ab808b8edf    30223       11808  11865
#> 1758 92529995-41e9-48db-b429-c96540ad357b    33023       14889  34061
#> 1759 4131d4ee-0318-4bb5-832a-4dec80668a4f    32692       14509  61398
#> 1760 94560629-fb01-43b5-b9ea-ca8372c18368    28983       10674   9948
#> 1761 8491b12f-68a7-4227-9b8b-17630ff52101    29090       10775  10057
#> 1762 154d65c6-b3fc-4ac4-99a6-48c191e90ffc    31877       13482  29113
#> 1763 12563365-b4aa-4b85-93a3-b220c8212707    29467       11137  10867
#> 1764 6dbc1c10-83ed-40ba-b747-365ef1c0623a       NA       15193  55673
#> 1765 94b28362-5dba-40f9-8378-8bc1e5cdbdff       NA       15254  98878
#> 1766 f403d099-29d4-43cd-bf79-4aeeb8dc6cd3    25887        8306   7654
#> 1767 1d8d5c04-15e7-4346-9d1f-f128e4df3adb    32710       14542  90621
#> 1768 7a51270b-cbdf-451e-a9e7-0f0b23435dd0    33319       14703  43336
#> 1769 4f454037-be8e-4575-b332-5e40f4788970    27105        9173   8458
#> 1770 537c88d4-c403-43f4-94a1-fdccea0ee24a    29875       11081  11217
#> 1771 88d2dbf4-3b9f-43ea-bac6-a8722cb24f43    24002        6621   5552
#> 1772 3c119ef7-fe68-439d-93e4-89ab4fd1df44    28303       10002   9177
#> 1773 8a6825e8-2657-487b-ac69-620a89d7a0cd       NA       15471     NA
#> 1774 b590479c-79df-4505-be19-b0838574b434    31650       12578  42781
#> 1775 dfb0b126-9c75-41d3-9371-04065db7506a    29292       11018  10692
#> 1776 2516f9e7-9927-409d-adbe-b32d680ae71d    30244       11954  11886
#> 1777 5d235c9b-8d01-44a7-a3ec-b5c7bd4491ee    31909       13655  48523
#> 1778 2d3a6c81-183f-431b-9b3f-d7f1ce2b294b    28481       10324   9526
#> 1779 55998ec0-4d69-4d14-a2f4-cf72de36e998    31454       13142  48874
#> 1780 39017237-0575-4984-b784-954a79c2bba2       NA       15395  82198
#> 1781 50de642a-7e6c-4625-9966-ed8fc64acfa0    28478       10313   9523
#> 1782 a28e18bd-eb1c-48cb-b1ad-b2de212313e2    33322       14909  48692
#> 1783 0861a57d-b468-4c21-ba3a-7523b6838ed0    25020        7472   6385
#> 1784 6e6dcc9c-06f5-40fd-9134-d0afd0e349d8    30291       11916  11934
#> 1785 3fa97e08-13d9-47a8-b155-39f975964d47    31991       13753  50588
#> 1786 12b701c8-7f40-4437-aeef-782fd1d25f2e    31826       13931  32565
#> 1787 ed37f30a-de45-4af6-b7b5-5f218bf786ab    32949       14664  59878
#> 1788 b37c621e-1125-4c35-bea0-fcabb1527060     8432        5365     NA
#> 1789 15dcfb8e-ef29-40f4-a924-f3ce4150c563       NA       15537     NA
#> 1790 49bf0cd8-c01f-4d31-b6f1-fdda02b4999f    32230       13861  51107
#> 1791 0555927e-18ad-40f9-b2d6-f63d533d91aa    26975        9068   8500
#> 1792 56692800-dd44-4b82-a988-398314845fd9    32757       14742  25449
#> 1793 d5ed27ed-e5f3-4d4a-a8af-79887c1881a0    28987       12194   9952
#> 1794 8738c2cc-4ac6-4288-922d-ce4590d9af42    32730       14477  27379
#> 1795 0ad845ff-44e8-4576-bc91-61b557e06f05    27568        9262   8675
#> 1796 b498432e-01a4-49ef-8f4d-cda153c7cdd5       NA       15601     NA
#> 1797 dfb05fbc-7329-4893-8dc1-3d30033e49d0    31875       13885  51055
#> 1798 8aad56a2-0589-4ebc-99f8-b07c5023fd70    30167       11977  11809
#> 1799 ca760cb5-83dd-4415-acc8-ef8b508ba976    26675        8715   7833
#> 1800 d3e192b5-4523-4d65-94e0-a1fb164b6542    30666       11925  50118
#> 1801 3164fc4b-b2ae-43b3-9ff1-1d5f744b9f88    31113       12766  50966
#> 1802 e7a18744-0608-4118-888f-f51de5645ce9    25735        8201   7030
#> 1803 416e8e41-9e8f-4bc9-9d26-babb37bec884       NA       15587  76830
#> 1804 99d79bb9-45aa-4c64-99aa-a92ba2c278af    29380       11083  10780
#> 1805 90517709-322d-47af-9360-77775a93496b    28554       10467   9599
#> 1806 133ff990-0b7b-467d-a949-1e1720f96bc9    29709       11116  11113
#> 1807 a756f0c5-c0c3-4d95-9a77-4fe1ef9baf93    32865       14554  46271
#> 1808 b57c9d4e-b06b-4281-98d8-1295684c2e55    28195       10139   9258
#> 1809 a8ac7c7d-301a-4e1e-afd4-04f88cad848e    28519       10292   9564
#> 1810 1be82e0f-4b22-4a82-b3fc-5835aa214f7a    31933       13763  46297
#> 1811 3ee844af-9408-42d7-ba42-aaa2d5ccc673    32853       14674  27357
#> 1812 173831a7-d33d-4d2a-8dd9-4e36182e23cc    28632       10285   9677
#> 1813 afc993c9-64c2-478c-8d86-a9b22af819de       NA          NA     NA
#> 1814 7830196e-cdca-4b86-bee2-eae97de2ee26    29455       11238  10855
#> 1815 1d40e4f7-2991-4aa0-aa0a-1e7df79aab07    32896       14815  60003
#> 1816 27b1ba46-842b-4bca-a434-56c60102c1b5    30993       12855  46048
#> 1817 af1335c6-c262-4488-9352-86ba80754583    31995       13817     NA
#> 1818 af4ba620-2f00-4b00-9111-7897f2b1cde8     9547        6140   5277
#> 1819 1fd00ec3-b758-46d2-a2c1-cca521ea8a54       NA       15402  60323
#> 1820 582fe465-135a-4901-beef-60aebce99067    31965       13438  13725
#> 1821 25bc08ac-8420-4340-94c6-93993ff87d6f    32390       13624  45903
#> 1822 39f70428-a78a-494c-8676-438d953c289e    27658        9524   8765
#> 1823 59482736-ce42-4058-b68e-0f9f66eac2d9    31919       13636  35134
#> 1824 6260e78a-64e2-4f7e-9bf8-39948a17a370       NA       15372  98689
#> 1825 dba5e3ec-2c77-4f65-ad6e-cee246f816ef    26389        8077   7469
#> 1826 879325b1-c961-4c9a-a3a4-679d77a28293    33028       14459  25512
#> 1827 e94705dd-635c-45f0-b243-88bdd92b4adf       NA       15582  59662
#> 1828 705899da-3c20-4bc3-b5d0-2e6e40655131    29269       10735  10669
#> 1829 579d92e6-ab4f-43e0-803f-b2d5a54d106a    31126       12808  47333
#> 1830 4da5e05d-fc5c-4e87-aa38-d9cde42dd476    32771       14559  61068
#> 1831 e4f25a37-74de-4bfb-b6c9-f50a4fab0b87    30213       11807  11855
#> 1832 25e58aee-1b33-4468-9a81-6586426b91d5    28875       10727   9840
#> 1833 05e15d81-6bb1-49f7-b677-63475d073961    32761       14425  40294
#> 1834 5aba3610-ab55-4922-ac46-806ded5eb8bf    30551       11847  12270
#> 1835 c552a87b-4612-49f2-a6a4-55a5e26787c7       NA       15525  40445
#> 1836 73236a66-ba10-44a6-b12f-2ca13cad33b4    32916       14504  46513
#> 1837 73e194d1-a4b7-4de4-b1c2-3c24ef502918    32231       13517  47468
#> 1838 625a1777-dd9a-48c6-b512-c450b0914450    32612       14318  95015
#> 1839 b9a6720d-9c6f-46f2-bcee-b80550026437    33349       15163  28729
#> 1840 cfb0ff68-51cb-4dad-ba81-f9e019a93a91    28408       10132   9453
#> 1841 9d404288-65c5-414f-8ea5-ceb97eccaea0     8930        5786   4467
#> 1842 203f2976-1311-41d7-b630-3cc237cba516    32302       13431  47846
#> 1843 3e6e15ce-1c81-408e-9a94-b0a2924d0b8c    31864       13425  48297
#> 1844 5328d551-cf7d-4ae5-a8f4-1968651748f3    31215       12637  39386
#> 1845 3b8a2ce7-52d1-4ca2-af53-b7d7617936b3    33249       14489  12740
#> 1846 36538da8-9ac7-4f7d-beb4-8b773da4a080    28466       10409   9511
#> 1847 054cf859-2cf7-4621-a98e-b440e66508a5       NA       15399  52280
#> 1848 95a4fe89-0b8a-47ae-9f74-0d359ded8d3c       NA       15688     NA
#> 1849 f4a5d12e-9169-4601-85e6-79bc99eab455    32346       14116  51496
#> 1850 743bf29c-a420-4e79-be70-3f2049cc38c7       NA       15409     NA
#> 1851 b6c9d494-a3cd-4d57-96e1-f807f0b9be63    27559        9329   8666
#> 1852 66386076-7d61-47b7-88e2-34a883de250f    30124       12023  11766
#> 1853 f12ecfb0-085f-42d6-b063-97f0bc4fd5ee    29842       10986  11224
#> 1854 e0248ecc-27b4-4368-bf97-47a73cb41ec2    31411       13106  51495
#> 1855 30a193de-13a3-4e22-a1a5-ce240f498280    27345        9064   8396
#> 1856 c5614795-d8e3-4104-ad9b-edfb575410bb    32004       13876  49515
#> 1857 662bf69e-10eb-4c2e-970e-1a13f1c7fa07    30155       12199  11797
#> 1858 771d19bc-f5e2-4a25-8553-4ad3c341c1c9    29308       11166  10708
#> 1859 5fb6e9f1-2efa-44c9-876f-4d635484be88    31937       15189  49371
#> 1860 ff214afc-4e6a-48c1-986e-d52271c6ad8e    31762       13354  13612
#> 1861 91e004b5-8a40-45cc-8246-a34faca1ee64       NA       15435  56624
#> 1862 543e5e1e-50e5-482d-a6ad-498d7fab497e    24811        7447   6176
#> 1863 9c2c9c29-516a-4e0f-8dcd-319291823370    30984       12863  50291
#> 1864 d9cf7aa3-71b1-4ef2-98c5-3db5d44b6f1e    32490       13784  48500
#> 1865 9b8e379d-2362-415f-b51d-ec3b8bedda93    31072       12812  48400
#> 1866 cb43fb1e-9c65-4462-8c05-798d5885b845    30172       11924  11814
#> 1867 bb01a04e-0d54-4fc6-98c8-2b8614d07afe    33118       14726  50191
#> 1868 c8fb3887-c2bb-4038-af6f-f9b81aeee0ac    32497       14286  37279
#> 1869 457123e2-aeb5-41c7-b2a8-ddc42c04f977    32424       14203  48665
#> 1870 3df436ea-5825-4ef5-b33f-d221d8f5992e    32374       14164  27753
#> 1871 ded35e89-0ed7-44e2-8e97-5566330e6d3d    32509       13864  36862
#> 1872 bb29cf6c-17a4-4106-9b9c-47d2d9c0e6b9    27972        9685   8976
#> 1873 08d27d1a-e039-4ccc-9ba7-65a22f6002fd    29354       11219  10754
#> 1874 0c158936-9c0c-4ee4-a51c-4f937d3d163f    28598       10486   9643
#> 1875 e5870f5e-f9b2-48a3-97ec-8d12fbc91f3f       NA       15744  35639
#> 1876 c4cf84d0-6022-4ac1-a9ba-85587921c53f    29754       11309  11096
#> 1877 99c9de87-7fe1-4d5e-928e-586f48af2d79    27369        9054     NA
#> 1878 3f6d588b-dfcb-4758-95f0-545f61ddf275    32212       13765  51448
#> 1879 e6221da0-1ce0-4f60-85b5-f2094e9d2863    25787        8213   7079
#> 1880 719a7e8e-8286-453e-8aee-d2487c45e53f    32744       14374  34632
#> 1881 09bdc469-0d82-4bce-8d49-810a44a550da       NA       15600  58093
#> 1882 7c51883f-8ea7-4f54-8c03-a562b4524858    32076       13953  51485
#> 1883 fd3bd475-4327-4ba7-8540-ab6cc8ecf12f    28512       10360   9557
#> 1884 8ad3600e-08b4-4390-8ce0-70065776b781    32208       14067  38956
#> 1885 2feb5241-ab81-4907-b660-ef8e92976224    31197       13006  51491
#> 1886 571152e1-0a76-4562-b257-4729e4401549    31615       13296  50221
#> 1887 94510e36-d0ea-48c5-9c7e-b09b31c5c218    30015       11673  11414
#> 1888 505b14e9-7ba1-4c7b-99e7-8dafa8cd0946    32491       13683  29118
#> 1889 4bc2be9f-9001-4395-a097-d3c89140a83b    33120       14543  28238
#> 1890 650108d9-4e30-408d-a1ad-00abc13b2f46       NA          NA  56064
#> 1891 e07c45a0-22f9-4ba2-9bbe-6c63e623bc38    28401       10258   9446
#> 1892 e05e1927-1dd4-44a9-9b70-f552e6939a97    32694       14468  59857
#> 1893 e381248e-ea78-433c-a9cb-7043e9f3335e    27980        9424   9001
#> 1894 b2fc64a2-3df5-4f65-92e7-922d41723bef    31880       13541  37347
#> 1895 0b699477-6801-4154-ad51-e8352a3bdac4    30151       11801  11793
#> 1896 8b3ee955-f2ac-4606-9066-42b82fb4131e    29382       10906  10782
#> 1897 f3bdf34f-1424-4e26-911c-3ff45e2f7bac    29357       11054  10757
#> 1898 cce52ea1-7e17-4992-8911-e6b07b7b3831    29434       11140  10834
#> 1899 53213f81-77ad-48d0-9d42-00e3633b0e90    33112       14868     NA
#> 1900 fb3b36fc-b985-4807-8199-d038d7e62a93    28389       10037   9434
#> 1901 6723249c-5fb5-4b0a-9373-cb59cdc99ec8    27531        9277   8638
#> 1902 0d3113f7-2a82-4fba-a0ab-bfe068746a8a       NA       15368  40216
#> 1903 3c8a55dd-20a8-4375-b711-49eb5e6e1d0e    30614       12063  12112
#> 1904 e23dc743-ecee-4cf3-a263-69d3da3bae94    28638       10483   9683
#> 1905 f336567d-44a9-4245-8452-1dd485fd70fb    24815        7244   6180
#> 1906 83d4c4c3-3c40-49b1-8b86-25d256a0b5ad    33114       14423  40498
#> 1907 d9c857b2-97da-4fb8-a527-afbbb2a67413    30180       11732  11822
#> 1908 30ff46bc-a039-4af7-9050-81af98901a3e    29470       10737  10870
#> 1909 23b17031-de21-412d-8182-5a4bca1049a1    31567       12563  45662
#> 1910 0a4c5237-08a4-41d5-873d-18f70c025149     9278        6086   4937
#> 1911 cf881df8-d5a0-4736-be01-eb72767366b0    26786        8826   7945
#> 1912 53b0a001-2efe-4009-8ff1-572b687d4397    24812        7550   6177
#> 1913 6dc7a6f8-f84a-4d55-a76f-66377ad038fe       NA       15651  41761
#> 1914 d77eae11-9ecb-4713-878a-29900d67267b    30145       12198  11787
#> 1915 0cb6209d-2397-4be2-9cb7-f990bfb67e69    26698        8827   7856
#> 1916 4e14183b-f974-4745-9d7f-8f5eb2a92a7d    32775       14541 109795
#> 1917 c731aa8a-778b-4ccd-a19f-517eb66f47b7    29328       10949  10728
#> 1918 562809a9-de2f-4d1a-85f3-a968f896b86d       NA       15565     NA
#> 1919 0226b03b-f91d-4223-9813-9fcd2e9c3acc    33113       14630  28305
#> 1920 db4510bb-e692-4877-9b71-0c8d642bc16c    31627       12743  47173
#> 1921 3cacaa27-a790-43ae-927c-8163b06f1a53    30024       11502  11439
#> 1922 90c1756d-1f47-41b7-89fe-b113c9850bc1    29281       10759  10681
#> 1923 521f597a-0709-4cc4-afab-72d93eccb5fc    33242       14861  35096
#> 1924 495dfd2f-adc6-4ea0-a830-0513db2c1477    33299       14817  61812
#> 1925 0c39e276-7a5b-448f-a696-532506f1035a    28482       10216   9527
#> 1926 c65b8d70-ac93-4782-996a-ef96fd11047c    31061       12567  48228
#> 1927 b79c04b6-d49f-49ca-a26b-d93769c8a908    33063       14977     NA
#> 1928 8f1147cb-3040-4128-b113-5813816241ec    32398       14191  91470
#> 1929                                 <NA>    31740       13346     NA
#> 1930 5b496c58-83ef-4763-b1e0-5f052af46b3e    28395       10151   9440
#> 1931 b7f930af-ddd2-4a48-9617-96bda81b0334    32494       13565  42247
#> 1932 4734f8dc-2ca4-4437-88f2-c8b8974abefc    26767        8800   7926
#> 1933 1364cb22-1bfa-429b-8bde-dfd0d2938163    33109       14556  42295
#> 1934 ed8d8820-4343-43cc-b41f-b98439923bef       NA       15573  61639
#> 1935                                 <NA>       NA          NA     NA
#> 1936 8fcc6939-9e67-44bf-b9c9-effaeaf2bae0    31554       12502  29476
#> 1937 7e7b5ec8-dcf4-409f-a0eb-99246b7493c5    29760       11176  11102
#> 1938                                 <NA>    29326       10901  10726
#> 1939 4c291418-b408-4886-a87e-2022ce5747bc       NA          NA  44160
#> 1940 66d74e2b-9a7f-406f-97db-b5b82f0c4cd2    33090       15103     NA
#> 1941 e63d2781-66d7-4e29-ae56-292fb282a5ed       NA       15445     NA
#> 1942 8e19d167-cee8-4048-8f28-d476b11ec330    32780       14535  56247
#> 1943 0db6df51-945b-4123-a790-0ba9d0473415    29296       10916  10696
#> 1944 ddbe4da5-1393-4b1f-8708-92f66412d6a9       NA       15755  41183
#> 1945 ab741f46-d660-48f2-a910-774d0514d2e4    31609       12720  51203
#> 1946 45ef2670-2382-434b-8f26-ba13f044236e    30138       11714  11780
#> 1947 a1052a59-114e-4340-8936-bffb17431300    31940       13533  51081
#> 1948 43211a61-4d89-4982-bbf1-9b932316b571    31733       13342  51220
#> 1949 93927d6e-9271-4c1e-8239-cc20fd788ba9    25907        8244   7193
#> 1950 4c577f09-a082-43f8-b249-c821350302dc    33135       14689  38339
#> 1951 e829aa7e-04a7-425a-9717-c334ca9febe9    26706        8640   7864
#> 1952 ce0badde-28c3-45ce-a6f4-e2f82ef129f8    31213       13012  49454
#> 1953 6db40c6e-7d09-486e-b80d-1d8008547250    30131       12018  11773
#> 1954 dbeff2ee-8d26-48f3-b345-3cd88c374c87    32706       14617  55775
#> 1955 2b5152aa-cbcc-439c-b72a-ac7577c8422b    28394       10307   9439
#> 1956 e5e154c3-df07-4b7f-8bef-2f2d3642374f       NA       15290  56356
#> 1957 b03240e5-759e-4e09-aa70-8fabe877f322    33051       15006 106295
#> 1958 b3beb95a-c1e7-4d03-b61a-097199528816    29873       11355  11215
#> 1959 014038bd-e9b7-476f-b7bd-bd78a46a9a57    29277       11071  10677
#> 1960 0d5c19ee-8165-4af0-a3ff-f5dc54bef046    33035       15117  50012
#> 1961 31bd7a4c-8eaf-4ea3-871c-b44420c804f8    31849       13568  25991
#> 1962 cb491475-1814-4914-9777-fb865ae0d70b    28400       10310   9445
#> 1963 1731325a-0303-4a56-81f5-3c4a588cf0d6    32052       13988  38844
#> 1964 ab3ce81f-6625-45d3-aa6d-79f95ae4f503    32813       14470  27305
#> 1965 0a3aad9f-54db-4f86-92d3-c2faab45c046    31963       13983  46087
#> 1966 3a39ab56-f188-4924-862d-c79ce67a3420    31004       12804  46180
#> 1967 63f8a401-f308-4463-9d0b-4335b98da682     9526        6045   5443
#> 1968 d20386b3-f260-40eb-92c3-f0a95211fab6       NA       15589     NA
#> 1969 5aac7b03-3b39-4084-bda5-8423abf28903    28431       10354   9476
#> 1970 65533cd0-792b-42cb-808f-18cbac2e51cb    32852       14596  42516
#> 1971 0bf6b11f-920a-4ced-9a69-0b4afc5df36f    29268       10801  10668
#> 1972 074acf5e-748f-4d42-9875-0090f1480bec    31036       12921  50126
#> 1973 22f733ff-fd31-4731-acf1-97843e9eb665    32924       14839  35774
#> 1974 eec6be4d-4c1b-49be-87ae-a697d61789ea       NA       15271  43734
#> 1975 78af6ab8-1003-423d-b29b-111d8f4d45ad       NA       15355  81959
#> 1976 cda62c8b-89dd-4c03-a86d-dba70541693a    29275       11109  10675
#> 1977 d2f9e776-11e2-47ce-82fd-60908aeb2769    32888       14580  43498
#> 1978 9898a791-ba28-4a68-beee-ad12f61af7db    31927       13891  48538
#> 1979 77b90860-a321-42ce-b505-32216dc40276       NA       15493  28079
#> 1980 877c9dd4-a60d-4b8a-865c-ab46fb2efefc    32953       15075  42867
#> 1981 0392b852-2783-4ce4-ad39-dc8661a5be3d    29365       11127  10765
#> 1982 8969d7bd-b4c8-4cdc-84c0-a78eab2c2b2b    32908       14834  44198
#> 1983 d86d53af-2eb8-425c-90ab-851122cc633f    28130       11214   8959
#> 1984 962bcc09-65ae-47e1-a3ba-39290a1e95c9       NA       14285  46090
#> 1985 c4ab37e6-e589-43be-94dc-441c81ca5fac    32820       14669  28149
#> 1986 ae320fbe-15cb-4877-b05e-c626bbaba820    33050       14673  40285
#> 1987 90609ea7-4f12-4526-a274-455835ccce27    27902        9664   9132
#> 1988 03cb0755-ecd8-4ef4-bf94-e9e1c1f9d203    30991       12881  46795
#> 1989 f45835c5-aa9e-4e32-b545-20d1e322fe8f    29462       11022  10862
#> 1990 bc63567a-81e7-44c9-a85f-8aa9532ab4fd    32277       14147  63303
#> 1991 0042266b-cb28-4012-bfd2-06650badad97    31838       13491  39395
#> 1992 e8b4f505-28b2-4a87-8bf8-87041afab45c    33015       14530  34412
#> 1993 12ce10f6-7f95-42db-8ed3-36b14933484f    32837       14486  60389
#> 1994 b45cd0e5-42b3-4847-aeec-a3afd07a0160    30200       11843  11842
#> 1995 e1235f1e-26ce-438c-8168-3b1ded4ab893    26696        8745   7854
#> 1996 3cbf12f3-11df-4ced-a321-4877b129420c    31999       13513  46501
#> 1997 cd705357-f282-4cbf-8f11-391618d981c3    29370       10913  10770
#> 1998 6c6a6099-0169-4c9a-b024-0d8f4a795f38    29906       11297  11300
#> 1999 a75efc5b-a4fc-4da4-8684-d170a0c40b81    33188       14949     NA
#> 2000 b8033c75-de94-46df-a645-284f419c4497   900125       12231  45675
#> 2001 94bde2c7-7229-4bf0-a545-5950cf3c7927       NA       15343  57133
#> 2002 9811b753-347c-467a-b3cb-85937e71e2b9    30972       12507  45791
#> 2003 aae9da80-c88f-4de3-b088-42553cf351ce    33359       14884  40197
#> 2004 ba5805bd-c67e-47d8-8d47-c8440a268cd4    32769       14676  46179
#> 2005 b493daf9-e550-497c-b382-4ffda2e47260    32674       14360  59701
#> 2006 afaf2f2c-06e2-4d7d-9d6e-1b9bc5a1c8ff    31224       13015  38555
#> 2007 a6038c60-5c9e-435f-beb5-e0e02b07e764       NA       15698  40636
#> 2008 b077b3b2-2fed-4c9f-9b8f-c4ff50a4f911    24804        7434   6169
#> 2009 1059e9dc-97df-4643-9116-883a0573d8b1    24830        7246   6195
#> 2010 e21365af-8d66-416e-b0a5-8816d18fcfd9    30136       11805  11778
#> 2011 165b19ca-3ced-4c87-9f87-e6f71f1a4dd9       NA       15680     NA
#> 2012 7bb7f5e7-f00e-47d8-954d-90bf5baf4292    32008       13516  40973
#> 2013 002adaa8-5dc2-4b4b-95bc-53a38dce3849    32442       14282  47358
#> 2014 bb3bf01d-c100-4a9f-9b7b-21aff82a9cd7    33041       15068     NA
#> 2015 67d56171-7522-430c-b7d9-8f7e2b6624d3    26756        8789   7915
#> 2016 93a1f2fd-fd5e-4b06-8086-476028d83eed    32910       14527  28301
#> 2017 25ed33f9-7abb-421b-91c0-46fb7f581a76    33038       14803     NA
#> 2018 773494e3-4e77-4db4-8197-dba388a014a6       NA       15779  23763
#> 2019 4f724338-aa8c-436d-90b2-45299572c53e    29351       10823  10751
#> 2020 b4af6462-3e3a-49d5-9d96-482ad9f3c0c8       NA       15336  61245
#> 2021 8db3a609-73f4-4797-ae22-8adf024d473c    30513       12443  12088
#> 2022 c57b1184-e381-40cc-b603-f703e10d3fad    29893       11269  11123
#> 2023 fc7f8c60-4fc2-45d1-9611-e803dbb1611e    31225       13016  48223
#> 2024 82ed30a5-54a8-4ed0-b040-99c3a78fb055    32003       13522  25578
#> 2025 427038d8-ff50-4d6e-a088-4fdb8bc2f0e3    32124       13911  47996
#> 2026 97f6c20c-1110-4551-82c1-41d3247397a2    32418       13634  34579
#> 2027 20d16690-560b-4a01-af20-8870ef07ea70    31014       12884  48113
#> 2028 1ffc735b-74d8-44d2-ab32-00c5485c799f    29274       10988  10674
#> 2029 938b363a-6967-4cef-bcd2-bb358a9f6c98    30122       11699  11764
#> 2030 659d31a3-9c62-4e3d-a0ea-b2e4967d6947    30209       11857  11851
#> 2031 214ae0bc-d6ed-4216-a154-f253c85bb90b    32835       14545  47808
#> 2032 9c95fee4-129e-4765-b99f-f09f517c1f4f       NA       15112  55761
#> 2033 e81fcb68-e579-455f-9278-1bc28d5d332b    32828       14445  42313
#> 2034 b4f07920-56e3-4e9d-b787-014b2f940b0e    32084       13889  12955
#> 2035 8ca53dc6-9a7f-41a6-9b69-d199a6784013       NA       15532  56144
#> 2036 117d2769-60b3-47f0-be7f-f47fe36e0ac9       NA       15621  60644
#> 2037 7c023589-734d-489f-ac09-577d48f772f3       NA       15626  98900
#> 2038 dfdf250e-0457-4008-be27-a0be2a3ae5bd    33333       14454  56262
#> 2039 59f781db-3955-451b-9b17-31b5a1823aa2       NA       15215  83111
#> 2040 35150d4a-0dca-4daa-91b3-ffc46d44d1b8    30811       12442  18348
#> 2041 bea5ccd6-b05b-43f8-975f-396399349a42    33310       15062  34207
#> 2042 8a214c9b-8c31-48d0-a83a-039ec6ddbd9d    29453       11237  10853
#> 2043 99d9eebd-808f-4573-b39b-b9fef4ce5e98    27569        9327   8676
#> 2044 8782ad19-a41a-455d-84f9-aa64f7038ee6    32968       14498  44440
#> 2045 dfbbaf35-08d6-4f58-8577-c2e53a492454    30152       12001  11794
#> 2046 7d491979-7d1b-4b55-9f3a-f68db22d8bb1    32738       14447  49560
#> 2047 fa8fbc2f-5160-4aaa-8f86-bbba666368a3    30548       12090  12102
#> 2048 97357c21-9d25-4a8a-a066-be6dad0e8a7f       NA       15548  52129
#> 2049 e75ed538-1888-4864-bd1d-e703d1ce4b5b    30229       11926  11871
#> 2050 594c3651-1a2f-453e-a39d-2c84a377f2b5    32601       14294  48374
#> 2051 70ce9a98-8dbf-4e16-a20d-f3cfb76e70d7    32351       14153  48467
#> 2052 2160ed45-4a2a-4d3b-9da4-d18446dfa292    32749       14734  26449
#> 2053 07b963d4-aef7-4874-ba04-f9b1ec1142d3    33335       15035  27128
#> 2054 9ed520e7-a3d6-4e80-9815-a145631d20fd       NA       15327     NA
#> 2055 854d07f2-11cc-4dc1-bdaf-e8cce2c89a75    32849       14582  43982
#> 2056 e8fa43ed-ae19-4603-b69c-a555664bd368    29376       10908  10776
#> 2057 acc3f3fc-12b7-40b6-b773-b73b2b10cf32    31150       12670  38558
#> 2058 4e2c85e2-3efb-4c5e-ba5e-3c75202e4f00    32530       13708  36340
#> 2059 e08d71dd-58d9-4295-bcf8-9a6faf59c333    31105       12972  50088
#> 2060 243b786c-744d-4a6b-9a8a-0b4e5fd2ad18    30302       11941  11944
#> 2061 b8e0fa49-1122-4e97-9fe2-d90f6b7cb444    31835       13584  44216
#> 2062 99f82a33-5622-4f22-95ff-05d8bd3a6521       NA       15428  44173
#> 2063 3b1227f6-05c9-421f-a2c1-4c8f1368b80b    29246       11112  10646
#> 2064 4be6de2f-0a6c-43fc-a91f-d01cdb5dca6c    31042       12814  24614
#> 2065 452520cc-4921-47f1-8d6a-55f7cee8bb0c    31207       12828  27413
#> 2066 f6d943d7-3ddb-4054-8796-9febf6026898       NA       15543     NA
#> 2067 1c50997f-c56e-47f9-a750-33ab100ed28b    31482       12582     NA
#> 2068 d2bbcec8-7163-4d6a-b356-9002a16eebe6       NA       15453  55898
#> 2069 bf5f7564-349a-439a-a8a9-4ddb10448a8d    27545        9380   8652
#> 2070 a3d59d11-8d6a-4cfa-9c5d-3387d20de7f9    32118       14025  57868
#> 2071 3f95afdc-2140-424b-8250-7d4e273c2efc    33318       14902  28987
#> 2072 17dfbad4-f4fc-4a65-a085-6cdcefe36879    31989       13846  35413
#> 2073 8227621d-ad2e-4dea-aef5-64d4f154adb2    31930       13982  49779
#> 2074 808fe9a2-51dc-4d22-8f09-da1857b5a699    30134       11966  11776
#> 2075 b665d9b6-3079-4588-b7dd-5088a1e91c3b       NA       15693     NA
#> 2076 0e9ea316-700d-4368-86c1-d1181fc64f52       NA       15316  83175
#> 2077 04ae0bca-f5c5-483b-bf55-967f1423cb45    30525       12391  12124
#> 2078 6d7ca819-8c58-4c41-bba7-643ba9553eb8    26569        8607   7746
#> 2079 b24c80aa-85ff-4508-bdaa-879eccb621b5       NA       15696     NA
#> 2080 b3819b2c-087a-4da1-ae9a-f470eebaa25c       NA          NA  40648
#> 2081 92c2dfb2-6929-4192-94cb-9ae6845dd2f6    30184       11793  11826
#> 2082 fbabd1f2-fe25-4cdd-9000-8fcc90372e82    29378       11133  10778
#> 2083 c76beac1-4908-42a9-8f1b-052aabe1eb61       NA       15540  57107
#> 2084 1d334dc2-7fa8-4d4b-8359-b4bfd50b758e    27728        9770   8834
#> 2085 33f18199-2fa9-4871-b324-2547aeb4ff1a    31946       13794  45376
#> 2086 6993aad2-269c-4211-bee7-2fcd324288c5    30324       11810  11966
#> 2087 e15a26bb-db24-4e5a-b3a5-cc4d4eb4f0b6    27594        9418   8701
#> 2088 f1bce91f-ba57-4015-b74e-dee3df872c98    30058       11634  11467
#> 2089 66170e6f-1c23-4bc0-80fb-b18344e98fb4    31985       13540  46815
#> 2090 ca98164e-f504-48f7-8a55-48444dfb4df5    32799       14622     NA
#> 2091 eb7f7d43-7837-400c-828c-bd5d609bca41    29815       11559  11282
#> 2092 8639eb45-a9dd-4b3b-91f1-01319af3bdd0    32681       14391  59818
#> 2093 668bbc04-3346-4ba5-b038-9b5485f79d1c    31924       13801  46232
#> 2094 85eaaf9f-59cf-4150-943c-c1abdaa78eb1    32861       14654     NA
#> 2095 f4808328-86e9-459d-a2bc-18e90c7d211e    31141       12826  46453
#> 2096 64797df2-efd3-4b27-86ee-1d48f7edb09f     8795        5648   4332
#> 2097 17bb63b1-1b0e-48e1-baf7-55cd314d0e62       NA       15330  82096
#> 2098 96e6687b-2b89-4dd9-98df-6e7507cd82cf    32018       13587  45769
#> 2099 7f119181-4c9f-4a9f-bccc-357277b64a8d       NA       15273  57337
#> 2100 f86e291f-d678-463c-93cb-beedab9a309a    32790       14427  26408
#> 2101 e25b6e0d-efa3-4425-bab6-5f846b902195    32383       14170  45038
#> 2102 5827b78b-5150-4ba9-bc46-902428e99a31    28461       10081   9506
#> 2103 b74ad3e6-b540-4f72-a4e1-3ee6d73c3163    31182       12702  34397
#> 2104 c1576aca-1bd1-4b9f-ba83-10235f1e2eca    32142       14001  91468
#> 2105 9c18801d-bdaa-4036-9663-24280c763bcf    29654       11317  11051
#> 2106 36f54823-9d51-4180-9c91-d10281deb4bf    28473       10247   9518
#> 2107 f6c34178-e063-444b-96b3-df6b3cf66419    31953       13828  42018
#> 2108 1b016b52-62ba-4da9-9ead-6bad689f8d33    29102       10713  10144
#> 2109 cb1df42c-b59c-4e23-a9a2-fbfc2b39ef71    26824        8911   7982
#> 2110 990c2825-ca25-4da9-9966-269363a9bb91       NA       15339  42196
#> 2111 e21e9081-44aa-464b-8d3e-83918d48b921    30118       11733  11760
#> 2112 8002dd5e-a75a-4d72-9a8c-0f4dbc80d459    28493       10224   9538
#> 2113 a8c96abf-a911-47a0-ac16-dd51a8782b5e    30396       12388  51593
#> 2114 18f0bd30-1432-4fae-9cb4-c212bad6d0bb    31180       12771  47961
#> 2115 021f2c32-0876-4db3-9605-e829f7d449d7    32283       14129  55003
#> 2116 767b1112-c77a-4a58-89b4-30f1ffa2a497    32533       13934  48055
#> 2117 adfc13b3-1eb6-49f3-9ba6-d4d87fd13685    32729       14539  47800
#> 2118 dc8a06c8-538a-4408-8a2b-1d9bfafb8a3c    30283       11844  11925
#> 2119 b1935e20-6bd6-4863-8d7e-702ec403491f       NA       15280  84302
#> 2120 2f2181f8-cb0a-42e4-9468-17f5f5a219cc    33329       14597  34914
#> 2121                                 <NA>    27361          NA     NA
#> 2122 89de9ce0-3b8e-424a-b9b5-d747692ea5f7       NA       15519  61442
#> 2123 1d02b5a6-fe2e-4131-a9ab-6ed3558f4026    24978        7585   6343
#> 2124 9f006140-21a8-4980-ba48-4c2ca940936c       NA       15184  55631
#> 2125 2c3ef101-5fa9-41d0-a0b1-32a1d27a1f69    26659        8647   7817
#> 2126 239ed12d-2946-496f-9d7a-9b4df266b324       NA       15743  79072
#> 2127 72d2a51c-7f02-4db8-8cce-19c45820f170    32807       14413  55634
#> 2128 34786359-962b-44e4-8882-d387d1a8ed42       NA       15558  45464
#> 2129 c2e80cfc-33a8-43f4-a61e-57048244e4f8    28486       10419   9531
#> 2130 cd340b59-3ee0-4829-8d08-be8744f670a6    31509       13181  26360
#> 2131 f59cbb36-23cc-4caf-bceb-edd7b1ff99e3       NA       15187  42465
#> 2132 942b9da8-e0c6-4087-886b-370fe357f5f3    31095       12683  50543
#> 2133 9fe24e8f-360b-4ca6-8e46-6d60d8728efa    31573       12922  51194
#> 2134 4dcf9e8a-fc5c-43a2-9b83-4ca295490a9b    32023       13985  51391
#> 2135 cec656f2-7a0b-4993-9489-7a0cef088c0f    33201       14780  43058
#> 2136 a7413fb5-8d05-457f-a97f-504bee73a910    28838       10389   9895
#> 2137 b7253ed5-d2c3-4757-8b54-5176fe9f45df    26356        8509   7271
#> 2138 789af1aa-253e-4fda-a93b-cef346bd91b3    32797       14686  42467
#> 2139 8b44e3b8-81ae-4f02-b598-965872d12816    30644       12057  50587
#> 2140 66a67b5d-500d-46e8-90c6-e2f127d38190    31101       12546  50120
#> 2141 b3e41b52-a8aa-4be8-8513-8ede6f3f83d3    23988        6571   5538
#> 2142 e7e7dbae-02ea-4295-8e14-136c65fdd591       NA       15483  54410
#> 2143 06087aa3-4538-4eb0-8713-090967c3a32e    33184       14948     NA
#> 2144 a25f92e6-6e67-4463-a32f-77976807b3d8    24803        7448   6168
#> 2145 2d74a108-2b17-4db3-8ef1-0c2e845b414e    30127       11901  11769
#> 2146 19601aa2-b4de-460c-9b4c-ed661007053b       NA       15219  56977
#> 2147 0ee41c7d-1afa-4ac7-ae6d-66e4da18052d    31957       13740  48953
#> 2148 49671677-0e37-4c70-ae1b-ec36be357eb9    25722        8154   7018
#> 2149 3f8e4972-2361-4939-b5e3-c5f6c63b9f68    29323       11051  10723
#> 2150                                 <NA>    30714       11949     NA
#> 2151 ca5028b1-d96f-4444-9855-46e1661b9d62       NA       15329  57035
#> 2152 a72ab12a-751b-4a0d-9f9d-a44d2510ac23    29350       11160  10750
#> 2153 ebabfa18-7713-4002-8ac4-cf30cd4566fc       NA          NA  56682
#> 2154 447db942-40e8-4bb3-9710-b12cfaaafb46    29313       11169  10713
#> 2155 9fe21c07-823a-47a1-a4dd-0c611c0280c5    25786        8127   7078
#> 2156 ae5e774f-fb4c-4a59-87bb-57fb18d32b4e       NA       14384  60130
#> 2157 db099408-4fdf-44f3-9824-aa8006ac60c3    32405       13464  28844
#> 2158 db390635-a7ce-4508-9c58-4ac1c36740df    32406       13880  45110
#> 2159 059e5bb7-1842-4558-9aaf-77c352a21216    30266       12203  11908
#> 2160 a56b9958-2eb9-47d2-a50e-be8aeaea3eaf    31120       12916  49699
#> 2161 a7b4b50a-9431-4551-89e1-6b8cb80536d7    32403       13460  30737
#> 2162 a004c949-7097-4faf-bac9-0edc5b1b2b67    32866       14737  42632
#> 2163 c3ef92f7-29f7-43db-bbef-4e9875d756e9       NA       15673     NA
#> 2164 954d9ed8-41ed-4222-b0d8-b3cc8d1755a5    28716       10811   9994
#> 2165 423b3b98-da9a-4786-84c9-0662ec0ce11f    32773       14751  81991
#> 2166 2a527ffc-edd3-4415-9662-6158d0ad612e       NA       15437  61402
#> 2167 1693934a-76eb-4cf9-a5cf-e0bb6df92ace       NA       15639  56460
#> 2168 444a23cc-f2db-4078-8eec-3f43f8542742    28698       10600  10007
#> 2169 6a904c64-5425-4f6d-b35a-1b72eaa256c6       NA       15426  41712
#> 2170 d0b809ac-b82a-4b66-98b1-9fcf613ace6c    32649       12696  46848
#> 2171 4034f43e-26fb-443a-9ea7-35cee7a1d250       NA          NA     NA
#> 2172 fbae56c0-6400-4d46-9e76-621fc0d5fdd7    33192       14748     NA
#> 2173 64bd0f02-6a5d-407e-98f1-fd02048ea21d    32723       14416  40291
#> 2174 7debccec-8ec2-443a-b4a7-a52f14464883    33279       14846  37397
#> 2175 dabb52c0-455b-48fe-996b-abf758120623    32010       13741  41401
#> 2176 4b09ab09-1457-4c9d-a99d-6a03d8e76c76    29384       10815  10784
#> 2177 e2a5882a-dcc1-4800-889f-3b957b21834f       NA       15222  77737
#> 2178 ef3ceaf4-b733-4e06-a7f4-a94fc67361c1    31885       13521  40555
#> 2179 768f6afa-ba24-40d9-bdc1-3184bba2ec2b    31171       12996  39462
#> 2180 632f863e-ad20-424f-a468-7ee40c098c2c    32842       14796  45693
#> 2181 3edf64e6-603b-4437-a3be-53fe030c6f56    26627        8728   7786
#> 2182 d71abd0e-7a69-4e28-a2f3-d8d516f3d8a7    29316       10974  10716
#> 2183 4c01d331-f294-4836-bbfc-3369829d66c8    31203       13009  66916
#> 2184 83657965-d1b5-4317-84bf-f9e471629993    32815       14663  27064
#> 2185 6c50f131-80dd-4aea-a34d-dac06d5cf91a    31854       13671  29250
#> 2186 0560d134-d316-4cda-9d48-34d32267af68       NA       15510  42058
#> 2187 2fc1c9f1-9e85-449a-9a87-fa8203e8e8f9    32415       13551  46481
#> 2188 e17b5817-d955-42be-bb8d-e34d89f6dd71    30594       12082  12145
#> 2189 e8029983-87cf-49a2-bc04-04c8233a0630    31019       12860  47272
#> 2190 86707c8e-fec4-4ebe-9111-4d3ad238ad43    32970       14843  47282
#> 2191 e00b3426-238b-4bdb-85c3-bbf08b7469e3    27626        9559   8733
#> 2192 0832c8ad-0872-446f-ad6e-0e309e8443d1    30715       11883  12258
#> 2193 06ff7f42-5fe7-4899-84a5-9ba5349d17e8    32691       14421  61697
#> 2194 ca85137c-205c-458e-8b77-8457849f614c    32870       14464  61664
#> 2195 3da67e95-bd15-409f-b5de-b2feb54efda7    31155       12611  13597
#> 2196 0cc1a941-1a6d-4a4a-8c7c-88157165c126    31889       13529  35014
#> 2197 58e217cd-53c0-40e7-b40b-62f53d246751    32838       14567  84142
#> 2198 3555d07e-57ae-43de-97d5-b1b5bf055f17       NA       15406  61100
#> 2199 68fd7ef5-2237-456f-925c-68000917edea       NA       15386  56642
#> 2200 b556dfd1-ed9d-45c3-9328-00236ddd54b1    31342       13025  45600
#> 2201 a80f1b08-3977-48b6-97e0-5991ca26bfae    30179       12038  11821
#> 2202 4fce55c1-1afb-4667-9115-0e239b72285b    31915       13455  40160
#> 2203 d8fc7bb7-333c-4caf-9512-893c334f56ef    30207       12031  11850
#> 2204 3ec2ad5e-f4e0-474a-98a9-0bde4ff5aab9    23982        6617   5532
#> 2205 079575a5-029c-4960-bd45-66cd63f659fb    31961       13793  48233
#> 2206 bf21bd83-9c97-4faf-97be-859f033848e2    30415       12026  12224
#> 2207 6e0bbdc7-fa74-41d2-b3de-4eaa8e670f87    32939       14439  60649
#> 2208 4419b655-867f-436b-8233-6d45f4dfef77    29345       11091  10745
#> 2209 3e7d2a40-88e6-46af-b2ca-aded3a3b942c       NA       15475  55675
#> 2210 e4739abd-d524-4857-85fc-ed4845462817    30998       12613  51334
#> 2211 38611281-fd6a-4b36-bc10-712b128e78af       NA       15645     NA
#> 2212 1aede0b9-557c-444d-9a2f-4cc690e1563c    30981       12624  51206
#> 2213 741c1ab2-378b-45ce-86c7-533e6a031f22    29248       11082  10648
#> 2214 1163ba47-560b-4705-82be-69967c4fc096    31415       12699  38426
#> 2215 aaff3798-2b50-47a1-b629-5771454a45d7    30141       11908  11783
#> 2216 d7f79a32-6a28-4e14-bedf-6186dec771e6    31518       13390  48889
#> 2217 61306d7b-7a04-4509-b954-d43a4e288ccf       NA          NA     NA
#> 2218 ff28a5cc-3780-4f94-8c40-d713ff75cd0d       NA       15347  44416
#> 2219 1aa8d83f-c084-4893-b9b0-b1296ec822f1    23985        6590   5535
#> 2220 9758b9e2-5809-4a16-890f-e239f0808723    27574        9257   8681
#> 2221 9ea97d0c-6af7-46cd-a69f-b61a649e5a28    30187       11955  11829
#> 2222 9779acc7-ed88-4a16-b78d-230ace9ec3eb    24818        7449   6183
#> 2223 1dada1ff-5475-425e-8f38-0728d50c91c5    32902       14681  48662
#> 2224 5f644070-97f1-4b7a-b0b1-4a341ac10771    32041       13662     NA
#> 2225 794760c3-b654-48fa-ba3c-3b07fdb4c03e    30206       11752  11848
#> 2226 eb8e3dbc-e840-497f-9a77-62e45d3393ff       NA       15365     NA
#> 2227 2f471656-9ecc-42ea-977f-0c56756d0557    32864       14682  48988
#> 2228 7a3d664b-e4d7-48e8-899d-5f7db6ecc4e4    29432       11232  10832
#> 2229 2154a63e-279e-42bc-b6f9-5a849cc02cfc    32983       15082  25105
#> 2230 96341b4d-152a-4020-b68a-3ff93e1baba5    27620        9357   8727
#> 2231 4501f87d-6436-4fa8-9f53-a8a475eb984c    32516       14232  41421
#> 2232 441eb531-1ec8-4f65-9174-78bc6adada63    28188        9646   8990
#> 2233 e44cc736-fe98-4b80-a138-4ebc5f087335    32918       14837     NA
#> 2234 82a70525-35cd-4389-a5d1-3b0f11f05a28    29333       10968  10733
#> 2235 d13f374b-649e-4762-bcbe-660c6dcc2131    33232       15031     NA
#> 2236 25a4ae85-e94b-4db1-b939-4c96f24ead11    26752        8711   7911
#> 2237 11e6adfb-8144-4990-adc2-bfcfe905889b       NA       15374  58189
#> 2238 3b59e08c-0c3b-42c9-a4e2-9b79103ea715    31708       13306  50918
#> 2239 80637f09-673d-45fe-b874-bdb1a9c20ee6    31410       12704  50819
#> 2240 ab5d4d72-fb1c-4aeb-887b-f6ca35f679bf    31842       13461  27375
#> 2241 f340201b-a1b1-43ba-a47a-484a44334553    30143       11984  11785
#> 2242 abbfa41c-ccb6-4378-b75b-28ec7d54e277    32923       14731  37724
#> 2243 3f4025d1-5782-43e4-9f42-8eee2da66a95    32772       14724  43507
#> 2244 c1ea7946-fb7a-4a5b-9ed1-c58caf7f8faf    31118       12768  49263
#> 2245 d1e8f343-9556-46f6-a238-2053a50b57d6    32039       13632  50810
#> 2246 1f3d0803-dad7-42dd-b149-da0c65f5a87e    33361       15170     NA
#> 2247 0c306d14-6fe6-4b4e-b87f-871c72441947    30954       12977  20035
#> 2248 fb301e65-4c65-4b60-a8ca-d149fcdbcd97    32805       14749  46735
#> 2249 e10e0c39-33e0-4ae9-9374-915dee1ceb7a    28665       10281   9875
#> 2250 a4e669b3-32f3-4762-8b01-df6ef8dd0e51    31062       12805  46302
#> 2251 6864e643-1085-41bc-99f0-66184fab5487       NA          NA  60120
#> 2252 19f35c8f-4796-4563-bcf5-6bab1679571e    32195       14066  46859
#> 2253 ee894f69-ff62-4f60-a5fb-5307fce1de73    32650       14348     NA
#> 2254 0405bc2d-8e9c-4537-9238-111c4ccd88ae       NA       15614     NA
#> 2255 15bedebc-839e-450a-86f6-1f5ad1f4f820    30248       11834  11890
#> 2256 ea357add-1a41-4a8b-8f34-bbfade7f4d98     6770        3764   1732
#> 2257 be4ca0ad-f3d6-4b98-a37f-79d0cbc06390    31046       12629  46569
#> 2258 6e4eda90-2656-434f-a262-4e5e9fde3946    31847       13558  41897
#> 2259                                 <NA>    30389          NA     NA
#> 2260 30487ab2-836d-4e4b-a46a-89e31b414374    32794       14357  57289
#> 2261 74af3906-083e-49d1-b8c6-556101390381    31954       13453  45954
#> 2262 9b4e4d1d-ad88-4c10-b1c0-b9116755c184    30850       12433  38329
#> 2263 c6728282-0648-4926-a07c-be64f3ff5e0d    31100       12786  45741
#> 2264 48ec58c3-ec26-4434-b005-8d34035e6667       NA       15468  57121
#> 2265 d088fb7a-694a-4286-a51d-4a13ec398088    30250       11756  11892
#> 2266 89c07ccf-8157-4246-8c83-898a81d2dc77    28479       10278   9524
#> 2267 6d9f5816-f0f7-4562-9db0-26b1eb487f68    29389       11049  10789
#> 2268 f808794b-3135-4f75-b46a-ba90bf6b8502    31907       13495  47081
#> 2269 9fbcfae9-dd14-415c-8952-9b1b5dff0dfc    27538        9210   8645
#> 2270 04f0fefe-9d9d-44f5-94ea-6df2a42df3c6       NA       15267  84085
#> 2271 1ea6e870-84ff-44ba-8302-f0f08623fa26    31441       13119  30887
#> 2272 58f18567-a050-49c4-aeca-b34499338b37    31973       13511  36049
#> 2273 9d95c076-0ceb-4ecc-9187-4f77354c2d1f    32261       13440  35985
#> 2274 53ed110c-f022-4759-afd3-1cd3436dbba7    32719       14433  42312
#> 2275 244c00c7-fe9a-4f4f-adff-1d5b9c8877e7    31898       13472  33441
#> 2276 c1b4d9d1-1e49-48e7-93d6-bf47688d33c6       NA       15574  45380
#> 2277 814aa074-fc61-4649-b7a1-098bd3a199fd    31030       12838  47792
#> 2278 d25a19a7-7de6-4476-b42a-833c8c3cb208    32948       14495  61448
#> 2279 4a213e4e-b0ba-4124-833e-33c528bd5908    32187       14055  48341
#> 2280 f7ff7599-a175-4a0c-b887-3ae9e596fc64    31157       12570  47895
#> 2281 bfaedf99-7618-4925-b362-90415c22a3b6    31021       12763  48160
#> 2282 9547fbb1-0d4f-4d9e-83b9-e2fa30463bb9    30175       11877  11817
#> 2283 eec927ed-221c-413c-a91c-ab1ed1bb038a       NA       15419     NA
#> 2284 ae0e9024-5df1-4b5b-b928-3c0e3429fd32    31447       13154  66937
#> 2285 aaf9cdda-8da8-4b3d-95bf-6fea8070a537    33283       15123  34321
#> 2286 4de23d54-2169-4b17-b0d0-c47b2edd9f73    30156       11905  11798
#> 2287 f113cf01-5a86-4ed9-ae34-dcdbac9e11a6    32811       14710  49381
#> 2288 63fd7882-5d20-426e-9834-e85c0ebb4d5b    31990       13704  50437
#> 2289 17664e93-8236-4eb0-9505-4e71f43b5a7d    31112       12505  26940
#> 2290 0589b224-bfc7-47a5-b89d-ff58ef2dcf21       NA       15477  55677
#> 2291 1c468a8a-355f-429a-a12d-d8528fdc6aa2    31879       13796  56263
#> 2292 f5fc76fa-4381-4026-b8c0-384cb4dff19b    33004       14675  42930
#> 2293 8092ffd3-3f39-43eb-a602-b14fff77d413    28588       10433   9633
#> 2294 9448aee3-538c-4ff3-8781-bc848b086bfc    31964       13839  49352
#> 2295 57df194b-d445-4e66-af51-7b781b0f529f    32028       13471  50434
#> 2296 8ddd0a30-563c-4fae-a6a8-a19747721924    30174       11998  11816
#> 2297 6ef80c9c-640a-4b0c-8333-98d0696b2d0a    33290       15059     NA
#> 2298 5670f3dd-822d-4d13-a6c9-f981354441fc    32718       14649  36001
#> 2299 fc116de9-ceb8-409b-b322-60659c73e943    32818       14727  56857
#> 2300 9912fa7a-040d-40cf-99b5-0a7a28e0ba1a    31049       12632  48731
#> 2301 9d546e3b-0eb3-4926-a5ef-eb5e48b9330e    31861       13751  48822
#> 2302 b612c556-1285-405f-9294-733f0302869e    27413        9126   8196
#> 2303 e00a7f77-8320-4415-8c71-ba9c5d0240b8    27862        9403   9045
#> 2304 e79d8a12-4ec0-46d3-ae42-384f16deebed    24029        6570   5579
#> 2305 7011a0e7-f402-4bc0-bba3-b31d3613e47f    24098        6714   5646
#> 2306 e6d6138f-1081-457b-9d89-dc9cd0ab9598    33131       14965  28430
#> 2307 f00ccf29-884e-4914-b9f9-aca0090ee9e6    32336       14099  38461
#> 2308 e03782ac-0d49-49cf-92f9-50997132f3f4       NA       15411     NA
#> 2309 8b6a4108-ccfa-4af4-a37e-c617d5793de7    31334       13423  66935
#> 2310 60cc4395-be8e-441f-b6b2-7e74e15f2593    29263       11148  10663
#> 2311 09b78e4f-e683-4c5d-b35e-35cc0dbbf7e5    31477       12492  48875
#> 2312 eeb9e3f4-e378-44ca-94b6-a724011ad710    25295        7504   6515
#> 2313 475aa381-25d7-4d6e-a6ce-bc7601f4b034    32739       14670  81532
#> 2314 1a1830c2-9717-4af0-82f0-7d7b254764f1    27609        9437   8716
#> 2315 7af4c94b-529b-4403-ab66-2bfed3fcf0c7    28378       10157     NA
#> 2316 8fe853ae-184e-4c65-a00e-70d2f141504f    31974       13844  50967
#> 2317 ef422c88-b74f-4720-a831-947010c44ebe    32697       14739  50851
#> 2318 577dfac0-3f0b-45ee-afff-c851c6aebb1e    31920       13733  50727
#> 2319 57ace943-bda5-470f-8388-560cd1964153       NA       15794     NA
#> 2320 f87e26bb-155d-47a5-b444-6196129e84a0       NA       15750  98605
#> 2321 b9f364a0-5553-4475-8388-6dfd1d7a2e62    32770       14690  35997
#> 2322 706bc0ab-7200-47e9-9b09-726110eb83dc    25757        8208   7050
#> 2323 5e21c974-4168-4d6d-9b6c-97c16a96fb01       NA       15770  57718
#> 2324 017812d3-060c-4d3e-988e-30fe779741d3       NA       15797     NA
#> 2325 530f22b9-0f36-4ad1-9ead-ea44292b83a8    28620       10497   9665
#> 2326                                 <NA>       NA          NA     NA
#> 2327 c7e51d4d-18d6-442b-850d-040411225b14    28221       10155   9174
#> 2328 03f235b8-e338-450d-9107-8103b7d0a32d    31956       13862  29244
#> 2329 45bf5c4d-8583-4ecb-a836-58b6f9d85ecc       NA       15769     NA
#> 2330 736c12de-b7be-4c12-bed2-57856b7c8449    30171       11814  11813
#> 2331 83ffd861-ffb0-4560-a79c-52acd2b6cb1e    30356       12221  11998
#> 2332 f17143f4-30f7-40da-8926-bda923f2761e       NA          NA  41341
#> 2333 d1ae3222-8892-49bc-bb3e-0bcd7c74522e    31119       12481  35381
#> 2334                                 <NA>    30758          NA     NA
#> 2335 cfc93f5e-105e-4a5e-88d3-f4279893cfa8    26662        8743   7820
#> 2336 060d05d6-aa31-4571-9f91-12c8050b6aaf    32792       14401  46444
#> 2337 409d4cac-ee90-4470-9710-ebe671678339    25785        8043   7077
#> 2338 2b119688-83b5-4d19-acbf-fa2087035fae    30997       12830  27414
#> 2339 990a689e-200b-4cda-85db-85d6c3af911c    29405       10803  10805
#> 2340 a1a73c32-c409-4ee0-8a7b-0ae589db85c8    32046       13476  83791
#> 2341 ab58c0ac-a747-47e6-9b3c-505e41d2bd3d     8261        5215   3623
#> 2342 48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2    32814       14410  55632
#> 2343 c6938e95-e8cd-4975-a0e0-ef6aa9b207f6       NA       15581  88760
#> 2344 4afb77d8-4564-469b-be4c-5a8587df8046    32036       13484  45859
#> 2345 0afca88b-83e7-49d6-80df-1f68b21cca9f    30362       11784  12004
#> 2346 67c2f38f-b568-4bcf-a40f-750cef707a05    31576       13282  49132
#> 2347 1a92b0ad-3eb2-4df3-bf02-04c4d9ffe10c    30119       11985  11761
#> 2348 7c84bbbd-6bc1-4d3a-8fe9-263b807a08b2    31138       12938  46226
#> 2349 2157404c-7cd3-4758-b620-872ad7724d04       NA       15553  41795
#> 2350 f26bd260-a1eb-42ab-8768-bc8ad24e4f9e     8803        5773   4340
#> 2351 a2b2f929-e3a7-4d19-888f-49600cf718bf    29392       11171  10792
#> 2352 2ffa0607-bab5-4d29-b662-c054690080d3       NA          NA  38549
#> 2353 ebeceb00-57e0-4b74-9cf7-853da2afed18    30157       11737  11799
#> 2354 bad1a0c1-7ea2-4898-b5d9-ad1aec45c8b1    33286       14928  25705
#> 2355 1ea7affb-e5e7-491a-aaa3-55e200b2eb48    32803       14463  52266
#> 2356 383f4814-6836-4766-a297-fc063e8509cc    31090       12986  30762
#> 2357 dffa69ad-331e-4f09-ae38-40a5a4406be6    28457       10161   9502
#> 2358 c00e0b6f-367f-4cf5-ba11-d23b1aa114f1    32068       13470  26586
#> 2359 df2caa7b-29f4-4391-8ce0-b1b711196379    33267       14638  47537
#> 2360 da92303d-1419-4cde-aa52-b120635f364a    33236       14914 113168
#> 2361 81997ce2-9e70-4014-999a-25ebb405dbf6    32884       14644  26448
#> 2362 a296f2fe-7af8-4796-b50a-28ef010d0933    32293       13616  13534
#> 2363 754faf0f-40f7-45f0-b23b-6ce990ecaf26    31896       13424  47864
#> 2364 16da963d-a300-4d72-8e4d-7771196c03e9    32367       13490  48152
#> 2365 4a76219c-34b8-4cfe-81ab-2bb011368367       NA       15461  29573
#> 2366 597f6a8c-6a64-463e-93f8-f46cb8a7e592       NA       15427  42109
#> 2367 7cfc5f12-e344-4a41-8f54-52a5c2bbd52d     9285        6054   4944
#> 2368 2bdf19ad-a957-4f3c-bb2f-2bb72b0b3595    25853        8174   7649
#> 2369 208c5228-2b8d-414c-91a8-57d2fe4803b4    32959       14614  27374
#> 2370 ae6a5f6b-20ac-4b44-9d05-b75634aa1199    31386       13422  50430
#> 2371 05b308c7-13f6-4ea7-baed-4314896663cb    27552        9619   8659
#> 2372 56d8015b-aed7-4a46-868e-a85672cde790    33115       14950  83079
#> 2373 63a656b9-bcbb-44a3-95c8-e8a63660e71b    28265        9953   9332
#> 2374 13112f4f-03c9-432c-a033-454870cda46b    27553        9330   8660
#> 2375 f60017c5-e44c-4256-831f-86c8d8626481    32357       13646  49394
#> 2376 7da672ef-7d6f-4162-b3ee-7faa37b0ed95       NA       15176  56058
#> 2377 d5ba025d-5e9d-452d-8b86-f68a3bff5e22    27657        9301   8764
#> 2378 0a4980fc-0ffc-45b4-a2a9-f9d38334618f    29514       11483  10902
#> 2379 cbe81592-1ee2-4bf1-870a-2578c4c8267e    25758        8209   7051
#> 2380 55414554-e550-435e-a108-6047a9318e0a    31065       12985  49178
#> 2381 92da4f95-8f58-4379-b236-ee4ab8ff5daf    28434       10451   9479
#> 2382 d24bbe70-baba-4337-822e-c166a156f92e       NA       15192  55686
#> 2383 a1a2f797-77ac-4f13-8456-50a10a7fd61a       NA       15317  83903
#> 2384 0e41e388-6e5b-4a12-aa2f-45bf83ffadc5    29798       11459  11262
#> 2385 ca08b2bc-7fad-4dec-88d9-5f5f9712a830    32017       13729  49446
#> 2386 1b8414b5-3db8-4e89-8bcc-7ac7f7d0b931    27558        9308   8665
#> 2387 eff1c40e-715c-49c4-93d8-6155322c1205    31993       13791  50612
#> 2388 92c77d16-f8bf-4716-bcde-6328838f4e65    30186       11953  11828
#> 2389 acb7169f-3ffa-4386-9866-e06af6ed7fef    28405       10309   9450
#> 2390 09f4ba1d-6eab-4e9b-9f22-a5ff33f0f2d1    30766       12426  12183
#> 2391 acc85868-4848-4de3-8e6f-5427e93c8d80    31057       12545  50201
#> 2392 987c5e68-21d5-4bcb-a5f3-2e09cc512374    31834       13421  42741
#> 2393 1d05c82f-81cd-4fad-84f5-8be990c5258d    30238       12201  11880
#> 2394 6c434322-0ee2-4df5-a5e8-1a6e5f12285e    27551        9342   8658
#> 2395 f413306f-0134-467d-82d0-df73f5f7bbe5    32077       13707  48713
#> 2396 1a8eff7a-1057-47c9-aa82-3dbf3f47a76c    32684       14444  56834
#> 2397 eb864600-7562-491a-b7a7-9eb3068dba06    31098       12752  48404
#> 2398 81b159d5-86ac-4130-a87d-dbd5e0b211b3    31110       12878  38563
#> 2399 9b747474-db7f-4137-a559-38402c828139    33195       14551  48659
#> 2400 d2e2b313-6769-48c6-a217-d167f04068df    30310       12209  11953
#> 2401 3618e094-0273-4e99-9641-65cc488128e5    30201       11948  11843
#> 2402 2a86a6b4-58ef-42f5-aff9-d5d979bea6c7    32321       13519  28308
#> 2403 7a52585c-03ce-4b03-91cc-742399b8399a    33200       14988     NA
#> 2404 67da5b5c-0db9-4fbc-b98d-7eb8e97b69f6    26753        8930   7912
#> 2405 726c066b-4ce6-4af3-85b2-7ec34807166a    27707        9442   8814
#> 2406 abd73d50-ce60-47f1-b37f-2f9a05b0d7b9     7520        4686   2607
#> 2407 6f1bc007-d446-48f2-a6e5-58c5e53df94f    28624       10385   9669
#> 2408 d1e280f9-6df0-45d9-841e-0cfe6ea081b1    31154       12636  51408
#> 2409 c5175598-1392-4eaa-ae62-d99811a0c477    32319       14074  49231
#> 2410 75a74283-5ab6-49d4-bf2f-e6fcaf91ec36    31040       12769  51222
#> 2411 4c1b3190-50e2-4918-8e3b-7bb012f8b304       NA       15338     NA
#> 2412 e9348fc5-273d-4ac3-9760-462f37c025dc    32318       13829  49792
#> 2413 e6eb9d50-9231-44ff-89eb-7f7b996e042f    31980       13804  51503
#> 2414 0c727216-dadf-41d5-80e9-154ba9261663    30088       11740  11748
#> 2415 d0b7699f-5e18-4631-813d-2f709ee4b281    28416       10269   9461
#> 2416 848e4531-e43d-4ae1-a2d8-e0d258fb2c93       NA       15488  59983
#> 2417 370a8ac8-f6f4-44ef-91b3-a65ab79ec314       NA       15503  43678
#> 2418 658f1215-e84a-4170-aaea-a6e8bacc8ff5    29887       10918  11117
#> 2419 1c1f0577-f9c7-4406-b2ab-b9e42ddb1af3    25903        8339   7181
#> 2420 1a7caa50-2fa5-4651-85d6-05cda9d9b3b3    32823       14671  29314
#> 2421 63e4892b-f841-4694-afcb-4114021aa12b       NA          NA     NA
#> 2422 8925f38d-5c75-42c7-aa52-e3bcca16a21c    30449       11781  34807
#> 2423 eb995f08-f023-4338-bc36-5def4a83f59e    32015       13679  38951
#> 2424 59eef23b-4c9a-4b8b-b681-6d8e24aa9252    32527       13921  46948
#> 2425 e8e8a5fe-00d1-4ffc-9401-9e5cb254afea    31942       13816  44663
#> 2426 e1c506bd-9e36-45e7-b2b9-fff6a9728a06    29421       11187  10821
#> 2427 42de9d1d-0352-460b-9172-9452414fd7fd    27590        9320   8697
#> 2428 676a508c-c65f-404a-a2b0-f861a4bfd072       NA       15198  91399
#> 2429                                 <NA>     9338          NA     NA
#> 2430 8ba68abf-e9d2-4927-bf8d-476f271d840c       NA       15379  57272
#> 2431 72cf3127-3953-4fd8-8049-3de1b6fa9825    31394       12932  29413
#> 2432 b89c853a-6bd8-42ec-ae52-a11831923631    31174       12997  66446
#> 2433 26873576-2bbd-4622-bc3e-ec847577855b    30269       11719  11911
#> 2434 b040e601-ec40-4757-bf3d-71bf64ef99cf    28654       10604   9783
#> 2435 b7146193-fcd1-4b02-a6da-625fe467f60e       NA       15413  57372
#> 2436 c6c50d09-f14f-41c2-9eb3-87514f0121f6    33199       14392  25582
#> 2437 b070601c-7985-4a1c-b71a-9f72bb5dbc59    23979        6541   5529
#> 2438 c2b21a35-81fc-465f-9476-6e5cda608288    30979       12882  46275
#> 2439 70473218-5ae3-47b4-86fd-151e68f1e8b9    31329       13030  20994
#> 2440 7b96a836-666b-47b6-a0a7-9dbb0b4c53e8    27570        9273   8677
#> 2441 527dfee0-a242-4dc7-830a-ab7028308259    32860       14608  42257
#> 2442 2fa75e05-cac4-4b40-8924-dbc9ae0c959c    31257       13286  66924
#> 2443 2ada91b0-036e-454f-83c3-6d939ff584a9    30259       11892  11901
#> 2444 2b841f75-c4f4-4f3b-9369-a592c41e7aae       NA       15356  52267
#> 2445 7e8f4076-25e1-41e5-8e71-f70397a3729d    32006       13628  39587
#> 2446 1726a359-9444-4761-a1f2-cb35ee6fa60e    25793        8026   7084
#> 2447 628a6a0a-4fde-4024-8d7c-28674953d5af    31868       13429  48274
#> 2448 3ae9f0fa-c711-4663-80cf-4707856c07aa    32887       14376  48027
#> 2449 4f0053fc-5559-4551-bd81-dcd1cdf3a9ec    25810        8111   7100
#> 2450 126811e0-f856-49c2-b36d-15e71e06f4c0    33039       14546  28070
#> 2451 4aae1781-1eec-48c0-b41f-e4fee61c3c32    31210       12579  28991
#> 2452 c90471cc-fa60-4416-9388-5aebb5d877eb    32695       14386  84109
#> 2453 18ccb826-5584-4f6a-8434-cf9a3b927b0f    31320       13061  48021
#> 2454 50287cd3-afea-47f4-aa56-98a82aa87cf0    26826        8981   7985
#> 2455 29ac0dbd-2d1c-40da-88ba-36f0d3856d05    24941        7600   6306
#> 2456 f8f7a845-ae30-404c-8800-66bd643b6d2d    27655        9367   8762
#> 2457 f84bf885-d6ff-4fc8-8b6e-64bb3bceb17d    31871       13648  25891
#> 2458 5d61b458-9b4e-4016-9983-7add180b698d    31261       12666  31078
#> 2459 278a0811-98b8-42d2-96e9-160b7f364ae0    31926       13483  34918
#> 2460 f8c2e532-8de2-4c8b-85bf-ed2e24c3b273    29367       11164  10767
#> 2461 2df83b38-7b2b-4aea-91ee-bfc5974486a1    31033       12531  49335
#> 2462 36da9517-98fe-4258-807d-6d7e4b334c2f    27637        9655   8744
#> 2463 829307ad-fb1d-4c7b-b073-3098be9464e7    26693        8646   7851
#> 2464 4deb42ec-bece-4b00-b697-3caeff8c1997    31087       12641  49196
#> 2465 d605a0ff-be2b-4e1c-9486-57dce43df0b6       NA       15738     NA
#> 2466 01e8d2da-0d00-4016-aa36-0a9f9415b224       NA       15718     NA
#> 2467 18911a2e-1c57-49cc-b7a1-c2cbc599264f    31367       13410  28870
#> 2468 23557a45-6dc7-43c8-a4c6-f53ae72ff660    29841       11527  11240
#> 2469 b2da84c5-e51c-47d8-bccc-888f8caaa8ad    31931       13789  51282
#> 2470 27732f2b-2009-4954-a0a0-d29f5ce1abdf    32715       14484  42475
#> 2471 2157df58-ca82-46cd-9897-261a80060292    30363       12223  12005
#> 2472 a0557106-4517-4516-a5e7-d46cba52fe44    26749        8664   7908
#> 2473 b5e33405-ea22-4fb7-97d8-8b324d6c90b9    33277       14913  50195
#> 2474 5616e0f0-8306-43a8-8347-e5b8e26f8cbf    33230       15073  36337
#> 2475 cee49408-2e91-487a-a8ec-d3314ebf539d     9673        7168   5232
#> 2476 f0f60621-a075-41f6-a07d-74fd9e1348f2    23977        6537   5527
#> 2477 fa1bd78e-99e4-4745-9896-cfea01392038    33346       15162  28488
#> 2478 503eb9a7-83ed-4b96-b0f2-7afe4920bde9    30982       12500  48956
#> 2479 d6ce0b64-9526-4983-8c3c-7f14f2918f8e    28605       10339   9650
#> 2480 f48df73d-5d7f-4b84-868b-7cef4d77a282    33275       14672  46921
#> 2481 5fd40b6b-d81a-4a4e-a394-53ed7e58511f    31619       13303  28653
#> 2482 538a03f2-ae79-45e0-bb22-01b9a8517e77    28449       10272   9494
#> 2483 ca8fe3b0-337f-4354-9010-3951127786a6    33292       14915  27699
#> 2484 e1a79497-3e4b-4820-99a6-8ecbfd03995c    31064       12851  66578
#> 2485 42a287f6-9a56-4699-8c63-bc54625ff6eb       NA       15617     NA
#> 2486 ecc4f0c1-64e0-46cc-9b58-91c2b215e62a     9520        6150   5180
#> 2487 f9dbd390-b1c7-41a2-9e96-6f5de2848efc       NA       15247  55933
#> 2488 2784acd6-85b1-4411-a00a-094a5fc01930       NA       15408  57727
#> 2489 186014e2-3430-4510-867f-a7013daf0bb8    26668        8694   7826
#> 2490 4e0ffde2-7f1c-45e7-b9a3-628577751663       NA       15719  43743
#> 2491 8bc51884-c9db-4745-8731-20eff25f41b0    31939       13562  48405
#> 2492 df483199-088f-47d6-b8fc-1574f74bb4e2    27820        9995   9000
#> 2493 112b95ea-d080-4aa7-bedc-5755c6c6b80c    33272       14917  33560
#> 2494 37849d01-7d7e-4a35-8840-e17cacd73d85    31837       13611  43089
#> 2495 9a612961-9fdf-47d0-b7ca-32b55adb1f61    25768        8184   7060
#> 2496 933edc6a-9617-4957-8f64-62a11bc43e6c       NA       15585  58272
#> 2497 e56569f1-eaf4-473b-b92c-fc5c84cc7338    23990        6568   5540
#> 2498 94285cbc-7338-4732-b59c-3b1082cd5d83     9537        6932   5430
#> 2499 5c66adc6-62d8-4f29-aadc-11b5ed21495b    30096       12538     NA
#> 2500 4c2f446b-0c2a-43ee-ab1d-7ab0373b28b0       NA       15583  41336
#> 2501                                 <NA>    30946          NA     NA
#> 2502 5d109065-9f5c-4f09-b2b5-87d99920aaaf       NA       15497  59980
#> 2503 3d861092-3d64-4663-bf91-aa1f15e4e3a6    33237       15026     NA
#> 2504 ef490eec-3c43-47f3-b4a2-ae41c95108b6    33325       14866  41533
#> 2505 b2fb04f7-8b2b-4048-952d-ee5c9ef460b8       NA          NA     NA
#> 2506 9000be32-15ad-4c43-bf8d-79a9c7113cdd    28553       10466   9598
#> 2507 aecf0860-27aa-49ac-b133-69fe2c4c63e1    32898       14653  33541
#> 2508 949c34b9-150a-4a1b-b884-1fcf1ebaabdf    26949        8923   7983
#> 2509 de816e24-8442-49a4-99cd-dde7e7c05863    24797        7248   6162
#> 2510 41c44740-d0f6-44ab-8347-3b5d515e5ecf     5228        1350    698
#> 2511 13038760-a019-4e2a-9aea-f13d7dce5bda       NA       15335  39987
#> 2512 15965c39-17be-4338-911a-8f337f48a3ce    31008       12566  34001
#> 2513 4b0a90db-f007-4ac1-8542-b531342b9da5    32746       14557  45866
#> 2514 24cf6148-f0af-4103-a215-e06956764953    26660        8622   7818
#> 2515 7f46a7be-286e-4bfe-8778-d03dbe600ce9    30117       11687  11759
#> 2516 5ec072b3-2837-4cf1-bb4f-ecd873949626    26805        8762   7963
#> 2517 7735c02a-ee75-447c-86e6-6c2168500050    26671        8617   7829
#> 2518 f552cc18-aaf5-48ef-87f1-4791a101e553    28422       10271   9467
#> 2519 cc58971d-d24e-44a3-9f09-1b2289e92577    27882        9965   8968
#> 2520 e39240b4-cac5-453f-b99f-6bbbdd1c9c82    32683       14616  64818
#> 2521 93ed8c6f-b676-46d3-bf82-6155e89b4a68    30132       11806  11774
#> 2522 5afe93fd-0caf-4cca-83fc-7f405bebfa3e    28267       10008   9207
#> 2523 2142a164-48ad-47d6-bb27-0bc58c6b2e62    24017        6443   5567
#> 2524 225d9e5e-598c-4b32-9c74-d7df2018500c    31732       13341  66966
#> 2525 54d4e35a-2e6c-48f6-86ad-92dd596c173c    26612        9758   8549
#> 2526 e4edfc2e-c6f7-42fc-b8b1-8e5282457000    33295       14877     NA
#> 2527 a138f20f-8a41-4d0e-930a-a16b6cb597b3    30111       12121  12077
#> 2528 baa61bb5-f8d0-4f90-bbe2-028576b8d33d    30197       11718  11839
#> 2529 9b13d2bc-b22c-4f91-8eeb-309f43422d6e    27619        9684   8726
#> 2530 a63918a5-da89-40d9-8518-30a3e0e46da1    31588       12979  66957
#> 2531 dda1c351-8148-4c26-9bc0-1d906065290f       NA       15434  84457
#> 2532 19b027f5-8d0a-447e-8511-b98e4c95f9f4    33274       14892  34463
#> 2533 93c17735-5275-45cf-b3ef-620351c62313    32831       14432  48054
#> 2534 0dc98d11-34e4-46f6-96a6-7707c6f29500    28414       10069   9459
#> 2535 c48c21d9-0ae5-478c-ad34-30a660cfa9b8    27535        9253   8642
#> 2536 ada174f6-9300-46ba-833f-018d007f20ce       NA       15240  61522
#> 2537 85e18d5f-8a3f-4b6c-88fe-dfdaaed5554e    32040       13987  47481
#> 2538                                 <NA>    31274          NA     NA
#> 2539 fa9d0178-a2a7-402f-ad11-c7bea0b80705    25809        8129   7099
#> 2540 e2ba47b5-f503-42fc-86d2-2f6061551a30    29133       10716  10174
#> 2541 593d31fd-212e-47a5-b3cc-0793cf075a98    30477       12406  12068
#> 2542 25396df1-3597-468c-b1d7-ce40edb0f7f2    32917       14836  49490
#> 2543 c87aaf5b-e1e9-4d18-b0f1-f328b646031d    32731       14443  42894
#> 2544 be7e6d3f-a5d5-4ba9-b694-5bdacab75606    25749        8164   7043
#> 2545 2967c556-a7b2-407a-8013-cee8d99b41cf    29507       10910  10903
#> 2546 f3de155c-da4f-4487-abb5-76225a8e3c17    31270       12614  38566
#> 2547 351963c7-bdc1-4966-bed2-845ccddfdfbf    31636       13196  49339
#> 2548 f063865f-624c-45ae-9433-4f9565890665       NA       15169  61803
#> 2549 0224c851-7e91-4e93-9bf8-89a8d72c55ef       NA       15530  56290
#> 2550 22d9354f-3277-4ae6-bfaa-351ce38f1140    29574       11292  10953
#> 2551 639ff90f-285c-44a7-ba8d-6a47d0ecff71    24924        7623   6289
#> 2552 aac96096-362f-4254-952a-5b3b04472f19    31948       13550  51378
#> 2553 0b0b1995-e095-46f2-b973-4da5143c753f    33331       14733  25451
#> 2554 1fc0af83-3c6e-4f4d-aadf-233e501c7241    30848       11987  49282
#> 2555 099c975d-104f-4bac-9815-52346771a515    32913       14835  42512
#> 2556 79d98440-d152-49be-8259-ecec2a3afaa9    32955       14700  49028
#> 2557 7f969cc9-59cd-43e9-bcd0-c1885f0b18b7    31122       12731  25546
#> 2558 c909532a-693e-4e8f-b853-fbf41037c100    29298       11218  10698
#> 2559 a21d1e4a-aae6-4ebe-8f70-1087151b2b50    28266        9746   8982
#> 2560 6c8c270b-7412-452a-a221-7ec5600cc2a3    32461       14213  48981
#> 2561 1a7d431e-f97b-4631-a067-438ed2debe24    32420       14200  42782
#> 2562 8905d02c-c7f7-4a50-901b-6eee71e39cc6    29751       11305  11093
#> 2563                                 <NA>    30749          NA     NA
#> 2564 728571c3-6651-4534-ad27-d86d72dc7d16       NA       15243  44363
#> 2565 dcbe3642-aa52-43e6-8f4c-4b9809377c4d    31851       13465  43742
#> 2566 a78206af-6d78-4b4c-90e3-dc4bd62ac80b    33347       14985  82261
#> 2567 e4114f9d-80da-4e39-bd12-cd9cf2c0d720    31084       12821  48386
#> 2568 e9a7f92c-241c-4172-9874-6eb0c1576899    29630       11428  11027
#> 2569 ff0950aa-357f-47b4-b4dd-d4374413ffc1    32844       14718  57004
#> 2570 bd12a2c0-e6ce-460b-9f09-27b75c306608    32140       13998  44889
#> 2571 1e8324fc-540c-4a95-855a-8c0afcb4957e       NA       15562  57063
#> 2572 e5266a8b-b610-4c5e-9bee-7269917ffd6f    30330       11804  11972
#> 2573 d53cd589-73d6-4aad-ae69-e979670a0d14    24008        6554   5558
#> 2574 3b69032b-a321-4da8-9303-9d21a1970de6    31914       13800  46808
#> 2575 dbce7118-3f7f-42b4-8da4-83a864f91aed    30762       12435  12266
#> 2576 f61e6429-3f9b-478c-8697-e00fe813ce9c    30038       11610     NA
#> 2577 c7d8781f-b9f6-4e0f-b0b6-29fce3985f3e    25871        8222     NA
#> 2578 1817f16b-5ff3-4d64-8d7a-f64e02f5a033    30799       12410  24304
#> 2579 8f442456-427c-4d96-8596-a7928074a094    32427       13774  30462
#> 2580 b0b804c6-b75b-4497-8f47-86ce924f862a    28679       10684  10127
#> 2581 cc67f4a1-99e9-48a9-84f4-245d7425ba6f    31484       12574  50154
#> 2582 28558bf5-c09f-49ec-8cad-0154971728a0       NA       15277  42495
#> 2583 2b13e2a3-22c5-41cc-b13f-30c501f7c810    32206       13860  51497
#> 2584 587fc996-b54f-48ce-8261-adb50b872ec7       NA       15253  57839
#> 2585 8cb76d80-0326-474f-86c8-869a86405777    30170       11965  11812
#> 2586 48dca4c3-c6ac-4122-aee6-26f7cd259824    28410       10351   9455
#> 2587 60d5e71e-e127-463b-8e6b-26a7dac3db76    31011       12883  48600
#> 2588 a4ce9a04-668a-4120-938b-3f05983cc0f3    31214       12716  50592
#> 2589 5554177a-c14b-4931-85c6-fc302eb6770a    30785       12454  12321
#> 2590 8471f3e4-b507-4554-afbb-df333694360b    32582       14293  44583
#> 2591 0813c5eb-608c-4a6d-8bfb-ed3538767e90    30992       12879  50213
#> 2592 29c53cbc-9d94-46af-b46a-674f9c1e5c79    30268       11963  11910
#> 2593 55d7adb4-be58-4c59-9a6e-1ceb73c10c4d    32020       13486  29367
#> 2594 1d1d59bc-ed91-4ed6-adf3-f40d0e296554    30539       12434  12097
#> 2595 6d50cf5f-21a3-45fa-a675-0d266baebb0f       NA       15756  43511
#> 2596 513df09d-7d3a-44a8-873c-34f2fe46326b    24362        7075   6020
#> 2597 496680c4-2432-481b-883c-6f311da3a4a3    26799        8829   7957
#> 2598 88c9dc8c-2952-4e7c-8677-f29e30d15309       NA       15504  30551
#> 2599 2a41d03d-aec1-4821-a241-6fbe1878d3fd    33338       14897  46014
#> 2600 1f301468-0e6e-4a38-9c73-919796ebaca8    27539        9256   8646
#> 2601 a87f6156-c028-4634-84a8-e3388d6dff2b    28892       10644  10017
#> 2602 9aec0e35-cef7-4093-8de6-49868ca8644b     9070        6315   4580
#> 2603 5812204c-6dae-4450-8011-99e0f72864ac    25718        8040   7014
#> 2604 cd571cfc-9b44-4b69-a801-431db9aaa85e    29396       11058  10796
#> 2605 ddff375b-365e-4af1-b9ae-58d03b1b1195    31219       12949  46517
#> 2606 eb3c219d-6489-4f2f-a542-bdbf7423a325    32763       14400  40692
#> 2607 ef21feb3-991e-42d7-bb16-8bc92f7894bf    31457       13135  45691
#> 2608 070850a3-7387-4836-b3eb-b1c8f8731aab    31139       12942  26618
#> 2609 25cc3585-6194-4786-968a-2600db46b6c6    30275       11767  11917
#> 2610 87c481c7-7414-43cc-82df-19ca0c2ae22e    29279       10819  10679
#> 2611 02779042-2b4e-4fa9-b598-364fe01b523a    30202       11685  11844
#> 2612 413b48a9-4af4-4eeb-875c-44ad76b519f5    33342       15161     NA
#> 2613 99c3a17f-afdd-4150-ba51-2120b61823fe    31453       13141  46976
#> 2614 d48dd5f2-79ea-4821-be32-5c177c674bc3    32051       13857  46335
#> 2615 f22b34cf-6ecf-4522-9c77-1da275dfda7d    28531       10251   9576
#> 2616 d0f9112d-2496-450a-9fc5-d2d01b4d2454    28634       10507   9679
#> 2617 7656034d-8647-49e5-b0d4-b708423042ee       NA       15561     NA
#> 2618 b0719e3d-199b-46e5-a2b4-1091f6fd5c0d    30571       12235  51837
#> 2619 d9fcbb62-399e-46c8-8a74-b5f3d96a3fa0    31255       12948  47243
#> 2620 62d557bc-ee99-4703-83f8-e7b1ca0c89e7    33340       15159  47412
#> 2621 92c3ccc0-b808-4852-a65d-c2c7e9118cef    32191       14062  30778
#> 2622 40b8fa44-b289-42dd-9606-a1ae30adc7bc    31220       12529  47327
#> 2623 54c60acc-65ac-4e63-a988-697ee26e862a    31623       13206  47669
#> 2624 c5a8b02c-d380-4f22-a690-b335001de8b7    30241       11697  11883
#> 2625 a3055591-6c57-4ff0-9a2f-5e2547c62820    31464       13064  48100
#> 2626 0b3217b9-ba37-4222-95cb-a7a222441e8b    24793        7242   6158
#> 2627 958c9833-2e55-411a-8e0e-ecc229bbeb14    29609       11256  10918
#> 2628 a9e580f2-1fbe-46fb-887c-c84089b507e4    31883       13432  48327
#> 2629 fcfa9d4b-3e09-46ac-b4b6-77d70a5f304c    29678       11534  11074
#> 2630 5e63e674-adf3-4f4e-929e-4a0ff2cfb1df    33348       14750  47861
#> 2631 2a977d56-5e34-48dc-986a-e862e6886112       NA       15454  61401
#> 2632 6a8b0081-6ac5-4eb7-8840-8fd633568e78    30660       12926  12052
#> 2633 e1d69406-4bcf-46d3-b35f-5ef170e5258b       NA       15466  42349
#> 2634 4d14a6cd-273f-4cf4-aac0-7fe041b6c650    33351       14858 115664
#> 2635 f527c2af-05ac-4086-a35e-8efa1136860d    30956       11823  22917
#> 2636 fb69c7cd-75b1-4431-8648-daec4817974a    30312       11816  11954
#> 2637 446f9da4-8ca7-4552-9674-e0391ae2a2d6    32826       14662  41878
#> 2638 1b1e5bef-13e9-4814-b7ef-7970cbf103b8    28105        9433   9304
#> 2639 7f32c3e6-113f-4922-b51d-a1a5a1d43bcf    28533       10422   9578
#> 2640 5c4ec28a-5393-4073-a71d-df0dad8858c6    26635        8879   7793
#> 2641 5ce96781-4dea-4995-a6ae-7e8ba7acfdbc    28635       10427   9680
#> 2642 46e11bbc-8d8a-4b32-96a0-d059472b8fc6    30646       12040  49357
#> 2643 c967809a-7c88-447d-9d9f-6aebfc8370f7    29258       11067  10658
#> 2644 fde0f790-29a9-4212-a357-17657055c1db    30265       12014  11907
#> 2645 3f178f8f-97fc-491c-ae5a-4c2544e611ef    31402       12834  49379
#> 2646 81ba31db-e21a-4944-8d0f-4e12cb83e3c4    29318       11038  10718
#> 2647 a9c41c5b-0dcf-40cc-a76c-644307f2f2df    28421       10057   9466
#> 2648 6c582650-e297-470b-bb43-f9a1cee68417       NA       15598  55087
#> 2649 6e91b25a-4bf4-4a53-a328-69d3e7ef86c1    28785       10701   9940
#> 2650 eff8e3ec-98e4-49c8-b865-436e3abb0870    32886       14381  55800
#> 2651 19dd3c47-6da2-4baa-8f4d-c44c152924f2       NA       15479  56061
#> 2652 186a4bda-d3b3-48c1-8ed7-cb4ad1014062    31582       12827  50406
#> 2653 d187953e-102f-4f78-b840-79fb385fa15a    31079       12914  49260
#> 2654 226d3b7d-f8d9-4dfe-86b9-ba710eafaced    31666       12970  48387
#> 2655 63758554-7225-48de-a553-c43c03419c49    32899       14729  48455
#> 2656 e3601423-c3ac-4013-bbe9-3478e2b7e1dd    31858       13745  27271
#> 2657 8d617c67-6e6a-4afd-b5c8-f98dd744c36d    32903       14753  38472
#> 2658 16913d50-4fcd-401e-abb8-3a9fdfd24de5       NA       15480  44184
#> 2659 9947409c-4a34-45f5-99a1-aa6daa13c430    32672       14452  56436
#> 2660 38bf12bf-5a77-4b2a-9d2a-e63008fe8be1    32073       13807  48426
#> 2661 8b497077-73c5-4e3c-a1b6-348b579ec02c       NA       15312  42806
#> 2662 f024c29d-c4e6-4f23-b8e5-c7788bc87e47    28439       10317   9484
#> 2663 0777efdd-14bf-4561-bbb4-20f926fe115c    29386       11063  10786
#> 2664 4faa0d20-a129-4bb4-9fb1-10690c00641c    33185       14947 117753
#> 2665 0a1be8da-5839-4768-bfe5-9fec74908268    30983       12618  48698
#> 2666 6e8d8647-209a-4985-a346-70197e587f10    33203       15003  49963
#> 2667 39e4f09f-54bd-4d2c-9d71-c6e35d1bd0b0    32198       13625  48922
#> 2668 8442c8f8-7fbb-4a0b-8407-355c2dfdf72c    31133       12544  48966
#> 2669 8a73dcfa-3e7c-4a8d-acee-7d2b1fee6c2e    28501       10321   9546
#> 2670 5ba11bd2-e764-4dea-98e1-dad01a21cdd3    30130       11900  11772
#> 2671 686cab35-6da0-4e10-ba65-0d1f97e0bc8b    30305       12208  11948
#> 2672 cb4059d0-1b9a-437c-a8d8-b33f8a327e54       NA          NA     NA
#> 2673 e33df0c0-1f12-450a-a178-b7e5478c479e    32476       13441  46082
#> 2674 8b7ee20f-238e-4b6f-b43d-4f9624bf2534    32432       13845  46676
#> 2675 a12890df-5475-4689-895c-6b54abc71b1f    29429       11230  10829
#> 2676 d6ac9c49-ef2f-44be-a5df-dc57ce23fcc9    32450       13580  46801
#> 2677 9aac7466-6718-4c40-9431-e51a3bfa0ab0    28393       10257   9438
#> 2678 ef4998e0-c9ef-4afe-88ab-d09b48975a08    32384       14172     NA
#> 2679 ebc1fb19-90ac-4a76-a878-d1760e7f3636       NA       15723     NA
#> 2680 a76abacb-2309-477c-b075-ec05ccf938ae    26673        8696   7831
#> 2681 677a2fa2-55d5-4a1f-b56f-1f97b0a4b61a    28557       10469   9602
#> 2682 8ca83e4e-d3a5-4dcb-a917-e58e36b77721    33321       14553  43858
#> 2683 6484ba1b-2145-46fb-83f7-c38baa3080c0       NA       15375  57905
#> 2684 e7b9abe1-2a5f-4029-90f5-7fd174750093    29505       11149  11011
#> 2685 fceeeac9-470d-4864-bc19-36c5d03013b0    32151       14257  38548
#> 2686 c75717d2-be1d-4305-9bae-5a18d9cedca6       NA       15388  43421
#> 2687 5c52edd1-7566-483d-9564-03c21438fb29    32832       14480  49073
#> 2688 c727b9d9-9776-415d-953c-9ae046e10a05    32005       13700  49753
#> 2689 dcf4a3aa-6fb8-4b50-a246-358fffa55af8       NA       15652     NA
#> 2690 6ffeb3fd-dd6f-4b03-95a9-da9908005415       NA       15213  60114
#> 2691 9be53b35-e7fe-4f28-97bc-09d87f782ced    28502       10294   9547
#> 2692 1fc0823d-73ff-4657-9c85-f4527abd6a12    31254       13284  26461
#> 2693 55e1ecbd-96c5-456e-833b-9cd3f046f3fc    26945        9832   8358
#> 2694 2c259733-ec2c-4e3c-bb7b-34dc0d37dc34    28839       10179   9896
#> 2695 d2023f5b-f73b-43ad-a816-f10dadfdfaed    31301       12623  26152
#> 2696 0742d2ea-1cf2-49a6-a150-77ba6e034d8c     7426        4385   2467
#> 2697 56073e7b-84ca-4d4a-a2e7-1bfc0277e8d4    27742        9776   8848
#> 2698 260e8f87-1d08-4c69-8e2b-afa825c1a68a    29650       11312  11047
#> 2699 2d16fcef-89b8-4a92-844f-a92c4e20b5c9    31302       13233  47542
#> 2700 c7d0a740-fcf2-4971-b1b6-43761d984bf9    29387       10806  10787
#> 2701 697200ea-cabb-40b8-aeac-e52763310306    29390       10851  10790
#> 2702 c0a8a5d0-583f-457a-9d96-70027d3f69e7    32736       14639  78050
#> 2703 82996e3b-b72d-41ca-8eb1-91e462ceff85       NA       15315  77745
#> 2704 40a38dc1-6355-4467-9064-07e2d063f558    27774        9631   8880
#> 2705 c8fc4151-7d5b-49d3-b269-e5b2b1246736    32778       14516  59820
#> 2706 dfdbe925-912e-4eca-9a71-e38cd3c88479    28397       10263   9442
#> 2707 bb414aa3-f682-426b-abec-042edf34296d    31544       13270  46936
#> 2708 4c22d0dd-3f8e-4abf-84ca-7f08c046e3a5    28000        9429   9025
#> 2709 3610560c-c2c1-4649-9554-ceca409ae27f       NA       15586 143769
#> 2710 52735659-a294-4f64-a7f4-3591450834e5    30494       11876  12020
#> 2711 b24625a0-d402-4d59-a778-aa4b073bfe5e    27648        9323   8755
#> 2712 870e89e7-018a-466b-adff-d0fe872b3e20    31161       12920     NA
#> 2713 3208880b-949f-4926-85eb-1940770550ea       NA       15289  42275
#> 2714 02fc59d0-8a66-431f-97fc-21fdc096eb14    29411       11009  10811
#> 2715 7bb0744a-c93f-401b-9091-2a34072a40c2    32812       14568  39993
#> 2716 9ae2584a-40c1-4b30-be34-a9567659eacd    28947       10234   9859
#> 2717 cab3a948-e9a2-4b3d-b893-020836be00d2       NA       15569  84147
#> 2718 66a21b6d-97e5-4732-8bb0-062145d6bbc6    30153       11710  11795
#> 2719 7e8c4641-2beb-4213-ba22-69fe0307005f    31908       13536  48229
#> 2720 f4f11bc2-2fe6-4da8-a83c-63085788e789    31405       13101  47908
#> 2721 d3cc6f89-56d8-45e9-87f0-3a1a56f97bc6    32038       13428  47931
#> 2722 d6d41a89-a8af-48b9-bf75-561de99a1d87    29070       10680  10075
#> 2723 0fb60ada-bdd3-4d74-8c98-058303a1649a       NA       15274  77986
#> 2724 fa7983c1-408c-4aa5-9723-efbf039db351    29540       11501  10980
#> 2725 041c36ad-0d7d-4ed1-8157-95092b3027a4    24802        7548   6167
#> 2726 766bff49-4d79-4e44-a53c-ba9f8714b7f6    27778        9789   8884
#> 2727 03611d74-221a-4436-913f-d23f95542598    30561       12436  12280
#> 2728 2182217e-7580-4602-babb-c73beee0eb2b    29627       11427  11024
#> 2729 93eb4e28-a809-4192-82dc-783ab472323d    29788       11455  11257
#> 2730 d503e3cf-861d-4b06-8de8-f66b1b72a3bf     8313        5294   3675
#> 2731 49606a1d-e06e-4cde-8528-f1adca8bd5fa    29212       10774  10345
#> 2732 294acd0c-63a9-429e-afaa-2bfeb00d7988    25805        8310   7095
#> 2733 f7163bae-d4da-4d38-847e-e0315605b9d0     9490        6215   5150
#> 2734 bffc773e-0286-4c48-933f-17ccd9c805d6    31721       13339  21865
#> 2735 ae34c85c-a174-4f6e-b11a-f3b56e3c230f    32526          NA     NA
#> 2736 8ae7ee0a-772f-441e-be2e-45508751d44b    32099       13680  28746
#> 2737 f42981b3-d272-4438-a024-f28277392ec8    27571        9431   8678
#> 2738 6c2c4e4c-82f0-46e2-bcfb-3ed5f452266b    23993        6563   5543
#> 2739 d06b5a20-97d9-477f-bd3b-bb454575c8a8    31801       12709  45591
#> 2740 dfa9fbe0-286b-456f-966e-14a9f70cb85e    31413       13104  46084
#> 2741 2ae2aec7-ff82-4d2f-85ad-bba52ac09650    32133       14017  25158
#> 2742 7e3c0631-1bff-49af-b6bc-9c66c59a579d    25808        8330   7098
#> 2743 dea8f688-602c-4b48-946f-e634fb81d737    26654        8631   7812
#> 2744 d80bd709-da27-4f3f-884b-a1e420191453    32489       13949  91475
#> 2745 c1d07724-541c-49e3-bfbb-6843786de72e    28077        9658   9148
#> 2746 8c2d4bf5-e654-4a8b-a17a-f81d6aebb030    31617       13295  45599
#> 2747 dadcbaf3-cd13-43dd-8b7a-9f81db468872    26874        9574   8034
#> 2748 0e20c25d-437d-45b2-86f1-73bbd2d22c0d    31108       12801  46953
#> 2749 3a3a069f-906e-4fa5-94ad-4cfd4e47b1e8    29093       10605  10060
#> 2750 d03aa6ca-ae90-44cb-954f-507213a73b22    24950        7614   6315
#> 2751 fd8d401a-0c57-4078-a29e-2ad3b07e06ad    32117       14028  26727
#> 2752 b05edab1-92b7-45f0-a6a8-4ded382332f3    27598        9434   8705
#> 2753 7f87c105-e608-4911-8897-31cc5a443175     8964        6404   4501
#> 2754 00eb19cd-bd8f-4f2a-98e7-a718d50ad66a    27701        9428   8808
#> 2755 4db7ca4c-e0b3-4652-b311-6711c816c96c    31535       13264     NA
#> 2756 ed6cf80a-b7d1-4a99-8a29-63b5c620bcd4    27604        9430   8711
#> 2757 30e8767e-a208-494d-b684-4f1905e0ac10    29449       11235  10849
#> 2758 b9d781a5-8049-48d8-a2eb-9b7ef61f22ec    31260       12655  46610
#> 2759 5dd5a4bf-08f1-46e1-bf31-eab422cef869    29362       10911  10762
#> 2760 e9596e01-6469-4245-b5f9-d68a6718e4a4    32562       14247  30032
#> 2761 d33249f0-02fb-4c18-a73a-af8930ad27af    28722       10866   9794
#> 2762 53425600-c59d-4e89-867b-86affd42c13d    31476       12857     NA
#> 2763 bdebbb66-ceff-4cc9-b74f-00e14be21530    29752       11242  11094
#> 2764 5d03f256-0569-4908-a0bf-5f95325c8be3    27606        9447   8713
#> 2765 45f92801-156d-4488-a164-b9e527a6b72d    30521       12432  12120
#> 2766 778bde7d-c328-439d-a2ac-7f9d1ce23df9    32144       13717  45568
#> 2767 99fb51a5-1ab1-4818-90aa-f0c10944067d    32407       14022  46763
#> 2768 8d77a320-4b95-498b-ba8e-f1db36f033cb    31475       12682  45578
#> 2769 a1cb7e9f-cd33-4c3f-9321-0c2258750eac    30385       11786  12058
#> 2770 95abcdcb-16c4-4a13-8b52-ecd499c25c07    32554       14268  29378
#> 2771 a6025030-596c-4829-9138-8281df21d841    26730        8634   7889
#> 2772 f1decd46-ab7c-4ed9-a1ff-844a63bb091e    31767          NA  26384
#> 2773 4454ebd3-84f9-40d1-8d7d-8917929b6af5    30397       12982  22381
#> 2774 5f642a99-fc5b-4cae-b23d-8d043681b264    31522       13384     NA
#> 2775 386e226c-faf0-4336-82f1-9e57d76ed617    29669       12362  11065
#> 2776 1818c219-44ae-4cd4-b8fe-5d93e596e936    27733        9772   8839
#> 2777 a64aaa83-6381-4b2c-84b2-daf2002c9060    28610       10494   9655
#> 2778 9ca42d97-d764-4446-b69a-a76fb7b5363c    32240       14086  28134
#> 2779 c3d1c1bd-0552-405f-9fe4-b99925e7ec15    31432       13110  39377
#> 2780 b1674df8-2270-4ade-a168-00159259c0b8     9313        6055   4972
#> 2781 5b6c34e0-6b28-4c60-b31b-0aba6290c546    27639        9444   8746
#> 2782 db4eadbd-ef43-444c-9e33-1ee781dc9965    30329       12035  11971
#> 2783 bb6c7928-54f1-43bd-bf14-f2645644dda9    24918        7518   6283
#> 2784 2cf86b24-50e1-4047-83cb-afd82b17aa91    30865       12317  12338
#> 2785 38709da2-bd62-45f9-a7cd-f209879aca81    26875        9082   8035
#> 2786 b8fa8d21-898c-4718-9b4e-f512c6414b28    29483       11246  10883
#> 2787 3ade957d-5c6f-4f8d-8d56-fdaae1753aa2    29487       11248  10887
#> 2788 bdeffac7-3509-4689-af1b-29e9fe86b008    32120       14027  48212
#> 2789 8cd557fb-94df-48c2-8665-198e5c8be20b    25776        8211   7068
#> 2790 750877e5-ccdd-4072-9e1c-8d957e45b561    32053       13780  49431
#> 2791 2ba5bdad-0b7c-4637-89a3-5b7b34d215b0    26674        8643   7832
#> 2792 a3012bb8-118f-41f9-a010-e264499ff750    30316       12210  11959
#> 2793 4f799675-2b27-4437-9acc-bc4e0c73ef0f    24685        7236   6017
#> 2794 3f9d4b4d-2c3d-417e-a95b-714520b309be    27596        9316   8703
#> 2795 3e310944-48c8-4d57-8e44-2a76e789980f    31524       12707  49365
#> 2796 a2015dbb-fd0b-46fc-ad19-eb387605f244    25825        8320   7115
#> 2797 e2ef7b61-cf9d-47ab-927a-77759412ceb1    26691        8649   7849
#> 2798 76c630cf-0fd3-4210-a73d-9347da9d9d66    27642        9337   8749
#> 2799 1e3967fb-21cc-43b8-9f36-1c2e3b280cec     9289        5984   4948
#> 2800 b2e66f2f-5b53-4e72-bbd6-83c948f3b7de    26082        8440   7362
#> 2801 21f0649c-8f52-4837-8d63-baa836bbf58f    32252       13503  49433
#> 2802 b381794c-a1e3-4659-9ae6-766d3d943909    28468       10417   9513
#> 2803 73cdb8ae-7e5b-4025-aee5-6891ed3500a1       NA       14264  26516
#> 2804 24a847e7-8a4e-4123-967c-bd6145d9c3ec    24007        6620   5557
#> 2805 8796d7af-c72c-4a1e-9665-677afd849a52    28630       10437   9675
#> 2806 812c5dd0-4da5-498e-bf8c-4efdd885973a    29589       11301  10961
#> 2807 08b0d908-ad25-4b05-8b44-8c60eabb76a8    26571        8566   7624
#> 2808 2f01f1dc-8e8c-4d74-95d9-1b36b42257fb    29729       11446  11149
#> 2809 0d91f918-0ad1-42c7-9eff-adecc72ca442    30607       12453  12105
#> 2810 40002ab5-a6c3-4ab5-84ac-6502c8f3e904    31418       13371  49361
#> 2811 d00ac1d2-dd0d-4362-bfb3-29c9f29d2671    31690       13205  66956
#> 2812 588022c3-f9c6-4f30-b4ea-a264f99fc997    25994        8596   7450
#> 2813 11ed92b3-c1d1-46e9-87d9-387fd3280e4f       NA          NA  42965
#> 2814 695d16fa-1c4e-4ce4-9d2c-0e117b4fa577    30569       12233  12242
#> 2815 5c6f3e4a-dee5-4aae-a128-14d638293a75    31756       12873  68148
#> 2816 7979b613-6dbf-4534-8166-6430433c1ec3     8607        5848   3589
#> 2817 ab49bafe-7023-46ce-9606-9a9823eabee6    28244        9944   9040
#> 2818 4f260130-570b-4a37-9f17-193b6c9cc025    28639       10505   9684
#> 2819 d2e89432-b9e3-4beb-a795-f0e9f6756efb    29079       10795  10080
#> 2820 c0cfe76c-0633-4b6b-b282-02ca9911cabd    28544       10227   9589
#> 2821 3e5858a5-d0b8-44ba-94f0-e341b1139676    30859       12259  12328
#> 2822 85a051d3-3f76-411d-a59e-82d04a971c3a     8909        5810   4457
#> 2823 23893852-6ef4-48a9-99a0-c51f41670508     8906        5878   4454
#> 2824 2cffbed2-3e4f-4051-b5b1-b6b2b7c484f6    29741       11278  11197
#> 2825 8ed1ce29-8bbb-417b-9766-5de8fdfb4606    32379       14159  34280
#> 2826 8076f480-6c59-4aa3-8e19-71a9d5227e4b    26939        9874   8359
#> 2827 e7f4b773-e944-4b62-a67b-fa0968862a37    29534       11494  11004
#> 2828 76392d70-bbcb-429c-82df-853b72a926de    28637       10509   9682
#> 2829 7e4cc74a-0ae2-422f-ab7e-dc26fc116d92    30549       12030  12095
#> 2830 7e5aaa20-df98-403f-92df-c3cc2ca9907d    29808       11475  11170
#> 2831 eee79103-9ded-4a79-812b-b9b18da20135    29723       11442  11145
#> 2832 a69f9855-327c-4618-bdfd-cd913b31904f       NA       14107  94364
#> 2833 872bbe18-ea66-415c-b556-6d15bda05b0e    29077       10706  10073
#> 2834 2ded061c-1061-4c92-b417-c6ef04134c8c       NA       13563  50541
#> 2835 7ba5935c-0e54-4ad0-b90e-ff4af7d62b85    29925       11506  11310
#> 2836 cff07c85-137a-4496-8df9-4f96f68f1318    32095       14032  30126
#> 2837 0d50cb7b-d179-41b7-b4bd-acc4c05e2d8a    29771       11328  11129
#> 2838 6eae8044-47a4-4cd8-9c4e-6539afdf3837    31152       12767  50451
#> 2839 101b9211-4f92-4024-8978-b4df2eec3c74    27708        9768   8815
#> 2840 02eb6a66-8d0d-42a4-a2c9-10e028908910    28204       10001   9115
#> 2841 af433e33-5d77-47fd-b6ef-70815e6aa0a1    30450       12649  47970
#> 2842 57d6fd4d-29e1-46cf-a3b0-601cc5b3d48d    30846       12347  37997
#> 2843 e0d47951-fea7-4f2a-a936-f4d758ea6b83    25716        8162   7012
#> 2844                                 <NA>       NA       12380  12063
#> 2845 4296dd5b-261c-4c64-b1e2-e2afcda719c5    31211       12751  49354
#> 2846 688f7a3b-4d66-4fcf-802d-6a3cb133ea30    24578        7140   5903
#> 2847 3461b2e5-e015-4f0f-a2a4-a5116732ca98       NA       13594     NA
#> 2848 dbe9a91f-bc71-48a2-aaeb-8f7f3d3fec14    31297       13208  43029
#> 2849 fc309bb0-d8f9-49a8-b2d3-5c6eea4dec24    24960        7603   6325
#> 2850 a4f5b5d2-e56f-45e4-b448-ce8ac8b77706    29896       11373  11126
#> 2851 e8e8cc9e-678e-4da1-8a23-cb53f15a9b9a    30348       12170  11990
#> 2852 075a78d5-72fd-440e-ae25-f22b57835ec4    28570       10475   9615
#> 2853 89f84d50-39b0-4a76-a004-d18b1c255413    29412       10896  10812
#> 2854 bb4823e2-f2d4-4910-8528-a762f8db449b    31385       12580  50450
#> 2855 a24108bd-87b2-47c2-903e-d38e35a02652    30732       14511  51223
#> 2856 4a69f085-8bef-4b3c-a66e-cab65b3fcb7a     6341        3008   1321
#> 2857 accab0d5-2f39-4a5c-a595-c029cb6a9c05    29684       11538  11080
#> 2858 4990de3e-553a-4cae-9ce8-c3d1f4eb6bbc    32365       14185  50342
#> 2859 226723b9-fddf-45ca-8245-d8cc5442c400    26677        8644   7835
#> 2860 ae269fa8-85d9-4d95-b0e2-6d0451dd9425    30282       12012  11924
#> 2861 1d5562b1-78c3-4d48-87ee-1b7ce1e0d5cb    32371       14162  33464
#> 2862 0553c32c-4b9d-4ea9-811d-6d58c1985c9b    32331       13849     NA
#> 2863 fabca6af-000d-42a9-8a90-524f401a9774    30620       12282  12118
#> 2864 036fd3fc-e7a0-4f75-9019-8a5badff5e5f    25401        7937   6871
#> 2865 034cade9-af0c-4c85-b5c6-9d6ada777dcd    31236       13150  50445
#> 2866 eb264430-a673-41be-9d81-588d9a9e10e1    31764       13359  13822
#> 2867 b2ee8205-9bb6-41e6-814d-40433673e172    29916       10934  11337
#> 2868 14d50779-5b08-44c0-9ae1-6f05b1b8a4f9    29536       11493     NA
#> 2869 169612b8-67e4-4b1c-bb0d-c73967ac583e    31632       13269  66952
#> 2870 b9523f29-adfa-4382-98f2-611c590bb526    29956       11515  11352
#> 2871 28270bed-0130-4ef3-aee9-c7069a662c46    30335       12027  11977
#> 2872 3565220d-9fa0-497d-9fa1-e3bea7c302e8    32609       14316  28605
#> 2873 8564968a-505e-4954-81a3-3d288204cf91    31521       13415  50549
#> 2874 d461a676-a2f4-4e26-b851-60af14b00ca7    30239       12036     NA
#> 2875 3390c94a-f1f2-4be0-9787-5cc9fd8c64f7    30664       12421  49453
#> 2876 db7c756b-a340-47fa-bdd5-5556fac68d20    30619       12404  12117
#> 2877 b8e9269d-2310-4dcc-a225-6bcf47d8e5fc    30744       12399  12287
#> 2878 08770f4a-4b29-490e-b76a-f60d87fdc414    30014       11407  11418
#> 2879 976fdc88-10c2-469b-8ee4-c96de6805339    31368          NA  49372
#> 2880 27f3694c-a9a1-4c64-ab84-45bdea45d44e    31233       12462  50414
#> 2881 7b378e5b-6414-4bc2-8ee8-c196d2ed7d78    30628       14605  49137
#> 2882 6d9fad01-7167-4291-9523-3f72d6837d4c    27989        9960   9252
#> 2883 655f87b9-e129-4271-8b90-8ff3c9b9d4e9    31814       13570     NA
#> 2884 b7b3c187-7447-4d02-94b7-5d3ee64ca530    26122        8584   7716
#> 2885 f2d31944-cc46-46e0-bdeb-5cd99ab366a4       NA       14167  56047
#> 2886 113045ba-c7e5-4a91-a089-bc1bbcf55008    26737        8830   7896
#> 2887 5161ce0c-a12d-4daa-9176-eb9edee80c37    27725        9699   8832
#> 2888 56e7b803-c110-4ff8-b097-7e3a7e7c0a9c    25833        8166   7123
#> 2889 2b76130f-5a38-429e-a620-9c5b1cd557b7       NA       14298  39342
#> 2890 42cbcd13-4fbc-4cea-905b-85d2c0b0ff55    26713        8905   7871
#> 2891 a2907a39-139b-483f-8369-e278c26a6951     8424        6211   3786
#> 2892 47abba7f-63e6-41e5-ac8f-9b3f274db595    31703       13313  49337
#> 2893 207d740a-6c64-449a-bd24-b90aa85934d3    28509       10421   9554
#> 2894 c0520c25-b89b-4f4b-a905-dd0c5612cf88    31158       12991  51583
#> 2895 ebfdad99-5262-4d16-9024-85583947d544    27608        9690   8715
#> 2896 bc41be9e-edb3-4582-b2eb-c7177dd6d979    31273       13044  42401
#> 2897 2023386f-584e-4cd3-b4e6-491cda3fee31    26043        8170   7385
#> 2898 1413a204-0c2e-40d4-b1fe-15ada63dfb4a    29848       11529  11243
#> 2899 06dab231-dbbd-4ccb-8233-3c2d70318ee3     7773        4768   2969
#> 2900 ba95b150-fad0-4a8d-b15d-a5e318d95b7f    30491       12929  12017
#> 2901 98649d6d-839b-48eb-a92d-e57f82807841    31406          NA  49351
#> 2902 6311b3ee-d514-415a-941c-4bda88a6bb55    30495       12029  12021
#> 2903 221abfe3-f41c-4c1f-aa88-ca06fc57ed8e    24876        7517   6241
#> 2904 3f05e230-38fb-4caa-b488-69e034ecdc03    28656       10685   9784
#> 2905 6a85f300-518d-4c97-860d-c69713649c58    29564       11285     NA
#> 2906 b9e6500f-2bb4-47b1-a3ea-1e3f925a3743    28418       10387   9463
#> 2907 be4f1dbd-6ffd-4054-9f49-cc398d4ce5f3    29962       11656  11358
#> 2908 ab7df007-37bf-407b-b77d-0e719c80f065    27716        9335   8823
#> 2909 ac65cfa3-1db6-40c1-a3f8-563767d599ef    30776       12465  12192
#> 2910 5927b542-db0f-445f-b6cd-eb8c9e80c427     8797        5591   4334
#> 2911 1bba6a5c-9759-4559-a6c3-4b2ffffa1ab8    28959       10832   9974
#> 2912 b76155e8-ea98-4dbc-b0b6-13cd1b0fc5db    31295       13252  52165
#> 2913 69d9c13c-2293-4eed-ae35-01c90dd45c1b     7182        4457   2223
#> 2914 1eb8ad96-b4f3-461e-81a3-0a4e08844f73    27007        8651   8483
#> 2915 716c039e-a1c7-42f7-87f9-ff414df726d3    28430       10405   9475
#> 2916 5aace1be-df36-4efc-92d9-b4bca2314eb2    30601       12598  12152
#> 2917 30c9d379-80f5-4d53-a05f-2aca8c208e8f    31192       13001     NA
#> 2918 a486fc4b-e475-4ff2-b22a-f454c266819a    26962        9162   8142
#> 2919 10af66eb-88ac-456d-8d47-d7c1e19c8b30    28270        9830   9135
#> 2920 ecd53958-08c3-4ef0-8984-ec68d58deec1    30210       12033  11852
#> 2921 86476721-3f9e-4ad1-8c7a-40be5a43e602    28471       10418   9516
#> 2922 5661762f-9cf4-4cc2-b9fe-4cbe58f4ad28    32286       14143  94367
#> 2923 9dc422e6-f4ce-4bc9-b8bc-7ff946b51a8b     9480        6242   5140
#> 2924 d6f6362d-4e7d-4278-8471-780da7a203a7    31658       12955     NA
#> 2925 5f55d5e7-1ff5-4ace-830a-920fe46acb88    31672       13045  39373
#> 2926 20da5dae-7faa-42d0-8b97-0ce3e3beee43    28715       10840  10294
#> 2927 e5bd7067-d9ac-4aee-a073-3f345cf8191c    29847       11053  11227
#> 2928 6775c8ae-1966-43c6-a61a-147ea5d112ff    30093       11704  11517
#> 2929 e4538897-a749-41a8-8220-332e8229ac41    25775        8167   7067
#> 2930 5bb30e2d-868a-4597-94dd-0e0f6ab76d66    32500       13690  50439
#> 2931 588d8e04-98dc-478a-b3ba-9e3cb58d9afc    32092       14031  35173
#> 2932 31ac1b75-5119-47b1-9ca0-5b8c329c95b4    31600       13227  50416
#> 2933 a0b23166-6964-4d52-a7b4-9705b61a7e56    29439       11136  10839
#> 2934 e972d67d-8302-4c64-9c1c-bc3121b90af4    25727        8163   7023
#> 2935 342fe758-e8d0-4baf-af71-1fa568197837    29294       11075  10694
#> 2936 44750689-c0ca-4d26-86eb-ed40882f00f6    32070       13966  94352
#> 2937 4c0a966e-797d-4e60-8ba9-a67b5749ec5f    27676        9618   8783
#> 2938 87dd051c-c8c0-4c96-bec7-d342f5ba4797    28237        9952   8989
#> 2939 60798c13-45d8-4a6d-b04f-0afe219e3cbe    32269       14105     NA
#> 2940 640710b9-72f2-47e1-9afa-f3070b23c119     8212        5861   3558
#> 2941 16340de5-372b-4c20-953f-07a0fe26be69     8272        5348   3634
#> 2942 ed34cf85-1e5f-4967-89b0-3ff70e5555fa    26666        8638   7824
#> 2943 2238219b-a0bc-464f-b83d-ff902e65bb87    31314       12758  50381
#> 2944 5e12087c-579d-4ab8-a5b8-4d6b89331337    27586        9381   8693
#> 2945 c881b179-070d-4289-909f-4d3594abbd79     8793        5749   4330
#> 2946 5f173aec-86fc-40b5-b0ae-805b46476022    27615        9710   8722
#> 2947 cb06f6d9-def7-497f-b81d-45dc84d095af    30683       12021  12138
#> 2948 12f4a38f-17b4-42b1-a1e6-9fd6ef08d150    28404       10449   9449
#> 2949 d3c47b87-1554-4afe-ab8f-d5e801706fc3    28450       10410   9495
#> 2950 f4c38645-25d8-4046-918a-9285328d02ba    31631          NA  51138
#> 2951 cc8a671b-bf32-4bd5-ac4e-d294feebe3d8    32112       14026  49482
#> 2952 ae0de04e-f10b-46ba-b650-2a5c30d48cd9    26366        8562   7374
#> 2953 e0b78e61-b0b9-4115-95f5-ad8d6013d685    28552       10425   9597
#> 2954 94b57778-d6dc-47d1-b7e6-6d844bccdbe8    29407       11224  10807
#> 2955 9be29984-4ae2-4ed7-9cf3-7ec32e7be408    31755       13362  49414
#> 2956 980aabf5-3127-4b80-83e7-ac91327e848e    30821       12107  49551
#> 2957 dde27047-788e-4b68-acfd-d0f241c6fba2    31499       12833  50418
#> 2958 fcd3369e-e1e1-40da-afb6-d8296a1b89a3    31409       13107  51231
#> 2959 c42dbe37-e779-489c-b5ad-c5749544a2bf    28136       10445   9198
#> 2960 972d6237-1b3b-4b6b-a789-b5ca8391ed90    28925       10396   9925
#> 2961 337a330a-331b-4901-b07f-c3582586c2be    29724       11575  11189
#> 2962 8e06b4a9-d210-465c-80b7-9bae20dc64b2    30381       12091  50361
#> 2963 74b40266-cab7-4c5f-9f72-b560f7457a55    24508        7017   5943
#> 2964 0b36513e-6dfa-406b-9198-619d090e6e8d    30479       12535     NA
#> 2965 74940b12-6b27-496a-9113-d9139e38056c    29706       11377  11110
#> 2966 44d917f8-d9e4-4b12-a107-0330156a92dd    29391       11175  10791
#> 2967 d29c218d-72f8-4351-895b-1a47554fe580    30443       12887  49554
#> 2968 9a2e65ef-64be-42f2-941c-863cee5e910b    30913       12534  51668
#> 2969 ff05fdc3-e3a4-4d18-861e-5b1f8553d773    27698        9611   8805
#> 2970 940cfc9c-4420-4ba9-8ae1-a7db9f04c80b    31630       13191  50446
#> 2971 06ed4b06-29d4-49a4-8bba-1bb63184255a    24079        6635   5628
#> 2972 96f646e2-0984-4092-8031-22d2bf9b620c    30137       12011  11779
#> 2973 48c9c22c-6903-455d-bcaa-9562b440b690       NA       13380  29427
#> 2974 b9d69750-a1b9-4b59-a679-4900c672cc97    32550       14266  34739
#> 2975 2b9494e4-953a-4aac-afe7-edd2d7be27da    25877        8335   7159
#> 2976 d5fde14a-1f7e-4db7-ad67-e6ea1cd415e2    30208       11992  11849
#> 2977 80cd039e-08e5-48ef-935d-ac46db36460d    24837        7527   6202
#> 2978 f1879cfa-4c07-4140-9da0-c7ebe9af2dfd    24806        7509   6171
#> 2979 3e75960b-f28a-4221-8800-fde346336b0f    32397       14193  49054
#> 2980 4ec41407-aa4d-4193-af06-b9795cb9aecc    31498       13066  50449
#> 2981 a494c7f4-3d8a-4a2c-ae0c-95dd6855f719    31055       12550  51241
#> 2982 fe30ca46-c995-46ce-bca3-12451bfb5ad8    32280       14133  94366
#> 2983 1e8293b4-25ec-479d-83b3-ef231d84ebca    32218       13863  38567
#> 2984 3c151ffc-4fd3-4785-96e0-3a257e99706a    30169       12002  11811
#> 2985 95058b9a-e9a3-4021-a622-5bce275e3433       NA       14245  27015
#> 2986 4ca2f25d-7a0c-42e2-9b35-c9b9a025990b    27656        9303   8763
#> 2987 e6357477-ecbf-4489-a0cd-49a6a4feb807    32510       13694  91420
#> 2988 6bc584ed-82c0-486f-962d-377be6ae8469    24120        6732   5667
#> 2989 d45eb662-6dcf-4e6a-ad14-bc610ab65deb    32333       14100     NA
#> 2990 e634c38b-d446-4111-a7e5-3c46345f55b0    32568       14250  94381
#> 2991 dfa638bd-7c3a-4269-8b39-b9e6b2148a41    29062       10658  10109
#> 2992 55473843-5bc3-4673-9175-3d7203aef040    29997       11516  11392
#> 2993 be382b2e-a4ef-4c83-a054-7bc75b0e0d99    32228       13578  33565
#> 2994 b0a7f6dc-0409-43fb-81c7-fbd8629445a3    31375       12960  49378
#> 2995 de6f20c5-7028-4ecc-82e8-6516ab1c470a    32591       13902  49066
#> 2996 374036ec-f329-4098-8972-0d9ca326fd37    31433       13111  24750
#> 2997 83f36348-3a45-4839-984c-896ca5a551f2    32618       14322  33053
#> 2998 33db338e-fe3e-4d99-9abf-a5ae0fd778a0    31675       13047  12727
#> 2999 486d1b54-2f4a-4fe1-8935-c8659a8dc942    30652       12149  51190
#> 3000 144ef260-a22e-45df-9bbe-52a11f9188ba    27715        9671   8822
#> 3001 978eb5b8-9ae9-473e-a1ef-1ad2bd1b7ae5    29438       11120  10838
#> 3002 b8db855b-fd1f-46e6-ac23-466f68130e6c    32009       13702  49037
#> 3003 66e7cb60-bf2e-41a5-96c1-4f7d4f8f9cda    32435       13770  49390
#> 3004 f8f7c003-1c6d-4715-bef7-5238bdb600dd    31754       15178  51427
#> 3005 b4464e0d-acbf-4a69-9450-ca7d59e8dff9    30794       12409  21515
#> 3006 c6392013-57ae-46b3-8a86-791f94bc0c79    28497       10454   9542
#> 3007 3d988522-2246-4517-8537-c1bfa7989f79    32329       13886     NA
#> 3008 c7cc7627-6f90-414b-b60b-23869a4308cd    32594       14303  26748
#> 3009 22903cb0-f58b-4fde-997e-5764769770ea    32535       14019  94373
#> 3010 5c453cab-dfd6-4c8f-ad31-f872229c6e06    24828        7470   6193
#> 3011 10a361ab-933c-46b6-bd83-3e10896813b8    31710       13308  66964
#> 3012 d1d46ded-4585-4760-81b4-62b80d31a3b0    28396        9261   9441
#> 3013 399071d5-6918-40ad-9f1b-8ee787ee8cd2    30880       12761  25967
#> 3014 63ed4efa-6dcd-40f5-ae8a-d6221ac0ead5    31645       12554  48510
#> 3015 3d22209a-9800-4199-aa36-b9c86c86455b    24794        7446   6159
#> 3016 54074654-5618-4b09-98e7-560d4b0d91f6    31016       12585  48727
#> 3017 10f3023b-d446-4e46-991b-4d2cc9aa0f60    30076       11669  11487
#> 3018 f44b4942-1de1-41d7-a8f5-c44552e7c336    24790        7462   6155
#> 3019 87daa971-0ff3-4186-b225-81d4661c89b3    29415       11226  10815
#> 3020 2c9cbc74-9a26-4ccf-9552-c9fa99ef3663     8779        5608   4316
#> 3021 a46c1936-c00e-405a-82c8-297ebc2a7535    29696       11601  11409
#> 3022 bbb3b4cf-0ba1-4d45-8650-9f8824d3781d    27616        9411   8723
#> 3023 e6acf5b3-b599-4519-bff4-557a5a44430b    32110       14024  37171
#> 3024 8d276b8b-116f-4705-a6f4-a37b390f279e    31738       13345  28341
#> 3025 53f8b594-314d-4f34-9444-a2b3e7eb0185     8843        5726   4380
#> 3026 f1769155-163f-40e5-b0a8-61c3ce0fbeac     9334        6061   4993
#> 3027 61dd98e9-3edc-4892-b20e-b0d74a25da5e    31449       13155  43695
#> 3028 89919ab7-0fa2-4fbc-b018-5f2d3e3c21e3    29253       11106  10653
#> 3029 36648f14-5fe5-40f3-ade1-ef53c8f93bdf     7840        5030   3036
#> 3030 6904f89f-c6f3-42fe-add6-54ba80ee04dc    31776       13376  30458
#> 3031 7f4d9680-0577-4195-9168-2fb90bb18e9c    31353       13089  48833
#> 3032 6106a497-f2f9-4ee0-bef6-c6d9c8943d39    31307       12721  48941
#> 3033 e12c1ad8-ba0f-422f-849b-c9cabb1ebb97    28097        9359   9109
#> 3034 8d7729c6-3a84-4769-8c2c-2ed11557be20    25759        8159   7052
#> 3035 a2eccf1c-8a74-48c1-8c22-81083df05274     8880        5869   4417
#> 3036 9aeb2a34-dbc9-463f-9c94-7161336f37cf    29335       10954  10735
#> 3037 5f2a0be9-3420-4aa4-a723-8956a58a8a8a     9296        6067   4955
#> 3038 606d16ed-88df-488d-b506-111af8f966d0    28784       10699   9939
#> 3039 423d2e55-053b-40cd-b977-bef2f3891907    24665        7222   6112
#> 3040 e95dd915-4e7d-449e-ac8e-356ad784fa62    31668       13243  50589
#> 3041 128f79ed-c225-41f1-a10b-b9eb8c477c77    28551       10465   9596
#> 3042 63175907-f9fc-4a3a-a376-d8e3a76d7964    27726        9682   8833
#> 3043 6dffc17c-86ca-4ffb-8ef2-12b4f832ce3e    32278       13956     NA
#> 3044 21199f7c-91bc-4295-a6c8-bc0cfd017616    29999       11065  11394
#> 3045 b9d34a54-0475-417b-a2b5-6c0743b541ff    25761        8156   7054
#> 3046 27488f5f-e895-499b-9e33-fddd3d5d603c    30778       12312  12194
#> 3047 58e567dc-6d54-4907-86e1-d21615afaeba    31371       13738  48946
#> 3048 d5e5340b-98be-4738-867d-791f36bf8e5e    29029       10745  10048
#> 3049 7840c637-976b-47e5-8831-09e1099c0484    30405       11935  48353
#> 3050 45736f04-47b0-44d7-aa61-ba9f0a94565d    32147       14157  48465
#> 3051 9061a751-bfd4-41f5-a585-9f3b20708b94    29096       10341  10063
#> 3052 37845827-23af-4cc2-8f27-4fd355e4c4a6    28587       10335   9632
#> 3053 f65b58b8-8d4a-4fb7-9fbc-a755464b0958    30507       12523  12304
#> 3054 d36267e0-f2ef-4dd0-8bda-2a9238a377b7    26663        8661   7821
#> 3055 46aa49f6-6720-49dd-a13b-3c055d304fd9    27554        9340   8661
#> 3056 fc909404-fec3-40af-b8e8-22ffcb48a456    28485       10338   9530
#> 3057 dfce3ced-01eb-4558-ab85-9c427cf1807d    27588        9407   8695
#> 3058 4b3ecabb-6adf-45c8-88ed-7decd72306f0    30386       12593  12059
#> 3059 0c0b9670-cbc6-43b7-8901-e99f2983cf3f    31489       13176  48818
#> 3060 164a4e28-ffd2-4606-933c-9870c2ac5d67    31765       13373  50300
#> 3061 2428023c-797d-49e3-a931-1163f003b490    31791       13392  28766
#> 3062 c058f888-ff75-4f13-a9e7-3f5be65288bf     5888        2528   1010
#> 3063 6a369c2b-debb-4bfe-8ea3-2a8364ceb7ee    29436       10887  10836
#> 3064 c9b212ad-7893-4b0d-9d65-38b283894a5a    30497       12537  12023
#> 3065 8dfbc354-6308-457c-95bc-74910878f2f2    30376       12765  12209
#> 3066 6c5ade3f-43c4-4153-b0ef-c9772bce8101    29856       11684  11232
#> 3067 97b3d907-e5b4-4ae2-a9ae-af4dad3dd169    28432       10357   9477
#> 3068 1146776b-e591-4f81-8a56-459c1845bead    31235       12499  48931
#> 3069 04ac7d14-68fc-4d70-b0f0-334dce9c1c45    29687       11541  11083
#> 3070 cb6653b6-39ae-4581-81fe-b275b20aec6e    32410       13617  49917
#> 3071 86a412bb-7db6-4c6a-86b0-499afd326fd9    26297        8470   7400
#> 3072 7c71541b-048b-43de-8b27-1c9cfd43f0c0    30917       12329  48586
#> 3073 73cf139b-927e-43e0-9e4d-6f48cff0ab9d    30615       12595  12113
#> 3074 41cc3ce0-53fb-4a83-8612-00b527328e75    29596       10874  10926
#> 3075 7bca471d-9352-4fd7-ac8c-42efcdcf3c27    31824       13935  28584
#> 3076 25a958c9-4035-43ad-8c9c-1309ea592e66    27923        9378   9011
#> 3077 ec0183f6-bd9b-4a21-b8f5-ea4d8f3741b2    28242        9962   9063
#> 3078 436e0e45-f07a-4674-b21f-4fd8e1f24583    26628        8657   8094
#> 3079 4a34b8b5-3410-4754-9d6e-c0ee28428f47    31807       13955  49643
#> 3080 e929b3d8-6f7b-41f2-acfa-fe3840d03509    25769        8139   7061
#> 3081 3add1dd8-32aa-44a5-b69a-b0ad2eace07b    26300        8151   7401
#> 3082 2d23b5d1-fbee-41df-bd6f-dd984d03a4d1     9691        5975   4907
#> 3083 a0ac50ad-b460-43fd-a932-50d19cda7c0b    30708       12607  48891
#> 3084 7bad73a1-c023-4b53-bd4c-dedf18480b8a    24824        7452   6189
#> 3085 9f5a9786-f72c-4d45-a858-71bccd5cb602    26085        8442   7365
#> 3086 596fa903-35a6-4650-b499-bc3ce33d5103    31188       12915  48606
#> 3087 3eb1e32e-3f96-4613-b142-78f748db3c7b    31266       12965  27010
#> 3088 60542ef3-f053-4347-8906-ce698f5c434b    32534       14229  50033
#> 3089 6b49d038-966e-40b9-bb1e-fb4e94543a95    27093        9079   8484
#> 3090 3be41614-5c70-4b0a-89c7-c7ae061d9223    25782        8146   7074
#> 3091 eab954d2-9dee-4a8f-ac28-d93855459fb6    31602       13225  26657
#> 3092 9e4ac12b-bd46-403a-baa6-a1cb4c7fa5a4    32484       14221  48531
#> 3093 c4ec03a8-efda-456f-8916-c161b568d783    32116       14007  50218
#> 3094 cdcd43ee-b31d-42d3-adcf-8afb4458976e    31523       13420  28474
#> 3095 08bb1521-fd1c-4c1c-bcbe-114cadccc1c8    30823       12540  48816
#> 3096 6bc64594-cdc1-4252-b896-dd3b667eccc2    30546       13314  12104
#> 3097 fe1a1b0d-1d0e-496c-8777-2b5aff1f7231    30298       11904  11939
#> 3098 59b606fd-cd76-4a01-bee5-ffac60073b3d    31784          NA  48525
#> 3099 bd046bf8-70f7-4480-878a-8894e5912102    32161       13591  48368
#> 3100 8725d38b-398b-4ca5-9e80-d43b0bf855bb    30934       11911  23592
#> 3101 f5181047-2dbb-4058-bed6-34464a138867    29767       11552  11273
#> 3102 3c593d8f-daf8-4902-89ab-d59699482809    31315       13215  48964
#> 3103 5d98bad5-1730-4095-825d-3ff8d10d1116    27575        9265   8682
#> 3104 94ee954f-baf6-489c-b50f-3b60b2506f33    26626        8658   7785
#> 3105 485369eb-3586-4aa2-9628-77d954f23da3     9568        6381   5273
#> 3106 bf4a641d-bdf6-4e62-bbe1-a74a956226ea    32592       14301  48952
#> 3107 5064d069-aa24-4828-81c9-c78e0e56fb78    27762        9784   8868
#> 3108 c3b6a5da-b9a5-415a-8239-1fd92dd34b80     9513        7202   5173
#> 3109 edb39e18-4683-4774-ac05-af4019fe2aba    30535       11940  12131
#> 3110 3877e0ba-222f-4bd2-887c-1db8f1a5e7d1    24817        7464   6182
#> 3111 50d58b23-cdf9-4e0c-a303-d74d9e4f9291    30504       12456  12299
#> 3112 14063f54-4935-4043-90f0-a6d2d6ab6143    31578       12708  48487
#> 3113 5272b788-ce57-4197-92db-5a08ff48d932    32255       14136  49588
#> 3114 944528d8-7647-4f92-8053-0e6998c5fcc1    29799       11273  11165
#> 3115 ce64d3cf-516a-429a-b80f-18143eee2a49    29424       11035  10824
#> 3116 624218c7-a654-412f-9ebe-c574c4e74c0f    32285       14141  48427
#> 3117 87c4fed4-d126-4c71-96ec-54d5d8d717bb    31355       12963  48552
#> 3118 d867198a-36ec-4a99-9037-a093216f99d8    24451        7319   6031
#> 3119 6f02ddea-9d5d-442f-ac40-c252aec881b5    32385       14174     NA
#> 3120 bed70009-eeb1-4806-b65e-3bfc54963cb7    26840        8951   7999
#> 3121 bd252716-1674-437f-8d91-fdd10cf4ebf1    31702          NA  49638
#> 3122 1b0801bc-9afc-458c-8235-b938d4b76d29    31678       13050  49584
#> 3123 48dede0f-2441-4549-8892-9d37c79321a1    30280       11929  11922
#> 3124 e4a401ce-3740-4e6b-8dcf-f2b41a3beeb9    28504       10455   9549
#> 3125 961507f5-29bc-4efe-bff1-bd1e4f063e8c    31507       13163  66951
#> 3126 a1e8bc26-2f4a-48f3-b2dc-549d8bc71067    26862        8968   8022
#> 3127 8fecfc12-c9be-400e-8b5a-4684c6884daa    31037       12749  48565
#> 3128 d694d99d-0dd2-443f-b02a-6cd377cdaf6e    28051        9691   8938
#> 3129 f60de8c5-b050-4386-8a67-3658f65350b9    25947        8143   7221
#> 3130 2fbd5ebf-c12a-4e92-b7b6-de649c37ccd3    30948       12384  51981
#> 3131 ee4e7684-071e-4aee-9d0e-b8da39c46322    32399       14194  56885
#> 3132 750c6332-6848-4303-9916-a6ed49833a56    24873        7450   6238
#> 3133 e8a774bd-079d-48ac-aaa6-01c8fcb46e4a    31243       13062  48459
#> 3134 dc632746-2240-41d6-8141-695194706989    25791        8144   7083
#> 3135 5ec64dea-c6db-4416-ad24-8676acf7a7c6    31520       13289  66925
#> 3136 072ec285-1430-48d4-9342-5a1b9af527f3    24807        7417   6172
#> 3137 401fac38-aa48-4f45-b6c4-a4705b50f9bd    30626       11906  12246
#> 3138 ac568889-d10d-4ccc-89a1-8e4233848086     8356        5319   3718
#> 3139 1da8b818-601e-4d53-943b-c7cb767969a3    31539       13267  66923
#> 3140 13141af5-6bef-4f49-98ce-5305f0187bef    32248       13567  91464
#> 3141 34053914-0384-4551-a5e9-e3bd13c09b02    31277       13291  48436
#> 3142 0afaf743-1240-4598-91d4-13f003573789    32089       14039  49991
#> 3143 2d133844-4e02-460b-819b-d8176407dedb    32258          NA     NA
#> 3144 2be11ce3-61f2-42b4-ba82-f22c62e9363d    31541       13268  12893
#> 3145 6191922d-218f-4f86-a3c2-7216810bccb8    31357       13091  66932
#> 3146 89588ce4-70cf-4a50-968e-d48cf5c66053    32519       14290  56643
#> 3147 49c20233-70a2-4de5-b3cc-9bf7039f1cb7    31586       13260  49983
#> 3148 b27621a8-1629-45d2-838e-5e74a26f350b    32203       13705  48652
#> 3149 376a61bd-de05-4fb1-a698-7f93fd1a102c    28539       10461   9584
#> 3150 911991de-37c3-4fcd-9896-80d1fb0b6112    30608       12515  12106
#> 3151 8fd4379f-242a-4388-ae91-5b99acbb1bd8    27602        9404   8709
#> 3152 6524f633-b8dd-439d-82df-cd4f9f07ad29    31060       12754  48815
#> 3153 a1329bf2-4f70-48db-9785-3cd29fc7b56f    32578       14287  94382
#> 3154 50fd6da3-9fb3-45cf-83e8-5797f1f16308    27298        9193   8387
#> 3155 3245841a-b113-4e4f-a994-449d25d1db98    31774       12974  49906
#> 3156 ee305db3-cdaf-4eb3-b950-7146d51eac34    24778        9761   3378
#> 3157 3258dbca-9194-4fd7-bc2b-8440c73d0d9c    26649        8660   7807
#> 3158 9fdc477a-af02-4345-baca-cf026fbc645a    25721        8153   7017
#> 3159 035a2da8-8e69-48d3-9752-0fc042f545df    30730       12413  12230
#> 3160 61a5aa8b-1f47-4bfc-ac91-eae7f6679ad6    30787       12124  12323
#> 3161 3555b24f-ed5c-41a3-aead-34e7b64d5c4b    31633       13194  44610
#> 3162 648bcdd5-7239-41b4-b346-a2424f6c01d3    31647       12910  49918
#> 3163 e34d2f84-e5ec-4818-a54c-94176e515a90    31669       13244  50627
#> 3164 c9fe00a2-7620-49f3-a744-7d04c5b30560    24056        6683   5605
#> 3165 c280300e-a61d-4a19-aa95-ab100d5759e7    28826       10720   9772
#> 3166 d79d84b3-cef7-44b9-8202-ba92d4d32641    32619       14324  50085
#> 3167 40d6eeb6-cd53-474d-97f4-a00fed5b4d64    30251       11915  11893
#> 3168 690fbf24-aab0-40cf-aeb4-7e24d90108a1    25225        7805   6483
#> 3169 408aff57-2b32-41f7-9520-0064ad14af21    25915        8160   7190
#> 3170 4efb66e4-7038-4b3f-bbb7-521aa3200760    29581       11413  10937
#> 3171 c0e4ed02-82ec-4bde-a1b1-c035dde46402     9508        7141   5168
#> 3172 6de52f0c-2a65-42a3-81a0-9c772a588c08     7761        4743   2957
#> 3173 4ac2531e-8a86-4124-970d-0d6be201a4b4    31527       12665  48826
#> 3174 8363a880-0f4d-44be-bad7-2815c7c3ea00    28815       10675   9809
#> 3175 eb96d887-4380-491e-b22f-b0cdd0bd64f5    28568       10312   9613
#> 3176 ecacc01a-e71d-4028-9bb7-37fcee0f1708    27104        9107   8177
#> 3177 7d94e607-7908-4e25-ae36-b1f2707c06c4    28109       10101   9310
#> 3178 f79197fb-9ee2-4edb-bb68-e8cd059a5101    26823        8984   7981
#> 3179 7e1ee344-f878-4fc6-bc56-e47588bf1000    30605       13401  12157
#> 3180 ddc66539-5847-4c01-9283-595bde0ff97a    30215       11923  11857
#> 3181 3748e9cb-edd7-4559-832b-e6bc483677ce    29050       10808  10101
#> 3182 57c5c69c-844e-41f1-9985-6fc178cee514     7883        5152   3079
#> 3183 d15dacdb-17c6-4010-83d1-e332f9610422    26651        8675   7809
#> 3184 3a8befa1-04e8-4aa7-bc14-504e3d2de483    27983       10025   8940
#> 3185 f88cf8ff-c5be-4e41-bbe3-a8657935bf3a    32575       14271     NA
#> 3186 1de5c7ea-54dd-4a1a-a319-4429ce604b3d    27576        9290   8683
#> 3187 efe0a829-1c7a-4460-b099-089bdb64b819    28233       10443   8993
#> 3188 563f4a41-967c-49f1-a217-28543727c7d0    30921       12633  51671
#> 3189 c63eb820-738c-4b32-83f4-65ed80d54ae4    26821        5250   7979
#> 3190                                 <NA>    32178       14053  49989
#> 3191 2beaf8a8-ccf1-4500-a941-33ffc8141d60    24095        6589   5643
#> 3192 0c042513-aba2-461c-ae16-db4bf83833fa    28694       10615  10010
#> 3193 7305431a-7db7-47a0-ba82-cc4faff5f278    31694       13330  66959
#> 3194 563471e7-202e-494d-bab7-a2493a9a6e31    31392          NA  49990
#> 3195 e9cf609e-4d2a-497e-b7c5-677949820145    26054        8564   7459
#> 3196 dd20b476-52fe-48e1-a614-3854c6b3989c    31788       13387  49890
#> 3197 9ebd9a70-74d1-4df8-90e6-3de18368a4c5    31446       13153  66936
#> 3198 b4974d96-a831-4914-9de6-6758a4ae12dd    31027       12728  31211
#> 3199 19667595-1b93-48ff-878c-5f245636173c    30810       12485  48872
#> 3200 06a22cdc-f773-4424-a8e6-e49ca822ed1e    32370       14161  14834
#> 3201 456fb5aa-5ecd-4cf4-819a-a7708ed8f0e3    31542       12756  50036
#> 3202 a548290f-bfaf-48b0-aa8d-4f8c71a1ff80    31248       12573  36926
#> 3203 b88049ec-946f-4723-bc82-ce5803c652be    32146       14156  48633
#> 3204 af52bc9b-b734-43a8-af8d-daad398db79e    28928       10870   9928
#> 3205 e85680db-639d-49cd-ae29-28e5cd4ac9a8    26153        8486   7355
#> 3206 f24fb71b-8799-48d8-aa5c-510a40cfaeed    32459       13939  49948
#> 3207 c497d10f-bb71-47b9-aabf-daaecb38b6dc    31312       13236  48695
#> 3208 9f5650c3-91a3-4552-a02e-fe4a7d13f262    30327       11936  11969
#> 3209 ac540ab1-95e1-48a2-ac93-6c0037c5a026    24805        7463   6170
#> 3210 38717cb0-9a15-4a89-b86a-c57ff0cef0cc    27245        9113   8261
#> 3211 2fbafbc6-2236-44cf-8498-dc8b549161cf    31289       13253  44545
#> 3212 b7d42dc5-dedc-4cd9-b5a9-77cd30fd7ea7    31992       13607  48933
#> 3213 ff5d11ea-4713-4b63-88a8-50ed1a3623a7    28602       10489   9647
#> 3214 52191351-8e61-454b-b2a3-dc2e39043b11    29488       11543  10888
#> 3215 b8c4a63d-775b-47c6-9be3-ef321658c600    32047          NA  39527
#> 3216 1ec9b4fd-414d-4dd6-96f7-45efa541ebeb    29683       11537  11079
#> 3217 87c4b182-e4bc-4f35-97ec-8537a2665875    30412       12173  12222
#> 3218 6a3bcfd5-a855-4173-a2aa-94e2c77c8268     7872        5853   3068
#> 3219 389438be-4bd0-4842-9021-b614289b8d98    29366       11056  10766
#> 3220 8bfbee63-feb4-4862-b3c8-08d2f65c8b5f    30802       12455  51592
#> 3221 f83bfd85-4007-4c7c-ba54-75bedfc3c3c1     8967        6900   4504
#> 3222 b6025ffc-496f-40e5-bd23-38469aa50cb7    28523       10319   9568
#> 3223 af24c36b-adfe-49e5-82a8-67f9ea7264ab    29314       10892  10714
#> 3224 7ecac271-87a9-43e6-afea-abc57552a0c1    31417       12864  50032
#> 3225 cae53a94-89ce-4eb5-aff9-b1b618283db3    31362       13088  48791
#> 3226 917e7a94-fef2-4293-b50e-94e52f777232    27565        9254   8672
#> 3227 1e110bd9-4eca-410f-82ed-e4d8af131574    25048        7874   6607
#> 3228 2a97c476-70e9-479a-be0b-11ebaeee11d3    31193       13002  48684
#> 3229 49c6000a-8ca5-472c-a166-b0a0911a00bb    30701       12634  39139
#> 3230 2bb28fc2-96ec-452c-9dbb-22130681c4eb    31474       12639  48732
#> 3231 3920baeb-570e-4b1a-bc44-c4bfd936e41f    28789       10668   9944
#> 3232 4e710e1a-2654-4e2f-9be0-5b9941025477    30341       12051  11984
#> 3233 97d98203-7785-4286-b01c-2611c6f5a44e    24852        7474   6217
#> 3234 123f0733-0afb-4291-8e57-9970e229309b    26667        8674   7825
#> 3235 eddd3f47-fdd1-4d53-9e31-93b46624fd0f    29747       11566  11157
#> 3236 d0778d5a-f5af-47a4-9b06-adcbf5b3368f    28484       10327   9529
#> 3237 0606c9ab-8351-4a38-8ca4-ceb16e982f6a    26828        8964   7987
#> 3238 c07e2290-529d-4d55-bef2-1d8139816355    32544       14263  55373
#> 3239 de3f11e3-90ae-4ad2-880f-48e9b6f729f8    28178        9636   9022
#> 3240 af9992e2-6bda-4e3d-a95a-fc32c9f93391    28755       10347  10098
#> 3241 de41a84a-9f98-42c3-b35e-7c99b0ffa5c7    32515       14231  56733
#> 3242 f154d374-d504-425c-a2ae-958f3adfed32    27610        9270   8717
#> 3243 d3186202-386f-443e-92ad-37d8e41dca55    28591       10485   9636
#> 3244 f092bfdc-2385-4223-86e7-37b2654bc37c    26960        9523   8184
#> 3245 cc4d595a-3fd3-49ed-a332-8d9bab9159fd    32309       14124     NA
#> 3246 31b604a7-4f2e-4cfd-b040-5d749f7f5d5b    24864        7469   6229
#> 3247 6a859e36-f31a-4a75-8cd2-905833042fcc    30357       11920  11999
#> 3248 94062255-0b93-43ca-9399-92bbc10901ff    31686       13058  48737
#> 3249 4023e7d3-2b70-450f-9afc-bf1a9dcee3f9    32524       14224  49971
#> 3250 6196fbdb-f9fb-4766-b611-c1875f8f6236    32445       14283  48982
#> 3251 97c96dce-9b33-4d0e-ba01-5eb629192d19    26838        8987   7997
#> 3252 0105886c-9f70-4600-b0c4-bb2a8efc5e9b    30021       11558  11490
#> 3253 f0b08802-f6f8-4dba-b53e-e26eb75a32e7    30517       12118  47053
#> 3254 7076d60f-8cba-41bf-a3ed-ee28af5e240a    30739       12414  12238
#> 3255 0cae9da5-bdbb-4d19-b360-578b0a1c37bf    29695       11266  11408
#> 3256 60aa9a85-1fc6-4b65-a350-34ec09456791    29550       11047  10966
#> 3257 e73a5644-c7a2-425b-898e-da72c16f9b87    30757       12335  12260
#> 3258 cdbe5207-fdbe-42f0-a536-bed784aa9cea    31467       13161     NA
#> 3259 5a20a439-bebc-4ef7-8b9f-30e1d677a26b    26535        8497   7572
#> 3260 0719b89b-85f5-4be2-a335-596e81d93913    27739        9774   8845
#> 3261 aa87a5e5-f90b-408e-b8b4-39f28204f8bf    30318       11771  11961
#> 3262 0f062def-77f5-4362-86cb-4bdb63a59eba    28496       10203   9541
#> 3263 e0a63251-5428-43a1-88c1-c000215ac5ce    26299        8247   7377
#> 3264 9d04accc-a404-406f-b93c-0878410e55a6    24760        8588   6142
#> 3265 e046beb7-3d9f-4f30-9b33-2b61592461ff    32216       14079  30027
#> 3266 cc1df018-baa8-4344-b13c-cd5ef1a52d26    29571       11406  10931
#> 3267 91d9a3a9-241f-4f42-b0f0-2e7dd9b84c08    31513       13167  13455
#> 3268 8c5067dc-1617-42fa-82eb-0596392ab20a    27135        8846   8420
#> 3269 360f6480-729a-437c-9875-5a409f4ca03b    26601        9899   8438
#> 3270 c9a7ce89-90f7-4061-b9ac-dfd4e6c3cedf    29431       10947  10831
#> 3271 b936b29c-59ab-42ba-996a-00131b4b8580    28594       10205   9639
#> 3272 a0c708a2-4620-4b5a-8453-967c2a9bd426    31443       12789  47265
#> 3273 f611f87a-1e49-4196-9088-8c760f26006d    28068        9857  10269
#> 3274 349f647e-bfc3-4d84-af89-b33f8a08e26e    25158        7970   6997
#> 3275 1987b2bb-042f-49c9-b183-bec358ba1b98    31407       13103     NA
#> 3276 ee3d7a82-d3e0-4d12-b2f8-116aefdb7cb6    32065       13991  45629
#> 3277 96b38cbb-4709-4c5f-89c7-f9fd7fa77a95    28583       10480   9628
#> 3278 3eeb2be6-2bc9-4b6e-a35b-bb1d87f14dd9    31340       13038  27536
#> 3279 17f32692-ccfa-42c0-b238-483534dd0b7c    31341       13018  45660
#> 3280 f50fb156-fc3a-4930-aa51-8fe977ef6984    29939       11564     NA
#> 3281 513caa63-d30d-4cde-b605-8cf825a4ef27    27744        9676   8850
#> 3282 e597cba3-fa90-4ce2-85e7-3e0bed1791d5    25884        8318   7166
#> 3283 369d8fc2-fce9-4e75-9419-3dfbe3ad3977    30663       12928  49298
#> 3284 dd6959e5-13cf-4c1f-a05a-03bb7648af96    30404       12876  51594
#> 3285 c10e08b6-33a7-4233-8628-29b40d1183ea    24880        7539   6245
#> 3286 991678cd-6d07-45d0-98b1-3d40e5725c29    32430       14207  13543
#> 3287 6ba5ea17-2790-448e-9fb8-2d0d05ca955c    29021       10750   9850
#> 3288 b91dbdd2-b7c4-4ad1-95a9-c675c30b4b57    31333       13394  26637
#> 3289 64d8dddf-b3fe-4146-8d08-36e9c0b6eede    29720       11204  11142
#> 3290 fcc9d16f-4591-4ba2-9720-9fa187b9d9d5    30358       12034     NA
#> 3291 7e408bdc-df1a-44bf-878e-8cc790c40a3e    30825       12474  49127
#> 3292 5f06c995-7b1c-4da1-8bce-5ab5f63a901d    29027          NA  10044
#> 3293 444c9f9a-b6e1-4be1-ba68-bf18781f8c89    29952       11443  11343
#> 3294 aa80f701-cce8-4136-b0cb-965fb8c90519    27680        9313   8787
#> 3295 779bef9f-4c2c-409f-9079-784e03645eea    28801       10723   9698
#> 3296 07ab211c-4733-4336-b59a-2137f3efe5e8    24112        6653   5659
#> 3297 7428dd41-d736-4141-991d-b7a74b61aeda    31587       12912  49274
#> 3298 d37758ce-9e3c-4e3c-bb7b-b8eaf1c58541    29577       10708  10935
#> 3299 fc506583-7edf-4e40-8047-83f60bea67a2    24977        7542   6342
#> 3300 e055cf84-9602-468a-a960-5240cab53aff    30311       12241     NA
#> 3301 dd074695-df70-49ab-ab37-504bac11d171    32572       14274  13581
#> 3302 0f1b8946-54b9-43c3-8c9e-1778c6314e9b    29086       10678  10117
#> 3303 f1cff356-8de9-4589-8522-40922fecfad7    24219        6822   5767
#> 3304 ebb13f2b-f29b-4f05-b88a-a522d1935fa3    27650        9300   8757
#> 3305 93ee67e5-08d1-4272-bc6b-d97feaab5d6b     8422        5874   3784
#> 3306 4094730d-a3ad-4c7e-a899-a3c8001748d9    23989        6645   5539
#> 3307 5bd91ec9-3d48-48c1-b36e-78462044acfc     7864        4991   3060
#> 3308 0f0ff562-af1c-4be8-8011-1f71e8441e00     7121        4677   1972
#> 3309 b2830633-1ef9-44e2-ba35-8bbd8a3a84fd    32106       13696     NA
#> 3310 b0c19fa7-b58a-413e-812b-54fce2038239    31455       13143  49138
#> 3311 8e4979d6-aa7f-4b18-a0ff-74021728ca1d    32478       13853  33180
#> 3312 4a8190f6-039d-485b-8d51-7f98368b02e1    24590        7144   5820
#> 3313 3d6d3bab-67d8-4c08-ac5a-0cd80405e3c6    27269        9093   8471
#> 3314 822e1946-3df1-4a25-b967-291a0c435cf5    29363       11093  10763
#> 3315 36bbcd0f-c3a1-4656-850d-6f0c7497a483    30508       12478  12306
#> 3316 2592f1d6-3cc5-4e32-b6fb-18ad517be491    26989        9194   8102
#> 3317 be6c0952-4400-48bb-8a67-95c00f8aaab7    30560       11995  12308
#> 3318 f58c28b8-262c-44b3-ab15-992c362e3f43    31395       12816  49234
#> 3319 f4ce175a-0408-4215-8a64-2cac3679d151    26978        9192   8450
#> 3320 7a2612f3-ea18-444c-95ee-f1ca597d6fb0     7956        4972   3152
#> 3321 cb2a824c-bdaa-4848-9f56-b5b37bf419e3    26922        9228   8525
#> 3322 c0cb57ed-b7dc-470a-8769-c161dad25de6     9441        6903   5101
#> 3323 adc1b9ae-0b59-4399-bfba-959f694dde3d     9376        6217   5035
#> 3324 a45043f1-9e33-4564-bd69-df6528cbd03f    31237       12831  49136
#> 3325 fc73c0c1-b250-4feb-a5d6-f30145b28bad    28879       11411   9753
#> 3326 75f6779f-4f5b-4059-bed1-c79bd2b40b49    32585       13577     NA
#> 3327 11c5317a-a0a7-4330-a1e5-532dbfe8f021    32531       14227  49084
#> 3328 9029830c-1394-494f-a92c-e192697913cf     8275        5368   3637
#> 3329 ca8815bc-c68f-4d18-80fc-f61e4a2053b8     9311        6102   4970
#> 3330 e8aca261-6e92-4e6d-bd21-3cfeb70ce9e4    30461       15501  51293
#> 3331 f18e87b1-2548-4bdd-8b30-25fc04c9788a    30687       12334  12142
#> 3332 e3a87257-7012-48c5-8ab2-8322f3a95f2d    31693       13329  24816
#> 3333 76f95387-3bc1-4756-a714-a4b1a93f23ff    24139        6650   5686
#> 3334 5e32839d-6ea9-4f92-8209-520a980ffcde       NA       14154  51344
#> 3335 1824b9ce-a9af-4284-bc33-c36f100b13c3    32507       14259  27965
#> 3336 d4590268-6931-43a1-b794-d9a684c508db    31159       12959  50460
#> 3337 5db03086-c670-4adb-98ed-b6a59a4f9270    25849        8265   7136
#> 3338 1ad00b25-912a-4e92-b585-906594f3020e    31294       12837  35978
#> 3339 274c50e9-73a3-45f9-b9dd-c08270f1132c    32257       14138  94360
#> 3340 cdd83d70-ee27-42d0-a6f0-7db2c2ec6995    31530       12750  50545
#> 3341 e9a0297a-0b34-4c55-af1f-ca113d672195    25090        7817   6625
#> 3342 d452a634-8f68-4bae-808d-5ce4d9630970    28153        9299   9103
#> 3343 86697b45-157e-45ed-b63d-826cf5c7a0a1    30331       12214  11973
#> 3344 f7b0f6fc-217a-4df0-b5d1-a9555fabbba9    31545       13261  45093
#> 3345 30d66e1f-256c-4597-b31a-e54a17508c35    31731       12718  51365
#> 3346 7c218b81-76f2-45a1-b4a1-ac4e7a987c6c    32382       14169     NA
#> 3347 b4565520-ee0d-4d4a-a3dd-7f8c17a9196c    32563       14241  60184
#> 3348 0cb97421-cccf-4cce-ac0f-92d47986defc    25851        8338   7138
#> 3349 5535abc8-e8c0-48bc-b233-3aacccde7eaf    31419          NA  32671
#> 3350 6fa770b7-6cf8-400f-a3ea-47696eef0074    27628        9440   8735
#> 3351 6c51cb10-bafe-40a2-9a1e-002dda2f88e1    30554       12457  12272
#> 3352 82d57e35-193d-4f1f-ae40-f73b4c4c15c0    30665       12927  46129
#> 3353 21b89b42-8e13-4450-a5ff-a080c80a5400    32167       14196  28936
#> 3354 fe2712f8-45df-49b7-a871-d68b7006a912    30414       11803  12223
#> 3355 675fff00-6821-499a-b30d-04fc54468eaa    25026        7615   6391
#> 3356 b997cb23-f1a0-43c8-a684-7941e38afa8e    32431       14278  46883
#> 3357 c242081f-f312-4e15-8de3-854dfdc2bccf    30789       11822  12325
#> 3358 4e31b011-050f-4024-8a7f-bbae9b01b216    29762       11549  11268
#> 3359 1e4470b2-2710-4c23-b1ee-5dccd31352a9    29594       11416  10944
#> 3360 a044125d-85ff-434e-ac2b-deeecf314d63    28603       10490   9648
#> 3361 e461d721-5ca5-4896-8fe5-12e452a003b3    25781        8337   7073
#> 3362 6b01960b-1a92-4aec-a262-db57ca85c22b    30235       11819  11877
#> 3363 9cdc17a0-1cd2-43b5-948a-579a993a30fc    30325       12212  11967
#> 3364 1d127c62-d7f3-4fe5-b30d-9b7a9cef6637    26070        8248   7338
#> 3365 b25967e0-9a90-4b59-bf85-168581e0da04    31309       12577  33068
#> 3366 46664226-53c3-4ef9-9aeb-f708e3e8269f    23992        6553   5542
#> 3367 7206bfcb-ae42-4220-b738-158d3e2bb0fe    28032       10011   9216
#> 3368 cf45fa8d-13e0-4c16-a9eb-301b090ef83a    26633        8701   7791
#> 3369 324274e2-f7d1-40b8-b5c8-4cf58fda42fd    30599       12148  12148
#> 3370 b31b2a6b-1464-4c78-a19c-1f6ae627d519     8379        6327   3741
#> 3371 dc99b6a9-4825-40c1-858d-252a4061c289     9557        7002   5229
#> 3372 21be8393-db2f-4ef0-98a3-5f1b8421dd54    30400       11795  38837
#> 3373 838e8308-5d0a-43dd-a6c4-27b0d7c879f9    32593       14302  45497
#> 3374 a9217999-fa6d-4474-a176-1cf9013224ea    24020        6559   5570
#> 3375 61536454-3173-4ff2-b76f-f0bdf9e59fb8    28205        9964   8995
#> 3376 f1ea77e8-6e8c-454c-b508-f06e5676a0bc    32249       14149  46057
#> 3377 dbe09c33-0164-42fa-8eed-e5d3f11377b7    30501       12145  12300
#> 3378 e584c525-2f4e-4d29-95c5-1d16138834e5    26665        8735   7823
#> 3379 76c7bd95-fe1e-49e1-9a8d-b4d3a18e5df4    31640       13199     NA
#> 3380 3a3a9ed8-e941-49cf-bc32-331424d0bd42    30657       12429  46317
#> 3381 4a52883d-cc37-4593-9ca3-cb9967e4db5f    29732       11448  11151
#> 3382 1c1a6937-9267-497e-9386-00562e5fb399    25415        8439   6848
#> 3383 a8a5db13-5676-4194-8e2c-c75778366a3b    30289       11789  11931
#> 3384 a25bf0a9-84a3-49c3-9969-50b046a0fa30    31311       13235  46194
#> 3385 2c80e71d-c173-4c07-aeda-69371e969591     9538        6354   5390
#> 3386 18ac09ad-486a-4f94-99d0-2099aa85b746    29947       11128  11329
#> 3387 a877e5f6-37c5-4c7c-9f23-9e3a9f9d0d84    24888        7440   6253
#> 3388 a2e26ea7-db98-4611-8947-692b0cedb541    27836        9448   9221
#> 3389 22b17923-9927-42ad-9c57-d9e89c5dd61b    25750        8126   7044
#> 3390 53fac8d5-eea1-431e-8754-d71446e0dbd3    30817       12592  46707
#> 3391 7649ea09-692c-4012-b071-11422d383388    30684       11809  12139
#> 3392 284a3a87-2d1c-4e14-84a5-07d5c817a69c    28951       10714   9862
#> 3393 0220c312-f4d4-4646-9bbc-1d9f8c3020da    31536       12677  46073
#> 3394 6edf1c3e-bf89-4148-b827-cc4e50888c18    24036        6543   5586
#> 3395 53a783a3-183d-478a-a752-cb28054d208e    32637       14337  60159
#> 3396 18f9dc06-eaa6-4c7f-8995-78aea971fdd4    25889        8352   7169
#> 3397 d6aea7ed-2c24-4be5-b789-41e3ba0c2137    26630        8702   7788
#> 3398 c2a4c4a4-d0d7-4687-bd2b-7ea13118c3a7    32284       14108     NA
#> 3399 3671d5fb-6f0b-4582-8007-0265a66cf2c1    30228       12200  11870
#> 3400 59a2ccc2-8f08-45b5-808f-a8938a95f1f5    32537       14260  46037
#> 3401 8cdf3bb1-29d1-4812-ae16-893f3c448df1    32217       14060  27225
#> 3402 0ecd0d32-5e18-40bb-b8bc-278b6206657a     9315        6052   4974
#> 3403 5fbfe48a-11ee-4141-8f8d-6bef67d3ea69     9457        7119   5117
#> 3404 4a9a26fa-6a05-4c67-a023-43773a5c67f8    27855       10010   9305
#> 3405 d5ce4494-a0d8-4c70-9759-48afe6b19a7f    29977       11096  11370
#> 3406 159f802d-8825-4bc9-aba4-e6631aa11e44    29964       11521  11360
#> 3407 98074bf2-0c4d-48d4-b3c9-52f707a22280    32310       14128     NA
#> 3408 710f3162-8649-4eba-a707-1e6ea0cd1577    28911       10836   9818
#> 3409 b220ff58-7cb4-472d-93b5-da41058d9a79    28579       10478   9623
#> 3410 8834e7eb-3cf0-43ae-ac0f-5a1e28dc5107    28083       10124   9232
#> 3411 2dff7d82-426e-42d6-8c7c-170ad3a24ad6    26791        8739   7950
#> 3412 d34ef6d4-6a88-4207-9344-a867d120753f    28460       10277   9505
#> 3413 7c05af13-68e8-4aa4-b2ae-745bd0fd1e33    32460       14212  46782
#> 3414 258deb9a-9e98-48b8-bb86-3f2e339ecef1    29395       10895  10795
#> 3415 2b808ae0-ff65-43d5-9a07-b21d02e36c35    29402       11025  10802
#> 3416 3f22bb95-48f6-4ff0-a199-55257d0aaf91    27671        9445   8778
#> 3417 6499ef2a-c7a9-4f14-abeb-8cc165333249    24959        7444   6324
#> 3418 52bb89b1-5d19-43fb-bb16-e7ed48eaa17c       NA       14349     NA
#> 3419 60121cb4-ba9b-4f3d-9add-7d55890e4795    30277       11753  11919
#> 3420 adaa09ba-2a08-4910-ab31-e6641c3c4941    31752       13133  46268
#> 3421 a797919f-59d2-42d2-be96-d78312fa6b48    27677        9744   8784
#> 3422 992d1531-9091-486d-93d1-53e8b060e950    32156       14047     NA
#> 3423 ba736850-97fe-48c4-a5c8-cdbe3bf6fbd1    27228        9086   8230
#> 3424 b84995d5-f1b5-4d6e-84ed-66babfadee90    30593       12452  12084
#> 3425 e710f662-a7ba-4a95-a5c8-982519ecb2ed    29863       10965  11237
#> 3426 4086e06c-747e-433d-85e1-5b38443c0c78    31639       13198  45239
#> 3427 7e93123a-caf3-4915-bb8a-e1199257f8de    29676       11046  11072
#> 3428 a54b3a65-476d-4913-8f64-9b85ef61e310    27888       10123   8960
#> 3429 19dd5977-ff82-4fa9-baa3-643a0c49e615    31458       13144  46092
#> 3430 a4bf7889-f726-4bb7-a390-c962d6cc04bf    29583       11298  10958
#> 3431 c9e9ca73-6605-42cb-ab44-2230dcea187a    29339       11028  10739
#> 3432 93d973b3-06c3-4d22-b7b2-5430f53622d3    31569       12668  46350
#> 3433 29f9a81f-f31f-4ace-80b2-cf5270c96611    31222       12939     NA
#> 3434 d54a562d-0571-4960-a903-6e98415ead6a    26688        8703   7846
#> 3435 a04c2eb7-52a1-42db-9960-f97486cfe417    28647       10765   9743
#> 3436 297bd882-4641-42c0-a612-d3db66d6093c    31656       12741  46225
#> 3437 8f738734-fb58-412f-a549-27295e3183b6    30260       11811  11902
#> 3438 9b1fd0a4-6a45-4388-bf1e-bf4162e84056    31677       13048  46885
#> 3439 e4c61c4e-a9ae-418d-9469-4add053e541b    30567       14176  12285
#> 3440 cb006e99-2754-4bd5-a521-6d0cf473b233    31691       13204  66955
#> 3441 e4a4febc-ebb2-492e-a3d5-ef5bdd2f9b1e    32335       13952  46832
#> 3442 952d6412-2351-48aa-8053-35a456d4e869    29385       10987  10785
#> 3443 fea687cd-12c8-4954-8431-31b1634bcd3f    32525       13676  46378
#> 3444 e51b8fd6-dc76-4810-a77e-2bc153a29d1e    30506       12444  12302
#> 3445 3887491b-d2f3-43e2-bd27-01ba860a65f7    28500       10298   9545
#> 3446 36bb2c46-33d3-4e86-bb12-63b658cf8f7f    27058        9119   8211
#> 3447 9e360674-eb05-4d1b-ba8c-03d6c12fb177    29840       10972  11223
#> 3448 5bd4b926-db76-436f-9390-5c96475245fc    29187       11450  10271
#> 3449 000bc6c6-c9a8-4631-92d6-1cea5aaa1644    26309        8604   7689
#> 3450 cc100593-db21-4a2f-a6d2-607bdcea88ad    32350       13957  46318
#> 3451 e9a3dcf7-e5ba-4f4b-85a4-7a46b901d8b4    31581       13259  48864
#> 3452 3ebbc479-fec5-4463-8eb1-b9b09b0d3bc2     9373        6337   5032
#> 3453 04b20ccd-7dfa-4269-ae9e-e4227b803fa1    32583       14275  46039
#> 3454 7f614864-933f-4469-8df0-7fa9e2f3b851    25227        9204   6471
#> 3455 c3de87d2-5461-491f-8f36-1421ec9c0a76    31153       12552  38935
#> 3456 cb175050-09d6-4216-93ee-276fed373aa1    32620       14325  40799
#> 3457 fafd2927-7e17-4e85-afa2-aa2c019229ed     8340        5394   3702
#> 3458 c2648042-c616-4ee7-b9d5-f1b77c560c0e    31344       12694  38924
#> 3459 593e7567-a8a2-4032-876c-12ef72720dc6    31778       13377  32654
#> 3460 f5664cdc-9ce6-4533-b55c-89d3bafa7012    29850       11741  11244
#> 3461 a54b32de-57a0-4ebb-9eca-059d956fee22     8842        5717   4379
#> 3462 092b8c48-e863-474c-ac81-212d1265dedc    31378       13389     NA
#> 3463 89398fe2-d54f-4672-9324-3012c06ce2a6    27917       10088   9046
#> 3464 9c2bf2fc-d6cb-479d-8ece-f2ab4d1cda91     8925        6323   4449
#> 3465 6a1b2504-153c-441d-ba17-f78457d58b9c    24067        6558   5616
#> 3466 4cf02857-f50c-4a6f-b94d-ff12d8f701b0    26411        8502   7703
#> 3467 9ad0b3b1-28e5-4c23-91fb-728beb7c63d4    30929       12185  47169
#> 3468 1540d25f-4758-44d8-a4eb-276845326620    24048        6556   5598
#> 3469 f1fdbd9f-484f-441d-9f50-35e972a50300    27266        9583  11481
#> 3470 84a504f4-417f-4af3-ac1c-6af958e10bdc    30903       12296  18066
#> 3471 bb6dc980-e124-4548-9344-cd67803b146a    31303       13211  66449
#> 3472 851670a6-111c-4678-b4b6-60c2f813cbe7    31304       12659  46666
#> 3473 78009cf5-8d12-42cc-9a99-34137cd0b420    27508       10087   8928
#> 3474 2db8a161-7b3a-4a3c-b915-c5be5b3cd39b    26709        8705   7867
#> 3475 83fac4ad-a729-4774-a44e-20713aa01319    25754        8206   7642
#> 3476 b254f034-ab48-4a08-98d7-0dc6724e8a20    31387       13417  46833
#> 3477 03863dcc-b11d-466e-a6f5-845d91b9ec3e    31512       13166  21885
#> 3478 a29582a0-fa94-4337-b6d1-aba67e8d3141    30585       12131  46857
#> 3479 6e150bf7-49da-4d65-9b8e-e39dc074c539    28950       10648   9861
#> 3480 91135683-4a52-48dc-9f1d-446502308e52    29262       11041  10662
#> 3481 ef133256-fb0b-4a2e-bef8-48b5245395a1    31232       13148  46682
#> 3482                                 <NA>    32197       14069  94377
#> 3483 d90adc80-8e8e-4484-92a3-00bf274e6a9d    24127        6735   5674
#> 3484 18750e3f-5625-4253-ac44-61c6b8fc07d4    32241       13487  49714
#> 3485 345a3f59-1eec-484b-93d0-6330bdb358e1    29484       10940  10884
#> 3486 a8912b9a-e400-4f2e-be47-59e17b4ddf2d    31272       13043  50904
#> 3487 5a7fd0e3-5b63-4ebd-b8f9-02f3dafe0d45    30514       12427  12083
#> 3488 3422e0da-2496-4e8c-b716-599b5782a567    31292       13254  49064
#> 3489 43b6dba8-0299-4f5d-9094-e061be3e8fe8    31811       13554  22613
#> 3490 8b91b834-6eae-4a18-8fc6-9c99caafa615    31744       13942     NA
#> 3491 7b7bf4a7-4600-4540-b675-c3e4c7f163e9    30815       12448  49669
#> 3492 d6fffab3-1d96-416b-8f9f-fbdff691f33d    31434       13112  50234
#> 3493 7a41d4ff-5634-4b1d-843e-820e9b2a6049    31245       13125  51026
#> 3494 5286148b-f209-4a92-b3d7-83e4b05acba4    28720       10865   9792
#> 3495 155d6c0a-4ab8-4e58-92c4-5e955eb4ea13    31566       12742  51161
#> 3496 a7db348f-e49d-4ec4-8818-57a4820f2f14    31440       13118  66939
#> 3497 04a63d1d-683e-46ed-a929-458923150f5e    32113       13899  58208
#> 3498 befe4b46-f918-4faf-a9ad-c034e990c0cb    30760       12471  12264
#> 3499 0cea85ba-f49b-4f4b-b50e-b96042a6a680    30576       12133  50096
#> 3500 82a32245-a807-4018-be7e-a64e10abea6f    31487       13174  50742
#> 3501 0baf5ce4-ce92-425e-b5aa-ea0c388a9b6e    32512       13732  26073
#> 3502 56615da2-0091-4683-8596-5b13d933db93    30635       12558  49204
#> 3503 4bbe4348-4fe2-4787-a6c4-fd2a9ff76bac    27649        9354   8756
#> 3504 b82c2d22-1a6e-453f-ba11-9a048bf36f63    32360       13869  58181
#> 3505 c8b91c2a-3a98-42ea-a295-35344979fdb9    30099       11708  11750
#> 3506 7033ecd3-b11e-4123-8328-4413e1d7acc4    31563       13248  50845
#> 3507 935189f4-3934-4206-a64e-c5b92f3d9c43    30039       11613  11431
#> 3508 c5dfe8ed-dba1-46f5-821d-cb88ee7ab664    32520       13838     NA
#> 3509 63de92e7-69a9-494f-b2a6-43aa67ad325c    30471       11964  12062
#> 3510 8044439b-4873-4d1a-ba45-0e3365d889cc    31661       13239  50920
#> 3511 48a49ac2-640c-4ef5-9192-4ba6ccc306ea    32453       13571  49864
#> 3512 4123860b-90a2-425e-ba0b-051aad7c327e    30220       11958  11862
#> 3513 0d732ceb-7d32-4469-99a0-386af0d951f1    31717       13316  51019
#> 3514 ece6cc68-6834-4c1a-ab97-03d327ea132d    27740        9775   8846
#> 3515 37e44075-a98b-4908-ae69-4963c5cc3c69    30857       12250  12348
#> 3516 8bcda483-4714-4caf-bd21-4e64884a1ab3    31504       13160  51015
#> 3517 8777f90a-8280-447b-9fb4-806989838e9f    32291       14140  50783
#> 3518 57b80476-cfca-4d31-a7c3-cf84ea3261b0    30424       12355  12038
#> 3519 889052f9-12d3-4540-af7f-2728c1ad91de    32181       13731  89295
#> 3520 0c3f8621-b32c-4887-890e-dbd6b76b2370    29473       11243  10873
#> 3521 5bf874ec-3fae-412f-855d-257870e1c72f    32446       13698  81293
#> 3522 c66e5f22-10ad-41fb-9fde-52598df5fba7    32190          NA  49816
#> 3523 335ba0c8-25e2-46a9-89b9-8d9eaafe11cf    31663       13240  66953
#> 3524 c4243a66-f376-4ad0-ac40-3e2b759ba64a    31468       13367     NA
#> 3525 beeb2f7d-e318-478a-956e-7419aae66bd7    29359       11220  10759
#> 3526 9823700a-2d8e-4872-862d-382d69c67a46    29394       10920  10794
#> 3527 3b10d2d7-f361-4bc2-93ca-1bbe414b1862    31187       12917  50812
#> 3528 e7488114-9a87-41e3-bf4f-85923ddb106f    30387       11974  12060
#> 3529 480277d1-47c9-44df-969e-038a84cd0fea     5046        1299    595
#> 3530 7df7e968-8402-48a4-b0b7-97cb54a1702e    29659       11434     NA
#> 3531 beb64618-614c-49f7-a3aa-c0c75b7839ea    25427        7546   6796
#> 3532 e5247e5f-c4af-4a9b-8c7c-da75ef7fbf8d     4269         994    422
#> 3533 efb15571-8b8c-4894-8c3f-f595cf7ccf87    27958        9816     NA
#> 3534 e017e12b-07a7-4a35-b837-2faa9ffe3ce8     7223        4441     NA
#> 3535 40cda44b-2ee3-4ad1-834e-995e30db84d4     9066        5935   4655
#> 3536 bd49c4a4-1314-45e1-bff5-fc67ba41d1dd    31310       12712     NA
#> 3537 33c4aa3f-8f62-48c0-9ebf-d6ad73c6e4e3    31361       13093     NA
#> 3538 1a59e864-5282-4d94-b678-8537d524e181    29915       11738     NA
#> 3539 5e52491c-218a-4e32-b455-0d3aa05b8151    32369       14160     NA
#> 3540 be449b4d-799c-4045-8e9e-e8a7fd7c2cc8    26264        8835     NA
#> 3541 69bdf41e-3c32-46c1-93b8-e952edf5c61d    28685       10438  10133
#> 3542 596c4000-ede5-45b0-8336-33efeb686d2b    26789        8898   7948
#> 3543 2c0ebb74-96d8-4d13-9891-90bf9b15fd0e    29834       11097     NA
#> 3544 5514afb6-bd43-49a8-9bf7-b8baaaecdabe    25648        7544   6860
#> 3545 d7072e38-e5f5-4ac1-93cf-9a93f6333870    29293       10878     NA
#> 3546 9ecf8040-10f9-4a5c-92da-1b4d77bd6760     3727         395    226
#> 3547 0d1171d4-c955-4966-9257-640b569866d1    28103        9845   9140
#> 3548 4869b8db-2e38-4327-af11-cc1e17ef3490     9219        5849     NA
#> 3549 4b99ead5-0f79-4899-84a7-075c08890698    27911        9943   9030
#> 3550 afac3e25-d72d-43f7-be4b-d33ed91a0bf8    25885        8177   7167
#> 3551 a527b7db-0b52-4379-9e4c-2e08c1fe1bed     7867        4932   3063
#> 3552 63e63ae6-5a88-4b04-a3a0-5e0cb0404f95    29712       11568     NA
#> 3553 218d1644-603e-4da3-9ce1-48ce3927494f     6243        2832   1223
#> 3554 47cfc2a1-2b81-430e-8b30-ff5129e5c601     7505        4661     NA
#> 3555 622c2cf0-a29e-4943-8819-f9dc48f3d7a0    31421       13131     NA
#> 3556 30be69a5-f203-49dc-a354-19e4733a80da    25509        7479   6767
#> 3557 2afc82df-1048-414d-bef7-1692198cedde    30162       11956  11804
#> 3558 94d5430e-41b9-4b3f-af7e-4d25bd6da4be    27682        9388   8789
#> 3559 1aec5d74-58c8-4bf2-9508-f09e6384952c    30904       12295  51599
#> 3560 b882eddd-10fc-4cc0-9a8f-ca2d6db0c6fc    28999       10688   9911
#> 3561 9a4fd6b9-9ddc-4161-ab9a-3013a792c70d    31172       12528  50787
#> 3562 40403404-4624-4bd0-b11d-ec8299c48a42    25719        8198   7015
#> 3563 70eae82c-30ea-491f-b71c-aa11f47af476    25848        8341   7135
#> 3564 14d47b4c-ff6b-4718-8a6e-ab9b3b82f7d0    31994       13813  50739
#> 3565 b1f8c22c-e516-4fdc-9ecd-d2bd1e9a1f36    27801        9946   8929
#> 3566 fe1eeca3-7ad7-4bc2-9c55-b5662818642c    27040        9044   8141
#> 3567 6fbd5f30-db84-4c38-98ea-69631bdbc53f    24827        7477   6192
#> 3568 61033955-2852-4620-a5ea-cc596a8f4e12    27684        9385   8791
#> 3569 f9354bca-514d-4f8d-97b2-5c6ed471edff    24871        7478   6236
#> 3570 e2a4fca8-0482-442e-93f7-3cef0fb2358d    28419       10355   9464
#> 3571 7853d82d-7c4b-4275-8ade-f8b96dd89bf5    24507        7021   5945
#> 3572 e9b4a5be-80ed-4e00-9db3-6ee69e32b529     9072        5740   4583
#> 3573 8488c04c-1972-415b-85b9-84829ee09f11    31305       13234  49695
#> 3574 5f727913-cfa9-44e5-89e4-e2a52dc11760    28506       10361   9551
#> 3575 aad60db9-4a23-44d5-a738-46443e99ea77    26855        8957   8015
#> 3576 a41304be-54fb-4448-bf94-9bf6334a880a    25940        8313   7214
#> 3577 91fc931a-acff-46d1-8233-182ce9635740    28377       10153  10248
#> 3578 bb4f4ea1-d62b-4a60-a597-6fbdf8f481f4    30343       11991  11985
#> 3579 4cad5078-de06-4449-b629-a954b92c51e2    32413       14252     NA
#> 3580 d1ac1143-9b14-41b7-be88-6b094592a3dd    28845       10677   9825
#> 3581 f41be233-94ee-4d66-bb7b-aabb9a9509e8    27179        9110   8138
#> 3582 3f6b7426-8fc2-44c8-9cba-9d6234e9d43d    26475        8578   7561
#> 3583 5a0c79a3-fd9e-4914-b3e1-27aae59d86fe    29409       11225  10809
#> 3584 4916c90c-11e8-44d8-be62-67806f9efcdf    31264       13039  49716
#> 3585 8bc1b144-ce6d-4889-a1e1-e7cc394756e6     9543        6283   5310
#> 3586 171deb91-d41b-43d6-b531-9d4cf7fa2bb4     8944        5811   4481
#> 3587 e858a1af-ebbe-4413-9903-ecd96d36a09b    25762        8183   7055
#> 3588 98c7ad4f-8e63-4028-b3ca-84dd37a5ae64    25717        8197   7013
#> 3589 61a9fbd6-4913-4814-b5a7-9c71fbd4cac0    25864        8344   7147
#> 3590 c3315876-1a17-4c6e-b024-07db4489e016    25327        7718   6633
#> 3591 1b0234dc-a434-4c31-bb41-6457c068a0fa    26669        8698   7827
#> 3592 42a9be0e-66cd-4efc-8150-91950ed97955    27601        9387   8708
#> 3593 67c59603-6e43-4446-9035-6a2ee811ed1b    26856        8821   8016
#> 3594 39e9762a-327a-457f-9361-65c0e10a0e9b    32648       14347  35991
#> 3595 38a7122f-5c9d-4b65-99bc-b9822f9d981a     7569        7166   2476
#> 3596 5651ca6a-4d61-41ec-8bf4-341069ee0591    28788       10711   9943
#> 3597 d9f211f9-6028-4153-a9a8-f4d05298e6e4    27275        9106   8515
#> 3598 a54dc10d-c7a9-4413-ab4f-5c7c3fdd53c1    28600       10331   9645
#> 3599 401c4b1f-8302-433e-a84d-9d3101a30f4b    27203        9924   8308
#> 3600 e65e1798-fa0c-416c-a88b-c28fc7f6a574    24154        6753   5701
#> 3601 dfbbe1cc-1fce-4599-92ae-922a8b79fb83    27672        9371   8779
#> 3602 74c595a3-b683-49b3-90f3-fd8327857b1d    24358        7285   6022
#> 3603 a1902bda-47bc-4436-9165-2d79620e4030    27555        9271   8662
#> 3604 c5573e07-97a8-4a0d-a325-753af5e564f1    27557        9396   8664
#> 3605 22f9e814-6daa-4fe6-982e-c2cc5290561d     8006        5108   2945
#> 3606 18264a0b-cb51-487a-b2cc-f9258f0325f6    31648       13187  48575
#> 3607 7bf442fb-62c6-4cf5-8d5d-a8ccd6daa80b    25593        7759   6817
#> 3608 209307c5-8e39-44a6-8879-5e033e017eb4    32304       13539  49757
#> 3609 671f58ec-970c-4ccd-bfcc-115cecc3f189    32651       13457  38864
#> 3610 4217a140-cd83-4b9b-8493-b5b27688d055    30144       11746  11786
#> 3611 7c7d286f-5c3f-4fe1-864d-9351499bd530    31111       12829  50657
#> 3612 92503804-7aff-4f22-adca-421800786179    26629        8708   7787
#> 3613 4d492cde-8c65-44aa-a4c9-c637b4e22366    27736        9773   8842
#> 3614 a333a955-16bf-4157-bc86-a6919ce9edf8    28908       10373   9815
#> 3615 0f57f7d4-41b1-400d-bec5-09da91d825f1    31377       12553  50287
#> 3616 17cc7638-a3a6-4008-9fbb-72f03ef5f775    28411       10308   9456
#> 3617 03af62dd-c843-4790-b2dd-bd5b5897ed94    29254       11108  10654
#> 3618 c69c8d25-f81b-4240-a361-6bb328ad9474    30315       11943  11957
#> 3619 428873c9-887a-48a2-b4d3-e06618ebd2dc    23991        6569   5541
#> 3620 6fc9e2c6-fb44-490e-8353-2362b7b94ee9    25852        8252   7648
#> 3621 a1308227-2421-4537-9074-3218f078d9f6    26816        8956   7974
#> 3622 680fd5cf-3bdc-4317-bc99-cbd97fbebeb3    24193        6606   5740
#> 3623 e232b84c-2e05-494a-98ac-69489544d16f    24336        7215   5811
#> 3624 0adb6bc1-17fd-4ca5-90ad-89ca06950bc8    26829        8970   7988
#> 3625 b14bcb8f-a563-4b68-8a4f-5ef7da8b181d    29727       11445  11147
#> 3626 4f9cc48d-e9dc-42b0-93d7-6938ec0a8e7d    31313       13214  51465
#> 3627 1886860f-ad41-41a2-befe-fc2b5d361e38    27287        9072   8271
#> 3628 b0946b90-9a41-4a88-898e-eff0894e213b    31288       12966  50145
#> 3629 663dae9c-0484-4eb6-a093-ae19d0a743db    27770        9792   8876
#> 3630 ba384269-98b5-47ee-93bb-18a4e71ad0eb    25748        8136   7042
#> 3631 9552a04c-6468-41e0-bc5c-c91efedf2fc3    25850        8317   7137
#> 3632 5a5ff009-7591-4a42-b7cd-07a77af5b939    28607       10371   9652
#> 3633 0af18f1a-0f65-49a0-a09e-b37cfd875286    28470       10358   9515
#> 3634 0643e15e-76f5-4eea-a08e-d35eba7f13f7    32320       14073  56886
#> 3635 171e1cf6-8bcc-46f1-8afe-47756967611c    32387       14177  20807
#> 3636 a62a2950-521e-4670-a4cf-47f6863fc0d1    26238        8522   7280
#> 3637 8a6672c9-79b9-4c49-9d7c-0061a1141a7c    30297       11990  11940
#> 3638 a1d54aed-e9e7-4a77-95c5-5d62be8fe75c    32192       14063  29951
#> 3639 08c01429-e747-48f1-b38c-8e712fa53c8e    29276       10982  10676
#> 3640 9f98ec9c-fac4-48f2-996c-9c7558f64221     9310        6074   4969
#> 3641 a1ed2859-499b-4dbb-96b7-0d8728290de6    32000       13737  39140
#> 3642 c3f75363-b89a-4d6f-be40-e10ee2704c6c    32340       13799  49887
#> 3643 775d6455-bc3c-4fd0-9adf-ae105f71fc95    28916       10381   9824
#> 3644 6c1cd007-fea3-47bb-a8b1-4e4c040a2d94    31947       13762  50078
#> 3645 26d3edb9-e572-4272-835a-21b63200ea64    31970       13499  28307
#> 3646 36b878c8-7d53-4e90-8403-6f67fa911a2e    31175       12962  18413
#> 3647 1cf282eb-ab14-4d2d-8a0d-702ddd83cfcc    30233       11972  11875
#> 3648 ff984603-4e6f-4095-a0c7-11dbf89cb189    31354       13063  49085
#> 3649 2f901553-926f-44c4-8ef0-1f0ff2d772cf    28517       10367   9562
#> 3650 e3896096-bafa-4c02-bd35-372c4002b3d7     7191        4486   2232
#> 3651 959852b0-ce24-4c89-abff-ded427cbfbdf    27638        9642   8745
#> 3652 acc3b2c7-d229-41c6-bee6-0cc0c5c0cf29     6346        3001   1326
#> 3653 5e576254-2f7e-4456-8bbb-26964d1e67b6    28529       10369   9574
#> 3654 3a17fa1d-19a0-4e5a-922c-7a9b648d2ed6    28900       10676  10025
#> 3655 ce29ca20-450a-467e-b683-8bd6fffad38c    28695       10379  10011
#> 3656 6bf775cf-391f-4455-ba0f-264af0803ea8    31195       13004  49842
#> 3657 204e0eb0-c5ef-4522-9056-393e2e5177ea    25738        8135   7033
#> 3658 4291f18f-19cb-43ca-8385-50af43d7448e    31766       13369  50883
#> 3659 983aee62-70d8-4d39-a857-da6fee82bef1    30722       12445  12171
#> 3660 9f54d2f9-b787-4a50-8ea0-9db1cb7760aa    32555       14269  51580
#> 3661 84b2d5bb-4d5e-4661-b9e2-b3049f3d1c03    31571       12911  50116
#> 3662 7190fb71-0916-4f9d-88a0-8c1a8c1c9d0d    24855        7498   6220
#> 3663 69c1e87f-7ffc-487d-8724-09f4fba12b59    27612        9410   8719
#> 3664 a36dd143-6b0f-429e-95ba-335559ff4845    27679        9640   8786
#> 3665 9279ccd9-3088-409e-8bc5-215363e7a29e    25815        8215   7105
#> 3666 b5a6d6f3-73a9-4d70-bfa1-786bf166d14c     9290        6072   4949
#> 3667 ef65234e-2459-4ecd-b9d1-8751a7c7153d    31200       12723  44980
#> 3668 dc447507-2380-494c-96c9-e0edb2679a3c    29885       11179  11181
#> 3669 328dd5c5-51e1-4554-813d-b264098b061b    32239       13875     NA
#> 3670 5ce0fd7f-bb8f-4d0b-a995-1473e148d45b    32204       13903  49677
#> 3671 b399ac02-6b52-4ae9-8eb0-7b3fffc29eea    26743        8720   7902
#> 3672 d292c14d-ed36-477b-b088-ce80c9185710    28528       10370   9573
#> 3673 981cfb99-ff6f-452e-806c-116f56a484a5    29343       11043  10743
#> 3674 7ec15a09-9237-43cc-9401-fb76cc418022    25756        8207   7049
#> 3675 c8af316c-0e46-41ab-bce5-e63a1730c356     7190        4455   2231
#> 3676 439874cf-4057-4a7b-922b-f77a90a5bba2    24030        6601   5580
#> 3677 a84d5d5d-3fa3-483e-b737-6587971decc5    31785       13386  49836
#> 3678 503066ed-f217-4c3a-bda5-07bfc68c1cac    28560       10471   9605
#> 3679 e699246f-a474-4f91-a164-49b1d80bdad7    25689        8531   7003
#> 3680 6baa540c-d745-4804-b20b-20dae69d0d9f    28943       10717   9962
#> 3681 b6782b61-89e1-4a9d-9ad1-7715eb6ff628    24829        7451   6194
#> 3682 0b06c168-c660-440a-922e-954ac15c0df0    29822       11646  11202
#> 3683 e1677afe-2d03-4e11-b6af-ba3810720799    30191       11952  11833
#> 3684 16912b78-47fa-4742-ac95-60df2585a00e    31511       13173  24758
#> 3685 b454036c-4cca-4b02-b847-c7c9f68c345d    32514       14230  39380
#> 3686 93d10760-436e-4638-b506-a5c655ed5365    30622       12422  51589
#> 3687 eceef7ad-494e-4a84-a6d6-e7253fb554f0    30499       12043  12081
#> 3688 c897e280-6597-4dce-9c0d-ed845148d714    31163       12924  49825
#> 3689 ba447b79-44c1-48a7-b30a-a2460f219afe    28612       10382   9657
#> 3690 1d4e5e39-3328-4043-a743-1af99b5879c8    28707       10617   9998
#> 3691 ccde8174-ce0f-44f8-8bc2-e44872a2f30a    28597       10336   9642
#> 3692 82505f2b-7b63-48d1-a715-a197ae3a32c3    26661        8693   7819
#> 3693 37fd76c4-41d0-4997-a94c-d135bd9dc582     9277        6056   4936
#> 3694 d15e6d19-924c-4c1f-9d1a-e15b378c2875    31780       13381  50667
#> 3695 e0924e2e-74c2-4ae7-8d2a-4579871c6c29    32234       14085  31696
#> 3696 787b5760-f724-4caa-9c54-f26bb6efdc30    32607       14315  49691
#> 3697 b0ccc4f7-84a8-448b-bc7c-11e41d14ad09    28467       10350   9512
#> 3698 94cbc2c8-07e4-4779-851b-b657b46a7920    24890        7454   6255
#> 3699 a5c2a8bd-7935-4819-800f-32e3eefe4f61    28312        9998   9007
#> 3700 b8f2a6c5-b7db-497c-93d1-08ac7f3dbbd4    28565       10378   9610
#> 3701 d8f5b9b5-4cbf-4817-969f-99e638313383    30296       12207  11938
#> 3702 429ba323-7175-4bb2-8f81-e77fe9d38f3c    28998       10709   9910
#> 3703 dc30acae-b1e8-4676-959f-d3dad221c694    24826        7475   6191
#> 3704 4642915e-8c37-4692-9169-fa210b6efc8c    28075        9955   9336
#> 3705 a57a96ca-7aa8-4e0f-9ba8-437690fe50dc    27348       11703   8512
#> 3706 bb4619b4-30e6-473d-947e-41d75a573475    28541       10359   9586
#> 3707 4ca6d7fd-43f7-4c0d-8992-aa28d91710e6    30428       12356  12039
#> 3708 8a372789-3c74-406d-b3de-d2ee387b1f22    27543        9369   8650
#> 3709 df4d7b62-ef37-494b-b068-f319ad336bbb    27678        9345   8785
#> 3710 9c6d7765-03dd-4266-aeaa-926e5a85235f     7455        7122   2539
#> 3711 58ac0e67-b0c1-4a2d-b89d-ccf3296c787f     7512        7095     NA
#> 3712 ca1aab05-e07b-437e-84c6-2bdb47433782     7467        6999   2561
#> 3713 7d8a8d31-8628-4a56-934d-ada35fe98e8c    32121       14030     NA
#> 3714 12aea7fe-1548-4426-a47f-76bac18290bb    24337        7178   5813
#> 3715 c38a3fbc-f9af-4676-b905-4f101a99194d     8370        5347   3732
#> 3716 155b36fd-7287-4cf5-a065-6adc74fa866a     9771        7973   5512
#> 3717 f1fdaa82-25bb-4ae7-8945-c0b9864214ca    31209       12660  23250
#> 3718 009c9b30-a6de-46b6-a3c0-3f51a4fc6997    32480       13803     NA
#> 3719 f31cee33-d73f-40e5-b3e1-78162a1b27ca    32082       13993  41350
#> 3720 3a212660-0028-47dd-8ef2-362edd1ea2b2    31827       13938  22508
#> 3721 b0a3df00-b1ed-4ba5-8c2a-1414b6871e61    27214        9145   8476
#> 3722 0845c23b-3e5d-4802-ac42-e2658a55e9c5    31470       12792     NA
#> 3723 1749d4fa-1cdf-4f62-9783-08dd81e25a87    29231       11192     NA
#> 3724 189d2495-ff24-4ffb-9887-8fdc717cf4c0    32265       14152     NA
#> 3725 c83a2be7-048e-421a-9734-ff1a26a05484    32433       14279     NA
#> 3726 b1a65955-f70b-43c7-b262-b6781e404b4f    30030       11577     NA
#> 3727 5d6266d9-b034-439d-9234-91c6c9696f8d    29566       11287  10949
#> 3728 09a1fe57-c026-4ca4-b084-48b8ed9c106f    25291        9186   6428
#> 3729 046a6f57-6927-4f46-9c0b-67b762f2e42b     7120        6405   2130
#> 3730 89781fd0-0817-4de8-ac16-c9cf095b333e    29330       10950  10730
#> 3731 1435dd7d-3378-45ac-8b35-3ef9260afbaf    32517       14233     NA
#> 3732 df13444e-015f-413a-89f2-fe402765f232    28611       10495   9656
#> 3733 1d5c2aa1-3c96-4cea-9589-723d3cc9cd57    31217       12908  48637
#> 3734 29eb7ecf-3967-4bc4-812f-9ffa947b34ff    24808        7466   6173
#> 3735 f042a554-0303-4cbb-8ca3-b56281664b7f    32308       13747  27584
#> 3736 e430f1a2-3546-4691-8dd3-37c6262db83d    31263          NA  49938
#> 3737 f890f03f-3f07-4e11-bbd3-c59aeb877326    31442       13120  50551
#> 3738 5c10f2aa-0ee8-4629-8a61-3af17877fb63    32606       14311  48536
#> 3739 db9afb6c-3148-4e7a-8b3f-182fa8ad28bd    32245       14142  94362
#> 3740 b6086d5d-4976-43ed-b5e5-56a0251a8e30    32505       14217  44949
#> 3741 4ce9600e-ee43-4b0a-becc-c8de646ff451    32296       14095     NA
#> 3742 1a4d1d61-ea6e-4c11-80f5-a6b807932db0    31613       13301  48934
#> 3743 2fa2b6af-de4a-48f7-9548-47333df7fbe0    30429       12604  48901
#> 3744 d75903d3-b3c5-405d-a99b-d625bb063d82    30336       12215  11978
#> 3745 859229d6-d9c9-4d5b-87f9-2f5a2145cf12    32506       14218  58435
#> 3746 0ae84f6d-1523-4ae8-883a-149539dcd7b3    31267       13042  38557
#> 3747 6c9c6852-1f41-4e03-83c2-9c4d78e35342    31428       12862  23066
#> 3748 83f3cd34-466b-4d30-acfe-42523e6f5764    32334       14101  50015
#> 3749 29626ee6-b528-4618-a4a5-771a5b0ff54d    27835        9817   9262
#> 3750 bab20c49-1865-4c95-a850-fccaca346c18    32595       14304  48717
#> 3751 8e16968a-ac98-4e30-a7b4-5e90202277f6    27752        9779   8858
#> 3752 b22487e6-897e-40b4-92dd-3ce8d851e587    30905       11909  49641
#> 3753 590a61c9-e38d-49b2-a8e2-21340d613cdc    30515       12265  49579
#> 3754 5729fb1d-9fb5-43da-824f-66b96822f023    31549       13273  28309
#> 3755 1c5a8bd4-1b02-458e-943d-c391d3f0258e     8339        5393   3701
#> 3756 d753a8d1-abb0-404a-ae73-ae8beab3d28f    31681       13049  39093
#> 3757 f0d837e0-54e6-496d-9334-e2d6365d16d6    24294        6973   5806
#> 3758 d61b7bc0-beec-4cab-97b0-7dbd27ded26e    32067       13542  48638
#> 3759 69560a34-8601-4e88-a555-b99955ce28b4    31229       12664  27368
#> 3760 d8afa121-1cd9-499c-924c-364a6e0e0f7c    32532       14228  37329
#> 3761 010806af-e6ba-409a-b7fb-a119714238f6    32155       14044  37161
#> 3762 52f75d86-f8fe-4411-a381-7675acd5bca9    26690        8677   7848
#> 3763 be1314f9-5b2a-495d-be64-579158fd29eb    31212       12588  49940
#> 3764 79a3c87a-85e2-41ed-aee2-ee6b33dd401e    28899       10649  10024
#> 3765 47999e1e-b526-4ab5-bd4f-5f5cac53a62a    31699       13336  47385
#> 3766 be62bf39-c737-416f-a1ea-6b9d61684a62    25935        8364   7209
#> 3767 45fe5280-b366-4c8a-8f2e-99fa5a4ff631    25770        8210   7062
#> 3768 a511a53f-8628-465b-b7ef-79c02dcef127    24380        8427   5839
#> 3769 06748afa-6b89-461d-8de6-9f1628169845    32326       13961  46142
#> 3770 65006631-45b1-4920-b0a3-f00277119f1e    24835        7441   6200
#> 3771 543a98a6-42fb-4fbc-9899-f0ee59b1a114    27072       10073   8088
#> 3772 0e581a51-e705-45e2-85d3-bc2c073e626e    25827        8291   7117
#> 3773 f7e3c1cb-6ec1-45fa-ad64-6b01957c34b1    25734        8123   7640
#> 3774 2c48a13f-bac4-46f8-b405-7ada72dd543e    24181        6567   5728
#> 3775 945aa5ab-3fde-4091-b360-66c2da384f2c    32214       13981  42414
#> 3776 7475baa8-7662-49be-9b41-526450f28bfc    32078       13535  46040
#> 3777 0dfd5d3f-ebb5-4efe-8df1-2ebda0e5185e    24145        6744   5692
#> 3778 9ca56390-fb0e-4261-ac0d-1770f65021bc    29364       11110  10764
#> 3779 cb3b5df2-231e-4040-867e-5b6020457be8    27216        9182   8277
#> 3780 1bdb2a2a-62bc-4043-8c80-f9b501d2003d    26695        8738   7853
#> 3781 f6244333-6b6a-4e61-bc2c-cb6ffc2f318a    26739        9092   7898
#> 3782 441ff2e1-53bd-47dd-b44a-0f97e0b97d9a    30770       12519  12187
#> 3783 e6d4351b-d073-4ed5-9d5a-51ea2e9298eb    30735       11922  12235
#> 3784 7579c408-f3d3-43a6-a05a-2aec8291a618    32290       14148  46989
#> 3785 5408024f-0014-4abe-9d27-4467d802d50a    27721        9451   8828
#> 3786 6a8a9040-0b42-40c0-a827-94e4150add24    27260        9506   8268
#> 3787 d3cde6a6-f635-40d8-adc6-f1a7892f8683    26793        9109   7952
#> 3788 47ba2a5d-1177-4421-a9f0-4db1906afff7    31123       12803  38897
#> 3789 139d8533-cbd7-4a41-9567-f1ce1c641311    30294       11912  11936
#> 3790 af606d16-92a5-474f-8674-0bcd440a76c2    31533       13262  49674
#> 3791 d59adf1f-97dc-4787-b47b-9dc6148941ee    30094       11735  11745
#> 3792 0bfa4f27-7a00-438a-a0c9-20fbf0be3370    31709       13307  50171
#> 3793 54403340-5565-4fdb-82bf-60c9b38a9bac    29818       11118  11285
#> 3794 900c4073-411b-4ef0-9188-fc4188ffe588    30261       11962  11903
#> 3795 3935a558-5680-4a4f-9a7a-a067210a2a42    29955       10983  11351
#> 3796 d82636f8-8ec5-4be3-a61a-8b1947a880d3    32477       13892  91477
#> 3797 021fddc1-4ba1-4bcb-9f40-347a0be8866a    31147       12587  49817
#> 3798 9fb02841-5372-49f8-b621-958d5bb4b189    32316       13771  91467
#> 3799 a3dca1fa-69cf-4468-b95b-63c8d532dc5f    32549       13643  50232
#> 3800 555ad7d1-ee7a-4679-b24e-0cbee3ca680d    29584       11135  10938
#> 3801 4a1e3f81-112e-4357-b3a4-a7cb7349bd1a    31696       13202  50836
#> 3802 e4b362e0-d43c-4279-b30f-15000dbc0591    29797       11084  11164
#> 3803 69abeeed-ad7d-46a8-a1a2-ce0c0a1c3afe    30803       12415  48388
#> 3804 8c56b03a-baa7-4030-ac56-6648fb154bb7    32307       14123  57870
#> 3805 051dbbdf-1718-4abf-a088-25e551f9a303    32451       13605  48473
#> 3806 cbfc2a87-0ecf-4e5e-8d2d-2d171308f377    30638       12423  50835
#> 3807 4813aa50-3a36-4658-855a-1bf1098d7a69    31638       13197  50189
#> 3808 1d9fa156-0e17-4de2-8ee4-6756ea760066    29546       11318  10962
#> 3809 4385e287-c7c3-4a5d-ba11-642d9e7a99af    31300       12576  51032
#> 3810 53a75e9c-b028-4ae5-97fc-31992f8d9dc2    30489       12408  12016
#> 3811 64e79f32-c315-45ec-831b-374c0d6e10be    28798       10384   9695
#> 3812 76e8187a-8262-4929-8078-36e4820c018e    30340       11907  11982
#> 3813 f6bb7c37-844c-4f68-bd90-f6bd1a8bb2fd    29501       10971  11007
#> 3814 90863a6a-0a66-4ad1-bb1e-13126324f644    31714       13334  48511
#> 3815 991410bd-6edd-415e-9ab1-fb03f0fccc21    32154       14045  50789
#> 3816 743aebf3-b1ad-4de7-a381-f6d10446989b    32462       13923  49760
#> 3817 d0d36216-31d3-4920-acc2-e97823a46ecc    31735       13343  50184
#> 3818 2717b760-4ea5-4e18-b1b3-b39275b8978d    30700       12084  12250
#> 3819 8ecba9b0-11b8-4cd3-88f2-3f8301d385f8    31317       13217  31778
#> 3820 a0fb3448-d9ff-40d4-8387-59a802768794    30470       12608  50908
#> 3821 fdc9f4af-b677-44b3-947d-d7fd18e77390    31532       12748  50942
#> 3822 d6d18868-c912-4af0-961f-e529d8fc8e45    30455       12650  12032
#> 3823 da734b72-1ac6-440f-89c9-40b90c0ad1a7    30347       11934  11989
#> 3824 3a1d02b6-1940-49b2-a0e8-1ccb1896c5e5    30462       12417  12031
#> 3825 ae2f82ea-f93c-4133-93d9-3404006f3035    32305       14121  49870
#> 3826 3423801e-c462-4d71-a740-28dca36bcbfa    29894       11371  11124
#> 3827 65fc4235-1a53-45fa-8117-b40bfdcc807c    30783       12497  12319
#> 3828 fbf333a7-12c2-44da-8705-994abaadd67a    32558       13543  50105
#> 3829 ebb3f664-8f39-448b-89aa-422f4aa9e312    31412       13105  30063
#> 3830 199c8ea9-eaca-405c-bb4f-e2738e59294b    32499       13975  50204
#> 3831 d01f2455-60cc-486f-b8c4-9716f9e85b1b    32529       14226  28100
#> 3832 6f896917-eb15-41ad-9e0f-18ca8e8969b4    32401       14020  50286
#> 3833 80990455-df2a-4d7a-92a2-7828f4f9c777    31230       12796  50074
#> 3834 27a44c07-9e5c-4332-9ad1-7e66ddf0e9c7    31802       13402  29246
#> 3835 b3768244-a2ee-4ab8-9c2e-4e83ac020821    32654       13837  50975
#> 3836 ca8107bb-0548-49ba-8f76-2a65f93c4dce    32343       14115  51199
#> 3837 e549984f-1414-4468-9645-4766ba767510    29713       11570  11183
#> 3838 a3c8276d-e6f7-4fa0-bffd-a087f225ef54    32131       13772  35938
#> 3839 16b9334d-bebc-4f2e-94af-0450cb5dd0fe    31570          NA  49761
#> 3840 43fbd37f-a5c0-483c-9522-0f20c6483d80    32540       14262     NA
#> 3841 a8873d1a-d00f-454a-b18d-8e833d429108    32311       14122  94368
#> 3842 7595ead0-d80a-4dc5-bbd4-b2577d566608    28809       10614   9803
#> 3843 e02ce2d7-5bcc-40f2-a35c-3e80e6f7b695    29456       11239  10856
#> 3844 9c00d8a7-dc6e-4701-8ebc-2f9eb0a38324    31720       13338  50108
#> 3845 23489c12-9efd-4a72-a43a-38d2981caca3    31679       13051  27390
#> 3846 b58cabc3-4443-401f-95fe-54809db519ab    32288       14137  75806
#> 3847 172b5902-e710-4101-ae32-9c18be65266b    31745       13350  50923
#> 3848 0854bc61-cced-4ec9-84fe-726c822d6926    30393       12060  48594
#> 3849 7a0fe22d-0eb1-4339-91d6-0d21b4804eb9    31502       13405  50972
#> 3850 2cf0146b-c27d-401b-a5f3-7774748343bc    31471       13029  45663
#> 3851 556c438d-87bd-4ef3-adfe-1ee617e7ef2e    32586       14242  37438
#> 3852 7c256087-75e7-435c-8efc-5b46ad316e6e    31186       12487  49818
#> 3853 a01280a0-41f3-406a-83bf-3d57e2a6db90    32617       14323  50303
#> 3854 366703df-ee7c-4f00-b6a4-ae475956f039   900007       10862  10338
#> 3855 36c85a2b-ce62-43b4-b6ec-0497323da1a1    29437       11147  10837
#> 3856 53542368-9d32-4728-a72a-4e788f9d9ab3    31568       13278  49729
#> 3857 d65013f2-51b0-45a6-8f26-608574abeee2    29403       11263  10803
#> 3858 ac973c8c-c148-4866-b3fc-f39e402d61d9    30764       14483  12268
#> 3859 fcba2ad8-5b56-4d42-8250-937e58a6e6e4    32434       13792  39605
#> 3860 8fd82d9f-fa30-45e3-8c5d-e2278441a984    29832       11595  11208
#> 3861 5b947dd3-1a96-48ef-bbf6-bf905556629c    28536       10363   9581
#> 3862 f824eed3-af52-4794-92da-f32974831c98    28599       10487   9644
#> 3863 3513168f-e8ec-4dc8-984d-c305758d2e38    30640       12303  12211
#> 3864 5c972829-e159-49de-9aa8-edf961b39850    32042       13754  50932
#> 3865 0daacac7-7fd7-4ceb-9c2c-c7eb24e929e7    31979       13506  51047
#> 3866 00fab770-3336-436e-9901-89849769b7b2    31597       13232  18551
#> 3867 708dfc0a-2a20-4551-99a7-8188fe4cf99f    31398          NA  50797
#> 3868 ff813dc6-d3fb-4021-830c-736996df5863    29937       11563  11317
#> 3869 0d48b2af-aed0-49be-9945-6c091040206b    30881       12521  12409
#> 3870 2ae84168-c2e9-4dd0-9680-afc1f9b11668    29617       11386  11014
#> 3871 b6e1d56a-8fc4-4ea7-a88e-52f281c6d4ba    29522       11476  10992
#> 3872 1b96851a-604d-423b-8bd7-f0d394bd6ca8    30361       12222  12003
#> 3873 a8e9bc1d-a8a8-4b93-b108-0f0f7fa04185    30100       11711  11749
#> 3874 bed14e65-6ae0-4ad0-9f9a-85abb3c4824c    28902       10805  10027
#> 3875 b8569ff2-bc1a-4b91-9830-c840e7b94549    29716       11573  11187
#> 3876 72fc9f1e-a09f-44bb-a2f8-4a51273fcb40    31469       13344     NA
#> 3877 4baef7c8-e86c-4524-b9ab-a25cbbc46fa1    31472       12755  50272
#> 3878 80fa17ab-6d73-4276-a9e8-ede251995fa6    31290       12717  46597
#> 3879 a2b6e1f9-1f06-45e3-b6e9-79ec8490e5ef    30198       11794  11840
#> 3880 19da8eea-111c-4e70-b516-0259015ad9db    27864       10144   8921
#> 3881 f8ba56d5-ba8f-4ed0-92bc-e850c619bb80    31438       13116  47025
#> 3882 a9b13ddb-a292-46b8-8f66-13fe60cffe5a    31559       13246  66954
#> 3883 8c609519-c1cc-4c84-bf7a-9c6c8d483800    30847       12980  46330
#> 3884 fdc21b70-71d4-4b68-ac29-8470f9a95ab2    32353       14178  46342
#> 3885 f093ef0b-6f2c-4fb7-8477-71f1eea28ac0    32574       14272  46165
#> 3886 91555a62-f501-46c4-ba59-20f4a27e8d8d    29675       11532  11071
#> 3887 9a63551b-fc8b-43c3-9f70-1f19835cf8c9    31697       15307  46856
#> 3888 3a7f48c5-6cda-4793-89a0-2bda1bc55e14    31596       13231  46243
#> 3889 1247fbf3-500a-42e2-a323-7a3d4a006984    32090       13858  41770
#> 3890 66a249cc-3ba5-4b1b-bc6d-b292f7f8fc51    31674       13046  30713
#> 3891 11e233cf-0f59-40b1-b59c-f5f3bb06bc7e    31285       13249  39334
#> 3892 a2fbe350-af20-459a-b8b5-3c9a0bab06fe    28217       10097   9160
#> 3893 998fb46a-9579-479c-be9d-9ad9478b6000    29919       11346  11340
#> 3894 367d293e-9fc9-41e4-875f-3f2c1f8565c2    30323       11817     NA
#> 3895 0f8e560c-013d-47ad-8fa0-2a397ab3258e    31326       13223  30687
#> 3896 ab9fd2ff-fb48-4d8f-824c-5172fe67d28a    32643       13945  97057
#> 3897 e6723038-94ed-468b-aa3a-9c2080dcae81    30344       12217  11986
#> 3898 3f35f03b-45c8-4bac-a535-b97a0c5022b3    31593       12603  47015
#> 3899 8bb26f10-90f9-42ce-bca2-1f450515d9d9    28948       10746   9860
#> 3900 9ddec51d-2012-4a18-a37b-fccabf04e0a0    31616       13294  24752
#> 3901 38e300f8-1cb6-46cf-966f-4c65f7c49d4f    28960       13317   9975
#> 3902 f9344384-6d80-416e-aec8-876683583801    29858       11509     NA
#> 3903 4ed28749-5605-4706-a6c8-565dcede96bb    31249       13122  29930
#> 3904 7191cfa4-01c7-45ed-95a8-0d503ed1cc1b    32458       13725  32587
#> 3905 a217c048-2479-4b4a-8b47-6e166b16d1ed    29969       11466  11346
#> 3906 ea1c9271-d0b7-463b-a232-3cdd74b31427    32373       14173     NA
#> 3907 9aa9d930-6ab7-4ba0-b6be-69f50497d8e1    32587       14240     NA
#> 3908 cfb697e0-f8c5-4986-a2ba-59c99e3b5b1e    26796        9363   7955
#> 3909 97be6c07-9295-4f98-8a7f-83aaa7a47aad    30457       12101  12025
#> 3910 e9256df6-ca8b-4575-8df8-75bf3367b85b    28631       10306   9676
#> 3911 d5608d99-560e-4026-85cc-4ef79d1f1d27    32423       14202  47000
#> 3912 a8edaf07-1599-47c0-a138-1fab2a84dff9    31426       13124  46946
#> 3913 af51a581-554a-418f-a3b1-5e24da5dd190    32196       13719  27847
#> 3914 89fc014a-7d41-40c9-90d1-1459286813e2    32485       14291  28334
#> 3915 a891204c-a3dc-4d72-a72a-b004ab4d9d96    31332       12688  46875
#> 3916 630e7cfe-e952-42c3-9ffb-33192be4711a    32274       14145  26627
#> 3917 a10ec19e-0573-4a53-9a27-5285ce9fe85f    30349       12218  11992
#> 3918 907dee94-20a5-4ded-a25f-c5783c41a44e    30313       11757  11955
#> 3919 93d8047f-24c5-4a8f-827b-b3ddacebc561    32571       14277  46897
#> 3920 4cac4ec4-d719-4f77-a714-0a8ed45be814    32635       13604  46178
#> 3921 6e480446-348b-430a-b2d0-dca65cbe9fb1    30584       12482  46807
#> 3922 eebb987d-dbe0-4d3a-95a4-33144c6bb53a    30413       12284  12221
#> 3923 32a0db4b-3c70-49b5-8921-ed99310691cf    31725       13319  46221
#> 3924 01be8423-2835-4450-80c1-4e462bbfb661    32182       13724  46217
#> 3925 cb332cbe-4490-48c6-9a21-046475206e07    24850        7552   6215
#> 3926 e5f9d5a7-f2f7-48c5-8abf-a72b8400dbcd    30473       12381  46332
#> 3927 aa5741d8-cafa-4bac-bf36-85f92a7e995c    31050       12885  46333
#> 3928 c3e877c0-282c-4955-a1cb-7e12403698e0    31757       13364  46370
#> 3929 a6fa52bf-e47d-4799-b0f2-cb9fa9939220    31692       13324     NA
#> 3930 f43c9d6b-8caf-4f00-a0c2-bb1f73e70a86    28646       10764   9742
#> 3931 b867114e-9ac1-4368-aa44-226b6342c500    32064       13992     NA
#> 3932 9f102200-82e7-4fce-a033-2a06d16c35fd    32233       13718  46846
#> 3933 30ed5daa-7bbd-4c35-b7ad-0ad0f9350973    32209       13916     NA
#> 3934 38293bdb-87d5-4219-be46-44fea6741483    23981        6539   5531
#> 3935 707b300c-cc7d-48e9-a0ea-ef20bac0ed0e    32539       14261     NA
#> 3936 10498aac-6432-404e-8bcd-52b0b9f57a21    32185       14058  37228
#> 3937 002a02ca-e569-410e-867d-e317bad07fd1     9574        9134   5410
#> 3938 6c8bf92c-4031-4ae8-84fe-4a47972b3bae    30753       12516  12296
#> 3939 efe7d321-9ce8-4a43-9c00-999eda83d73a    32229       14087  46788
#> 3940 79348865-f45a-45dd-8b2f-a919b3fcc91b    32119       14029  26501
#> 3941 50bcb5d3-62fb-45ac-b25b-5dffbff0cb0c     8119        5150   3459
#> 3942 f73a26da-0da4-4a51-88b5-98988ca94c58    31673       12732  46920
#> 3943 c54e7e12-8433-46de-80fa-ae98cb5407dd    32264       14151  60087
#> 3944 8e57530b-1a1c-48d0-a6df-9fb2fa75f581    32349       13882  45388
#> 3945 943a818d-074a-4243-9d54-f91ada96923b    32175       14051  94359
#> 3946 8721884c-d136-4c87-ac7a-c61c035f1af2    32347          NA  46840
#> 3947 02d2c680-e929-41d9-b514-67ffe0c4cd2d    29746       11576  11193
#> 3948 850b8283-0a1d-4a47-8586-8398df905c58    32232       13684  46252
#> 3949 f28f45f8-a617-4caa-8332-ccfff0dddc07    24155        6756   5702
#> 3950 1ed30e79-c25f-4ce1-a17f-94a4bf6d3686    24194        6794   5741
#> 3951 9314e111-0b7e-4a75-8026-0cc5abe40543    31456       12856  15466
#> 3952 613aaf0a-ee53-431d-9bb9-aabc174fdab9    30723       12439  12172
#> 3953 726fbbac-42c1-451b-8712-72f92fc1cf77    31604       13229  46960
#> 3954 c6c63d67-4913-497f-a17c-55c72cbe5b9b    29331       11154  10731
#> 3955 66a432fc-ee15-4f63-a37b-207c1b5e7c31    29773       11556  11277
#> 3956 dec4a1a9-5bfc-4ca3-ad1d-903020bf4403    32312       14125  46668
#> 3957 bfa27c96-613d-4233-b661-e9b5e3624659    30537       11824  12133
#> 3958 649b6405-54eb-4c23-8a30-84c2f2c3031a    28625       10499   9670
#> 3959 52366445-a41d-4b7c-bd42-1ea4cb940695    24044        6545   5594
#> 3960 20b85f3c-8cec-40a3-8cfe-05a4fe43c23a    32132       13937  38739
#> 3961 2eb0706c-3017-4895-a207-71d6fe9e1549    31143       12777  22261
#> 3962 45f4b9ae-f1be-454b-bff7-8f808e6f0268    29413       11085  10813
#> 3963 c9593a7a-1b6d-4112-aabe-2c47f53e6f13    30101       11727     NA
#> 3964 b07a20bb-da2a-4440-a295-44352d350cd6    31628       13292     NA
#> 3965 c4b15bec-4adf-444a-bda1-5a07ade70abf     5171        7123    673
#> 3966 80f0f41f-1b81-4552-bcc8-407d96add7c7    31689       12695     NA
#> 3967 927dfc54-48f1-4566-a58d-a1351e8ad704    31579       12925  38843
#> 3968 a87c5fa3-3e73-4c15-bce7-9c2c7152f58e    30113       12197     NA
#> 3969 ca668ed5-05b3-41da-a3a4-6fa8982968f6    27459        9027   8104
#> 3970 26164d5b-1e27-445d-8684-67b80e576567     9769        7192   5192
#> 3971 db3b481f-4edb-4392-87c6-6198ec2a12b8    30621       11826  12119
#> 3972 ce74af98-fcfc-446d-83fe-e875d2e8dbd9     6983        4066   1939
#> 3973 b24beb2f-de5d-4160-8b82-d7a5578b59af    32548       14265     NA
#> 3974 f6b48c8b-66ac-47a3-aafc-5addce6a6d82     8020        7975   3493
#> 3975 728a0b65-0f9d-4af3-944b-b12cd74243bb    28307       10131   9155
#> 3976 68969959-6910-49f3-b08a-05cabe34336e    30086       12424     NA
#> 3977 ae103342-a4f0-4dbd-8c2a-63d9b159d9bd    26422        9083   7410
#> 3978 b4e5d1c1-5915-4326-b737-d6c796da0d75    26468        8389   7573
#> 3979 325735c1-9fa1-48ee-bb8d-2ae45781f28d    28905       10693   9812
#> 3980 947ba5a9-71de-4cc5-839a-884cfa49544b    24979        7562   6344
#> 3981 812162ea-0b21-4da6-b7c9-383b1e8ab60e    31809       11830     NA
#> 3982 9d8effd8-9693-4b7a-b235-cf1d5124af64    30967       13419  38062
#> 3983 4d1f4c44-3666-4014-95fc-4b0013b6d9a5    25431        8021   6798
#> 3984 4278baf5-f774-4031-ab0f-12a9c7e43c45    28738       10532     NA
#> 3985 2df27f31-ffaf-4c2a-abed-0c34d4081f07    32166       14088     NA
#> 3986 e6166069-6d2c-4121-9988-bc7b533e1558    26778        8985     NA
#> 3987 b1a2aa6e-7104-4e35-910d-fbefddd74a78    27219        8903   8242
#> 3988 941662f4-da41-48cf-a663-cfbd011491bb    32282       13968  46604
#> 3989 92c02ef1-8400-4f5a-9420-6458755e14d4    29373       11007  10773
#> 3990 ba1032c6-bcbd-430c-afae-40898b9e83bb    32366       13663  29110
#> 3991 d5008b72-1433-4239-b06c-14c5b33415b0    31804       13404     NA
#> 3992 fa8cfe11-018a-4d4c-9588-c86cab0415c0    26346        8499   7305
#> 3993 0847010c-9a77-4f0b-9d63-c8b4b224d263    25767        8033   7059
#> 3994 609ab653-c3d4-4138-a2d9-c697a34174ad    28491       10163   9536
#> 3995 d4dd3d0b-5023-415d-ad15-94f294c561b1    26738        8748   7897
#> 3996 bfd0c6e3-dc98-4280-bd6a-f82902c0f46b    29425       11228  10825
#> 3997 a577ef90-17c3-4dbf-b6b8-e054f21a778d    32581       13566  29838
#> 3998 4c54672f-f0f5-47ff-9d98-33137e3c0773    31560       12652  46580
#> 3999 977646e0-0142-4293-aea2-cb36742bfac4    31828       12824     NA
#>          pfr_id fantasy_data_id sleeper_id years_exp
#> 1      MurpBy00           20888       5864         3
#> 2      BordBr00           19300       4439         5
#> 3      HamiAn01           18658       3838         6
#> 4      WhitJa05           22171       7169         2
#> 5      BreeBa00           16407       2091         8
#> 6      PeteKe01           18293       3527         6
#> 7      WilsMa04              NA       7708         1
#> 8      AlfoRo00           15177       1540         9
#> 9      WiggJa00              NA       7762         1
#> 10     BrooNa00           21414       6634         3
#> 11     ThomJa04           21635       6711         3
#> 12     WashCh01           18521       3714         6
#> 13         <NA>           22431       7453         2
#> 14     ThomDe06           20729       5866         3
#> 15     BanjCh00           15011       1442         9
#> 16     BakeBu00           18927       4081         5
#> 17     AlleZa01           20738       5871         3
#> 18     PhilJo01           16813       2357         7
#> 19     WattJ.00           12955        856        11
#> 20     BeexRy00           21403       6400         3
#> 21     LedbJo01           20854       5945         3
#> 22     DogbMi00           21141       6304         3
#> 23     MaurJo00           16153       1920         8
#> 24     DickMa00           20380       5615         4
#> 25     PeteCo00           11437        608        12
#> 26     FotuLe00           22083       6948         2
#> 27     LawrRa01           21885       7004         2
#> 28     CrawJa00           14096       1136        10
#> 29     PratMa20             549         17        16
#> 30     GardDe01           20085       5158         4
#> 31     KennDe00           16397       2084         8
#> 32     TurnZe00           20088       5161         4
#> 33     DimuVi00              NA       7788         1
#> 34     FittKy00           19965       5069         4
#> 35     HickJo00           16845       2389         7
#> 36         <NA>           22281       7285         2
#> 37     VallTa00           19071       4225         5
#> 38     GoldMa00           16819       2363         7
#> 39     JoneCh03           13749       1038        10
#> 40     CollZa00              NA       7637         1
#> 41     WalkJo01           18167       3406         6
#> 42     SimmIs00           22004       6781         2
#> 43     BrewAa00           14042       1122        10
#> 44     JoneJo07           22029       6808         2
#> 45         <NA>           18274       3508         6
#> 46     HudsRo00           13037        879        11
#> 47     BeacKe00           13913       1088        10
#> 48     MileJo00           21140       6303         3
#> 49     MurrJu00           18416       3629         6
#> 50     HarlSe00           19001       4155         5
#> 51     PughJu00           15094       1496         9
#> 52         <NA>           21160       6560         3
#> 53     GarcMa00           16894       2437         7
#> 54     IsidDa00           19055       4209         5
#> 55     HumpD.00           16785       2329         7
#> 56         <NA>              NA       7909         1
#> 57     LeexAn20            3100        112        18
#> 58     McCoCo00           11047        533        12
#> 59     MurrKy00           20889       5849         3
#> 60     McSoTr00           20874       5974         3
#> 61     SamuJa00           19996       5107         4
#> 62     EdmoCh00           19919       5000         4
#> 63     BenjEn00           21773       6951         2
#> 64     ConnJa00           18983       4137         5
#> 65         <NA>           21850       7103         2
#> 66     WardJo00           21782       7087         2
#> 67         <NA>           19258       4399         5
#> 68     ErtzZa00           14856       1339         9
#> 69     YeldDe00           20332       5277         4
#> 70     DaniDa02           19176       4323         5
#> 71         <NA>           20199       5235         4
#> 72         <NA>              NA       8033         1
#> 73     WillMa04           16816       2360         7
#> 74     ElliAl01           18642       3824         6
#> 75     HarrDe03           15305       1619         9
#> 76     GreeA.00           12845        830        11
#> 77     DortGr01           21071       5970         3
#> 78         <NA>           20979       6165         3
#> 79     WhitIs00           19314       4451         5
#> 80         <NA>           22234       7233         2
#> 81     MoorRo02              NA       7601         1
#> 82     IsabAn00           20820       5915         3
#> 83     HopkDe00           14986       1426         9
#> 84     KirkCh01           19815       4950         4
#> 85         <NA>           19739       4836        NA
#> 86     AndrJo01           15961       1789         8
#> 87     HallDa03              NA       7730         1
#> 88     MoreFa00           18972       4126         5
#> 89     WillAv02              NA       7809         1
#> 90         <NA>           20097       5150         0
#> 91     TerrAJ00           22075       6836         2
#> 92     OlivIs00           19868       5044         4
#> 93     BallCo00           21021       6283         3
#> 94     PittLa00           18573       3761         6
#> 95     HarmDu00           14887       1366         9
#> 96     WillSh02           14925       1395         9
#> 97     ShefKe00           20938       6140         3
#> 98     HarrEr00           17899       3144         6
#> 99     ArmsCo00           20032       5344         4
#> 100    GranRi00              NA       7662         1
#> 101        <NA>              NA       8104         1
#> 102        <NA>           22453       7478         2
#> 103    ThurNi00           20637       5727         4
#> 104    BullJo00           18002       3241         6
#> 105    ComiJo00           21009       6116         3
#> 106    DaviMa01           21884       6838         2
#> 107    BraiJo00           21040       5954         3
#> 108    RushAn00           21435       6542         3
#> 109    JarrGr00           17059       2592         7
#> 110    PennMi00           16486       2143         8
#> 111    DaviTy01           16914       2457         7
#> 112    GrahTa00              NA       7840         1
#> 113        <NA>              NA       7980         1
#> 114    SmitKe03           16378       2073         8
#> 115    LindCh00           20857       5895         3
#> 116    KooxYo00           19565       4666         5
#> 117    WalkMy00           21989       7012         2
#> 118    MeanSt00           15203       1561         9
#> 119    EtheDo00              NA       7982         1
#> 120    FowlDa00           16764       2308         7
#> 121    JoneDe01           17983       3222         6
#> 122    VaugJa01           17246       2778         7
#> 123    SmitRa02           22233       7232         2
#> 124    BateDa00           15206       1563         9
#> 125    EjioDu00           19978       5088         4
#> 126    OgunAd01              NA       7810         1
#> 127    BellQu00           21136       6296         3
#> 128    ElleEm00           20094       5147         4
#> 129    OluoFo00           20007       5332         4
#> 130    CopeBr00           15423       1657         9
#> 131    HarrJo02           14567       1238        10
#> 132    DalmDr00              NA       7725         1
#> 133    CowaRa00           19429       4549         5
#> 134    SpriJa00           17980       3219         6
#> 135    MayfJa00              NA       7684         1
#> 136    BeavWi00           18043       3282         6
#> 137        <NA>              NA       7979         1
#> 138    GossCo00           20034       5335         4
#> 139    HennMa00           21951       6881         2
#> 140        <NA>           19945       5312         4
#> 141    GonoMa00           20093       5146         4
#> 142        <NA>           22204       7202         2
#> 143    MorsTh00            9201        445        13
#> 144    RyanMa00             732         24        14
#> 145    BarkMa00           14855       1338         9
#> 146        <NA>              NA       7531         1
#> 147    McCaA.00           16116       1895         8
#> 148    RoseJo01           19763       4863         4
#> 149        <NA>              NA       7741         1
#> 150    DaviMi01           16887       2431         7
#> 151    PattCo00           15150       1535         9
#> 152    OlliQa00           20900       6002         3
#> 153    HawkJa00           21933       7058         2
#> 154    MattJa00           16531       2172         8
#> 155    McGaKa00           20870       5874         3
#> 156    PittKy00              NA       7553         1
#> 157    HelmDa01           20797       6089         3
#> 158    HessPa00           21569       6662         3
#> 159        <NA>              NA       8105         1
#> 160        <NA>           22163       7162         2
#> 161    HursHa00           19843       4973         4
#> 162    GrahJa01           20662       5754         4
#> 163    SmitLe00           12777        812        11
#> 164    RidlCa00           19802       4981         4
#> 165    ZaccOl01           21142       6271         3
#> 166    SharTa00           18058       3297         6
#> 167    HansCh00           19021       4175         5
#> 168        <NA>           18895       4922         1
#> 169    DarbFr00              NA       7530         1
#> 170    BlakCh00           20224       5241         4
#> 171    GageRu00           20006       5110         4
#> 172        <NA>              NA       7746         1
#> 173    RedmAd00           18370       3590         6
#> 174    ColoTr01           22010       6930         2
#> 175    PeteMa00           16779       2323         7
#> 176    JackRo00           20300       5448         4
#> 177    YounTa01           18027       3266         6
#> 178    SmitJi03           12829        825        11
#> 179    WorlDa00           18007       3246         6
#> 180    DorsKh00           22202       7200         2
#> 181    ToliKe00           20111       5629         4
#> 182    MarsIm00           20867       6023         3
#> 183    HumpMa00           18917       4071         5
#> 184    SeymKe00           18135       3374         6
#> 185    AverAn00           19927       5301         4
#> 186    WestCh03           21174       6243         3
#> 187    JeffTo00           15516       1686         9
#> 188        <NA>              NA       7970         1
#> 189    StepBr01              NA       7685         1
#> 190    WilkMa00           21639       6714         3
#> 191    RichJo00           16825       2369         7
#> 192    LeviAn00           14767       1298        12
#> 193    ElliDe02           19960       5071         4
#> 194    ClarCh00           19070       4224         5
#> 195    StonGe00           21931       6923         2
#> 196    CampCa99            3341        125        14
#> 197    WolfDe00           14059       1128        10
#> 198    MaduJu00           21900       6818         2
#> 199    WashBr01           21886       7122         2
#> 200    MackIs00           21535       6601         3
#> 201    McKeKa00           20027       5327         4
#> 202        <NA>              NA       7968         1
#> 203    WillBr02           14906       1383         9
#> 204    ElliJu01           16315       2031         8
#> 205    RicaPa00           19209       4353         5
#> 206        <NA>              NA       7808         1
#> 207        <NA>           19203       4347         0
#> 208    PoweBe00           20914       5910         3
#> 209    PhilTy00           22027       7112         2
#> 210        <NA>              NA       7690         1
#> 211    TuckJu00           14688       1264        10
#> 212    OwehJa00              NA       7626         1
#> 213    HayeDa00              NA       7820         1
#> 214        <NA>           16492       2147         8
#> 215    WelcKr00           22199       7197         2
#> 216    McPhPe00           12822        823        11
#> 217    QueePa00           21982       6807         2
#> 218    HousJu00           13036        878        11
#> 219    ByneJo00           12815        821        11
#> 220    FergJa02           20755       5879         3
#> 221    BowsTy00           18930       4084         5
#> 222    HarrMa06           21996       6867         2
#> 223    FortL.00           13892       1078        10
#> 224    BoarCh00           20245       5753         4
#> 225        <NA>           21421       6594         3
#> 226    ZeitKe00           13882       1074        10
#> 227    MekaPa00           21206       6306         3
#> 228        <NA>           20502       5551         4
#> 229    BozeBr00           20008       5298         4
#> 230    VillAl00           15980       1805         8
#> 231    JameJa01           16015       1822         8
#> 232    KochSa20             430         13        16
#> 233        <NA>           19211       4924         1
#> 234    JohnJo05            6489        260        14
#> 235    HuntTy01           21810       7083         2
#> 236    JackLa00           19781       4881         4
#> 237        <NA>           19584       4683         1
#> 238    FreeDe00           16524       2168         8
#> 239        <NA>           20906       6108         2
#> 240    WillTy01           22126       7098         2
#> 241    EdwaGu00           20239       5248         4
#> 242    DobbJK00           21674       6806         2
#> 243    HillJu00           20802       5995         3
#> 244        <NA>              NA       8058         1
#> 245    MurrLa00           15071       1476         9
#> 246    StanRo00           17921       3162         6
#> 247    JoneJa09           20137       5202         4
#> 248    SharDa02           19022       4176         5
#> 249    AndrMa00           19803       5012         4
#> 250        <NA>              NA       7972         1
#> 251    OlivJo00           20899       5973         3
#> 252    TomlEr01           17223       2755         7
#> 253    BoylNi00           16931       2474         7
#> 254        <NA>           19662       4744         1
#> 255    BoykMi00           21037       5965         3
#> 256    WatkSa00           16003       1817         8
#> 257    ProcJa00           21723       6957         2
#> 258    BrowMa04           21045       5848         3
#> 259        <NA>           22193       7191         2
#> 260    WallTy00              NA       7595         1
#> 261        <NA>           21722       6939         2
#> 262    BateRa00              NA       7571         1
#> 263    DuveDe00           21721       6847         2
#> 264    MorsMi00           16810       2354         7
#> 265    WhitTr01           18918       4072         5
#> 266    HarrTi01           21137       6286         3
#> 267    JackDa02           22060       6969         2
#> 268        <NA>              NA       7974         1
#> 269    LewiCa00           21216       6314         3
#> 270    WallLe00           20102       5153         4
#> 271    NealSi00           19963       5098         4
#> 272        <NA>              NA       7976         1
#> 273    JohnTa01           19928       5341         4
#> 274    HamlDa00              NA       7787         1
#> 275    JohnJa11           20834       5930         3
#> 276    HydeMi00           15136       1525         9
#> 277    PoyeJo00           14860       1343         9
#> 278        <NA>           22211       7208         2
#> 279    BashCa00              NA       7646         1
#> 280    HughJe99           11132        550        12
#> 281    RousGr00              NA       7627         1
#> 282    EpenAJ00           21881       6802         2
#> 283    LoveMi00           20253       5623         4
#> 284    AddiMa00           13181        922        11
#> 285        <NA>           19214       4357         5
#> 286    ObadEf00           17264       2796         7
#> 287    LotuSt00           15188       1548         9
#> 288    AnkoEl00           19493       4604         5
#> 289    PhilHa00           19900       5049         4
#> 290    BryaBr00           18598       3785         6
#> 291    ButlVe00           17944       3183         6
#> 292    ZimmJu00           18237       3473         6
#> 293    OlivEd00           20898       5841         3
#> 294    GillRe00           22206       7204         2
#> 295    BassTy00           22108       7042         2
#> 296    EdmuTr01           19836       4968         4
#> 297    SmitAn04           20010       5340         4
#> 298    GileJo01           20772       6105         3
#> 299    DodsTy01           21218       6315         3
#> 300    KleiAJ00           15186       1547         9
#> 301    MataTy00           18162       3401         6
#> 302    MilaMa00           19037       4191         5
#> 303    FergRe00           18355       3576         6
#> 304    FeliJo00           16889       2433         7
#> 305    BoetIk00           20252       5678         4
#> 306    FordCo00           20760       5856         3
#> 307        <NA>              NA       7883         1
#> 308    WillDa06           16863       2407         7
#> 309    BateRy02           21027       6000         3
#> 310        <NA>           22179       7177         2
#> 311    DawkDi00           18948       4102         5
#> 312    BrowSp00              NA       7691         1
#> 313        <NA>              NA       7829         1
#> 314    HaacMa00           19249       4390         5
#> 315    TrubMi00           18811       3976         5
#> 316    AlleJo02           19801       4984         4
#> 317    MossZa00           21784       6845         2
#> 318    BreiMa00           19319       4455         5
#> 319    JoneTa00           13063        886        11
#> 320    SingDe00           20941       6130         3
#> 321    HartBo00           16985       2525         7
#> 322    KnoxDa00           20850       5906         3
#> 323        <NA>              NA       7536         1
#> 324    SweeTo00           20957       6137         3
#> 325    McKeIs00           19043       4197         5
#> 326    KumeJa00           17289       2821         7
#> 327    DiggSt00           16906       2449         7
#> 328        <NA>              NA       7556         1
#> 329    GentTa00           19431       4551         5
#> 330    BeasCo00           14141       1144        10
#> 331    SandEm00           11063        538        12
#> 332    DaviGa01           21735       6943         2
#> 333        <NA>           21760       6920         2
#> 334    ParaMa00           16281       2006         8
#> 335    TeckSa00           22447       7472         2
#> 336    HornJa00              NA       7642         1
#> 337    JackDo02           19870       5051         4
#> 338    MelvRa00           15359       1633         9
#> 339    GilmSt00           13761       1043        10
#> 340    TaylKe03              NA       7824         1
#> 341    HarpMa00           22305       7312         2
#> 342    HendCJ00           22052       6791         2
#> 343    PridTr00           22055       6856         2
#> 344    ThomSt00           22088       7137         2
#> 345    BouyA.00           15478       1674         9
#> 346    FranSa00           22226       7224         2
#> 347    RobiKe02           22133       7119         2
#> 348    BurrJu00           18040       3279         6
#> 349    HartMy00           22228       7226         2
#> 350    ChanSe00           20173       5178         4
#> 351        <NA>              NA       7621         0
#> 352    ChinJe00           21921       7016         2
#> 353    FoxxMo00           18555       3743         6
#> 354    JohnDa10           20839       6051         3
#> 355    JackJo02           20821       5923         3
#> 356    HaynMa01           19929       5342         4
#> 357        <NA>           22016       7254         2
#> 358    LarkAu00           20488       5495         4
#> 359    GrosYe00           21896       6812         2
#> 360    HerrFr00           20331       5660         4
#> 361    BurnBr00           21052       5862         3
#> 362        <NA>           20060       5320         4
#> 363    MoorDa01           15092       1494         9
#> 364    JoneDa04           16171       1932         8
#> 365        <NA>              NA       7772         1
#> 366    BrowDe05           22085       6784         2
#> 367    NixoDa00              NA       7832         1
#> 368    RoyxBr00           22135       7124         2
#> 369        <NA>              NA       7868         1
#> 370    RiccGi00           21732       7216         2
#> 371        <NA>              NA       7800         1
#> 372    MillJo04           16842       2386         7
#> 373    ElflPa00           18961       4115         5
#> 374        <NA>           20844       5869         3
#> 375        <NA>           22223       7221         2
#> 376    DaleDe00           21057       5964         3
#> 377        <NA>           22122       7094         2
#> 378    GonzZa00           19079       4233         5
#> 379        <NA>              NA       7933         1
#> 380    ReddHa00           18909       4063         5
#> 381    TuioJa00           20233       5505         4
#> 382    LuvuFr00           20411       5580         4
#> 383    MartKa01           22007       6890         2
#> 384    StanJu00           14037       1120        10
#> 385    ThomSh01           16786       2330         7
#> 386    CartJe00           19964       5099         4
#> 387    JansJ.00            9162        439        14
#> 388        <NA>              NA       7781         1
#> 389        <NA>           22444       7469         2
#> 390        <NA>           21268       6572         3
#> 391    EdwaLa01           18151       3390         6
#> 392    NewtCa00           13320        954        11
#> 393    WalkPh00           19191       4335         5
#> 394    DarnSa00           19812       4943         4
#> 395    HubbCh01              NA       7594         1
#> 396    AbduAm00           16815       2359         7
#> 397    BradDa00           21826       7316         2
#> 398    BrowSp01              NA       7867         1
#> 399    McCaCh01           18877       4034         5
#> 400    ScotTr01           20065       5423         4
#> 401    MotoTa00           18950       4104         5
#> 402    ErviCa00           16780       2324         7
#> 403    ChriBr00              NA       7697         1
#> 404    ThomIa00           19910       4995         4
#> 405    ThomCo03           19542       4647         5
#> 406    SullSt00           21865       6970         2
#> 407        <NA>           19360       4490         1
#> 408    TremTo00              NA       7694         1
#> 409        <NA>              NA       8068         1
#> 410    MarsTe00              NA       7565         1
#> 411    ZylsBr00           19779       4878         4
#> 412    SmitSh03              NA       7603         1
#> 413    AndeRo04           18187       3423         6
#> 414    EricAl01           18197       3433         6
#> 415    MoorD.00           19844       4983         4
#> 416        <NA>           21969       7091         2
#> 417    KirkKe00           20071       5134         4
#> 418    SneaWi00           16141       1911         8
#> 419        <NA>              NA       7618         1
#> 420    KeyeTh00           22149       7147         2
#> 421        <NA>           22049       6994         2
#> 422        <NA>           20262       5634         4
#> 423    ShelDu00           21122       6289         3
#> 424    JackEd01           19004       4158         5
#> 425    CrawXa00           21127       6285         3
#> 426    GipsTa00           13894       1079        10
#> 427    JohnJa13           22056       6839         2
#> 428    BurnAr00           17953       3192         6
#> 429    BushDe00           18045       3284         6
#> 430    ChriMa00           18084       3323         6
#> 431    HousDe00           18102       3341         6
#> 432    VildKi00           22079       6928         2
#> 433    TaboTe00           18933       4087         5
#> 434        <NA>              NA       7775         1
#> 435    BlacAn00           16861       2405         7
#> 436    EdwaMa01           16796       2340         7
#> 437    HuntMa00           14922       1392         9
#> 438    NichBi00           19930       5302         4
#> 439    GoldEd00           16800       2344         7
#> 440    TongKh00              NA       7756         1
#> 441    HickAk00           14358       1186        10
#> 442    AlufAu00           22273       7276         2
#> 443        <NA>           22232       7231         2
#> 444    SantCa01           16301       2020         8
#> 445        <NA>           22161       7160         2
#> 446    OgleAl00           15220       1572         9
#> 447    MarsCa00           16688       2275         8
#> 448    SmitRo07           19827       4960         4
#> 449    GipsTr00           21890       7120         2
#> 450    IyieJo00           19931       5303         4
#> 451    JohnCa04              NA       7846         1
#> 452    DawkNo00           21341       6666         3
#> 453    TrevDa00           14057       1127        10
#> 454        <NA>              NA       7849         1
#> 455        <NA>              NA       7844         1
#> 456    MackKh00           16323       2036         8
#> 457    AttaJe00           16334       2042         8
#> 458    QuinRo00           13393        967        11
#> 459    JoneCh05           16434       2110         8
#> 460    IrviBr00           14583       1242        10
#> 461    BrinBe00           14590       1245        10
#> 462    ScalPa00           15734       1745        11
#> 463    DaniJa01           19855       4991         4
#> 464    EiseDi00           22230       7229         2
#> 465    BoroLa00              NA       7838         1
#> 466    IfedGe00           17954       3193         6
#> 467    WhitCo03           17987       3226         6
#> 468        <NA>           22143       7140         2
#> 469    WilkEl00           19479       4592         5
#> 470    PeteJa21            8920        412        18
#> 471        <NA>              NA       8073         1
#> 472    BarsAl01           21024       6044         3
#> 473    MustSa01           20891       6094         3
#> 474        <NA>              NA       7663         1
#> 475    WinsRy00           20607       5639         4
#> 476    ODonPa00           16438       2113         8
#> 477    DaltAn00           12841        829        11
#> 478    FoleNi00           13723       1029        10
#> 479        <NA>              NA       8103         1
#> 480    FielJu00              NA       7591         1
#> 481    NallRy00           20106       5163         4
#> 482    HerbKh00              NA       7608         1
#> 483    WillDa05           16031       1833         8
#> 484    CoheTa00           19003       4157         5
#> 485    MontDa01           20882       5892         3
#> 486        <NA>           19432       4930         1
#> 487    HoltJ.01           18498       3695         6
#> 488    JameJe00           16920       2463         7
#> 489    KmetCo00           21772       6826         2
#> 490    HorsJe00           20812       6075         3
#> 491    GrahJi00           11488        616        12
#> 492        <NA>           20606       5638         1
#> 493    GoodMa00           14865       1346         9
#> 494    ByrdDa00           17141       2673         7
#> 495    CoulIs00           21967       7085         2
#> 496    GranJa00           18103       3342         6
#> 497    MoonDa00           21961       7090         2
#> 498        <NA>           21464       6465         3
#> 499    WebsNs00           21295       6387         3
#> 500        <NA>              NA       7586         1
#> 501    RobiAl02           16263       1992         8
#> 502    HopkTr01           16113       1893         8
#> 503    GailLa00           20763       6058         3
#> 504        <NA>              NA       7803         1
#> 505    WaynTr00           16772       2316         7
#> 506    AwuzCh00           18953       4107         5
#> 507    PhilDa02           19968       5079         4
#> 508    HiltMi01           18316       3546         6
#> 509    BranJo00           22323       7331         2
#> 510    FlowTr01           19951       5379         4
#> 511    DaviJa06           20157       5222         4
#> 512    ApplEl00           17950       3189         6
#> 513        <NA>           15589       1703        10
#> 514    HargVe00           17955       3194         6
#> 515    WilsBr01           19076       4230         5
#> 516    BellVo00           17991       3230         6
#> 517    AlleRi00           16520       2167         8
#> 518    HendTr01           20116       5642         4
#> 519    BateJe00           19873       5017         4
#> 520        <NA>              NA       7678         1
#> 521    HendTr00           18981       4135         5
#> 522    HubbSa00           19871       5015         4
#> 523    SpenNo00           17956       3195         6
#> 524    KerrZa00           16226       1965         8
#> 525    RayxWy01           20921       5966         3
#> 526        <NA>              NA       7769         1
#> 527    KareKh00           21876       6864         2
#> 528    SampCa00              NA       7727         1
#> 529    TupoJo00           19228       4371         5
#> 530    HillB.00           19885       5020         4
#> 531    ReadD.00           18083       3322         6
#> 532    DaniMi00           14280       1174        10
#> 533    ShelTy00              NA       7718         1
#> 534    CostDo00           22285       7289         2
#> 535    SquaDa00           14851       1334         9
#> 536    OgunLa00           18952       4106         5
#> 537    SpaiQu00           17486       2982         7
#> 538    AdenHa00           22015       6987         2
#> 539    CarmJa00              NA       7656         1
#> 540        <NA>              NA       7705         1
#> 541    SuthKe00           21222       6567         3
#> 542    Sua-Xa00           16212       1958         8
#> 543    McPhEv00              NA       7839         1
#> 544    FryxEl01           21105       6208         3
#> 545    DaviAk01           21999       6860         2
#> 546    PratGe00           20915       5894         3
#> 547    BailMa01           21911       6891         2
#> 548    JohnCl00           21980       7144         2
#> 549    CaliAu00           19293       4811         5
#> 550    JoneKe03           22449       7474         2
#> 551    EvanJo01           19074       4228         5
#> 552    BachJo01           21913       7014         2
#> 553    WilsLo00           22003       6880         2
#> 554    HarrCl20           12330        738        15
#> 555    HolbCo00           19116       4270         5
#> 556        <NA>              NA       7984         1
#> 557    HubeKe20            8433        353        13
#> 558        <NA>           21046       6111         3
#> 559    BurrJo01           21693       6770         2
#> 560    AlleBr00           18118       3357         6
#> 561        <NA>              NA       7560         1
#> 562    WillTr06           20990       6144         3
#> 563    PeriSa00           18993       4147         5
#> 564    HolyEl00           20809       5919         3
#> 565    MixoJo00           18858       4018         5
#> 566    EvanCh02              NA       7794         1
#> 567    PrinIs00           20917       5956         3
#> 568        <NA>           20987       6122         3
#> 569    ReifRi00           14222       1159        10
#> 570    JohnFr01           20831       6024         3
#> 571    SchrMa00           19075       4229         5
#> 572        <NA>           21955       6919         2
#> 573    UzomC.00           16917       2460         7
#> 574    SampDr00           20931       6001         3
#> 575    WilcMi01           21800       6894         2
#> 576    TaylTr02           19064       4218         5
#> 577    MorgSt02           20886       6069         3
#> 578    TateAu00           20057       5130         4
#> 579        <NA>           22238       7237         2
#> 580    HiggTe00           21690       6801         2
#> 581    ChasJa00              NA       7564         1
#> 582    BoydTy00           17986       3225         6
#> 583    ThomMi04           18445       3652         6
#> 584    IrwiTr00           21263       6598         3
#> 585    TretJC00           15140       1529         9
#> 586    HarrNi01           21948       6907         2
#> 587    NewsGr00              NA       7630         1
#> 588    WillGr00           20985       6123         3
#> 589    HillTr01           17294       2826         7
#> 590    AlleBr01           19061       4215         5
#> 591    MillHe01           21521       6640         3
#> 592    WardDe02           19830       4964         4
#> 593    GreeAJ00           22046       6876         2
#> 594    DelpGr00           21918       6799         2
#> 595    JohnJo10           18979       4133         5
#> 596    MeadNa00           21333       6354         3
#> 597    ColbAd00           19123       4277         5
#> 598    HarrRo02           19904       5025         4
#> 599    ThomTe00           19027       4181         5
#> 600    LeCoRi00              NA       7822         1
#> 601    StewM.00           19893       5055         4
#> 602    OdenIf00           19102       4256         5
#> 603    GustPo01           20780       5996         3
#> 604    ClowJa00           16194       1947         8
#> 605        <NA>           21874       6854         2
#> 606    GarrMy00           18807       3973         5
#> 607    McKiTa00           18915       4069         5
#> 608    McDoMa00           18941       4095         5
#> 609    ElliJo02           22059       6841         2
#> 610    DayxSh00           18026       3265         6
#> 611    JackMa02           14048       1124        10
#> 612    TogiTo00              NA       7711         1
#> 613    StanJo02           20581       5569         4
#> 614    JanoAn00           18093       3332         6
#> 615    FrohHj00           20761       6084         3
#> 616    TellWy00           19962       5097         4
#> 617        <NA>              NA       7869         1
#> 618    McLaCh00           21542       6650         3
#> 619        <NA>           21093       6192         3
#> 620    FielTo00              NA       7836         1
#> 621    WilsMa03           20994       6131         3
#> 622    SmitMa02           13480        997        11
#> 623    LeexEl00           19101       4255         5
#> 624    MeanMo00           20059       5528         4
#> 625    PhilJa01           21979       7006         2
#> 626    WalkAn01           19049       4203         5
#> 627    HarvWi00           21511       6498         3
#> 628    OwusJe00              NA       7651         1
#> 629    TakiSi00           21108       6211         3
#> 630    HughCh01           16760       2305        10
#> 631    BitoJo00           16125       1900         8
#> 632    HancBl00           21217       6566         3
#> 633    DunnMi01           19672       4753         5
#> 634    ForbDr00           21113       6224         3
#> 635    NkanEl00           20378       5667         4
#> 636        <NA>              NA       7728         1
#> 637    WillJe04           22024       6787         2
#> 638    ConkJa00           17936       3175         6
#> 639    CharJo01           22093       6936         2
#> 640    ColqDu20            8243        330        17
#> 641    KeenCa00           15694       1737        10
#> 642    MayfBa00           19790       4892         4
#> 643    MullNi00           19330       4464         5
#> 644    FeltDe00              NA       7609         1
#> 645    KellJo00           19957       5076         4
#> 646    WillDe07           20984       6153         3
#> 647    PierAr00           21848       7227         2
#> 648        <NA>              NA       8027         1
#> 649    ChubNi00           19798       4988         4
#> 650    JohnDE04           21593       6694         3
#> 651        <NA>           21789       7048         2
#> 652    HuntKa00           18944       4098         5
#> 653    HubbCh00           14959       1407         9
#> 654    TaylAl02           22019       7028         2
#> 655        <NA>              NA       8038         1
#> 656    BryaHa00           21783       6850         2
#> 657    HoopAu00           17963       3202         6
#> 658    CarlSt00           21278       6451         3
#> 659        <NA>              NA       7854         1
#> 660    NjokDa00           18876       4033         5
#> 661    SwitRy00           19008       4162         5
#> 662    LandJa00           16020       1825         8
#> 663    PeopDo00           21754       6824         2
#> 664    HiggRa00           18089       3328         6
#> 665    SchwAn00              NA       7533         1
#> 666    BradJa01           22244       7244         2
#> 667    BiadTy00           21995       6835         2
#> 668        <NA>              NA       7861         1
#> 669    CanaMa00           18125       3364         6
#> 670    BrowKy00           21234       6328         3
#> 671    DiggTr00           22051       6809         2
#> 672    BrowAn02           18106       3345         6
#> 673    JoseKe02              NA       7658         1
#> 674    WrigNa00              NA       7687         1
#> 675    GoodC.00           17337       2869         8
#> 676    LewiJo01           18975       4129         5
#> 677        <NA>           10197       4915         1
#> 678    RobiRe00           22087       7114         2
#> 679    MukuIs00              NA       7776         1
#> 680    KazeDa00           19034       4188         5
#> 681    KearJa00           18160       3399         6
#> 682        <NA>              NA       7942         1
#> 683    ThomDa05           18001       3240         6
#> 684    WilsDo01           21123       6291         3
#> 685    HookMa00           18920       4074         5
#> 686    GolsCh00              NA       7693         1
#> 687    BashTa00           18958       4112         5
#> 688    LawrDe00           16366       2064         8
#> 689    WatkCa00           19012       4166         5
#> 690    GregRa00           16821       2365         7
#> 691    UrbaBr00           16100       1881         8
#> 692    ArmsDo00           19932       5330         4
#> 693    BohaQu00              NA       7801         1
#> 694    HillTr00           20803       5989         3
#> 695        <NA>              NA       7866         1
#> 696    OdigOs00              NA       7695         1
#> 697        <NA>              NA       8037         1
#> 698    GallNe00           22078       6825         2
#> 699    OlonSe01           21971       7055         2
#> 700    MartZa00           16369       2066         8
#> 701    FarnMa00              NA       7766         1
#> 702        <NA>           20871       5913         3
#> 703    WillCo00           19875       5039         4
#> 704        <NA>              NA       8042         1
#> 705    ZuerGr00           14697       1266        10
#> 706    VandLe00           19838       4980         4
#> 707    GiffLu00           21449       6612         3
#> 708    BernFr01           21915       7068         2
#> 709    ParsMi00              NA       7640         1
#> 710    BondDe00           18100       3339         6
#> 711    NealKe01           17942       3181         6
#> 712    CoxxJa00              NA       7724         1
#> 713    McQuJa00           13388        965        11
#> 714        <NA>           20818       5988         3
#> 715        <NA>              NA       7706         1
#> 716        <NA>           22392       7409         2
#> 717    NiswJa00              NA       7516         2
#> 718    AngeBr00           14017       1113        10
#> 719    RushCo00           19461       4574         5
#> 720    DiNuBe00           22146       7143         2
#> 721    PresDa01           18055       3294         6
#> 722    GrieWi00           20779       5903         3
#> 723    PollTo00           20912       5967         3
#> 724        <NA>              NA       7941         1
#> 725        <NA>              NA       7863         1
#> 726    DowdRi01           21952       7021         2
#> 727    ElliEz00           17923       3164         6
#> 728    SmitIt00           19924       5004         4
#> 729    ClemCo00           19548       4651         5
#> 730    CollAv00           19263       4404         5
#> 731    SmitTy00           13129        905        11
#> 732    CollLa01           17058       2591         7
#> 733    SteeTe01           22041       6899         2
#> 734    NsekTy00           14705       1267        10
#> 735        <NA>           21208       6308         3
#> 736    SpriJe00           19067       4221         5
#> 737    JarwBl00           19457       4571         5
#> 738    SchuDa00           19920       5001         4
#> 739    McKeSe01           21781       6964         2
#> 740    TurnMa00           20684       5781         4
#> 741    WilsCe01           20013       5113         4
#> 742    BrowNo00           19080       4234         5
#> 743    CoopAm00           16765       2309         7
#> 744    FehoSi00              NA       7812         1
#> 745    GallMi00           19867       5038         4
#> 746        <NA>              NA       7865         1
#> 747    LambCe00           21679       6786         2
#> 748        <NA>              NA       7860         1
#> 749        <NA>              NA       7862         1
#> 750    FostRo01           20250       5250         4
#> 751    CushLl00           21997       6903         2
#> 752    JoneBr04           17435       2956         7
#> 753    DarbRo00           16811       2355         7
#> 754    CallBr00           17328       2860         7
#> 755    FullKy00           16432       2108         8
#> 756    BassEs01           22086       6925         2
#> 757    OjemMi00           22080       6983         2
#> 758    HairNa00           19048       4202         5
#> 759    SurtPa01              NA       7641         1
#> 760    DawsDu00           19884       5028         4
#> 761    ClinHa00           16473       2135         8
#> 762    LockPJ00           21373       6419         3
#> 763        <NA>           22189       7187         2
#> 764    JackKa99           11105        544        12
#> 765    SimmJu00           18023       3262         6
#> 766    FordMi01           20281       5691         4
#> 767    SterCa00              NA       7837         1
#> 768        <NA>              NA       7826         1
#> 769        <NA>              NA       7519         1
#> 770    JoneDr00           20842       5865         3
#> 771    HarrSh00           16319       2033         8
#> 772        <NA>              NA       7754         1
#> 773        <NA>           21705       6760         2
#> 774    WillDe04           17295       2827         7
#> 775    HarrJo05           21466       6467         3
#> 776    StepSh00           16515       2163         8
#> 777        <NA>           17327       2859         7
#> 778    SpenAk00           15204       1562         9
#> 779    AgimMc00           22082       7111         2
#> 780    BeckAn01           21227       6323         3
#> 781    MutiNe00           22032       6924         2
#> 782    SchlAu00           20482       5439         4
#> 783    RisnDa00           20926       5867         3
#> 784    GlasGr00           18020       3259         6
#> 785        <NA>              NA       7879         1
#> 786    McMaBr01           14996       1433         9
#> 787    YounKe03           19926       5300         4
#> 788    BrowBa01              NA       7681         1
#> 789    KiseMi00           19986       5074         4
#> 790    ReedMa01           21366       6436         3
#> 791    StrnJu00           22000       6977         2
#> 792    WeatSt00           18143       3382         6
#> 793    PatrNa00           20907       6055         3
#> 794    MintAn00              NA       8024         1
#> 795    JeweJo00           19933       5334         4
#> 796    GrifJo01           22401       7421         2
#> 797    ChubBr00           19832       4967         4
#> 798        <NA>              NA       8059         1
#> 799        <NA>           20715       5822         4
#> 800    CoopJo02              NA       7765         1
#> 801    BobeJa00           21364       7077         2
#> 802    PurcMi00           15375       1640         9
#> 803        <NA>           21205       6565         3
#> 804        <NA>           22263       7265         2
#> 805        <NA>              NA       7699         1
#> 806        <NA>           19466       4579         0
#> 807        <NA>              NA       8022         1
#> 808    BailQu00           21406       6409         3
#> 809    BollGa00           18899       4053         5
#> 810    MartSa01           15125       1516         9
#> 811        <NA>           22218       7215         2
#> 812        <NA>           21816       6898         2
#> 813    BridTe00           16497       2152         8
#> 814    LockDr00           20859       5854         3
#> 815    RypiBr00           20929       6037         3
#> 816    CrocDa01           21240       6334         3
#> 817    KillAd00           21842       7093         2
#> 818    GordMe00           16776       2320         7
#> 819    WillJa10              NA       7588         1
#> 820    BoonMi00           20159       5209         4
#> 821        <NA>           21600       6698         3
#> 822    FlemCa00           16039       1836         8
#> 823    MassBo00           14483       1222        10
#> 824    AndeCa00           21228       6457         3
#> 825    SaubEr00           19035       4189         5
#> 826        <NA>              NA       8018         1
#> 827    FantNo00           20753       5857         3
#> 828    OkwuAl00           21794       6843         2
#> 829    WilsCa00           20993       6142         3
#> 830    SuttCo00           19800       5045         4
#> 831    JeudJe00           21692       6783         2
#> 832    FulgTr00           20762       6059         3
#> 833    HamiDa01           19916       4998         4
#> 834    PatrTi00           19207       4351         5
#> 835    HintKe00           22213       7210         2
#> 836    ClevTy00           21737       7032         2
#> 837    HamlKJ00           21759       6805         2
#> 838        <NA>              NA       7534         1
#> 839    SpenDi00           20722       5828         8
#> 840    BrowEv00           20554       5610         4
#> 841    RagnFr00           19845       4987         4
#> 842        <NA>              NA       8014         1
#> 843    OruwAm00           20903       5888         3
#> 844    OkudJe00           22044       6785         2
#> 845    MotlPa00           22427       7449         2
#> 846    SmitSa02           20947       6138         3
#> 847    ParkAJ00              NA       7892         1
#> 848    MeliIf00              NA       7680         1
#> 849        <NA>              NA       8084         1
#> 850    JacoJe00              NA       7889         1
#> 851    PricBo00           22258       7259         2
#> 852    HughJu00           22335       7347         2
#> 853        <NA>           21930       6902         2
#> 854        <NA>              NA       7887         0
#> 855    WalkTr01           19876       5064         4
#> 856    HarrWi02           20791       5920         3
#> 857    MoorCJ01           21647       6724         3
#> 858    MarlDe00           17147       2679         7
#> 859    BreeBr00              NA       7784         1
#> 860    HeatJo00           18210       3446         6
#> 861    BrocMi00           14397       1197        10
#> 862    BankEr00           22329       7341         2
#> 863    OnwuLe00              NA       7661         1
#> 864    HectBr00           20541       5613         4
#> 865    WillNi01           14974       1414         9
#> 866    CornJa01           22147       7145         2
#> 867    CabiJa00           20074       5565         4
#> 868    JackJo03           21944       6952         2
#> 869    VaitHa00           18081       3320         6
#> 870        <NA>           22110       7054         1
#> 871    StenLo00           22026       6884         2
#> 872        <NA>              NA       7922         1
#> 873    SeibAu00           21114       6219         3
#> 874    RosaAl00           18645       3827         6
#> 875    OkwaJu00           21887       6851         2
#> 876    LemoJe00           22316       7324         2
#> 877    PittAn01           21543       6651         3
#> 878        <NA>           21478       6430         3
#> 879    BarnDe02              NA       7726         1
#> 880    ReevJa00           19009       4163         5
#> 881        <NA>              NA       7888         1
#> 882    DionSh00           20003       5367         4
#> 883    HarrCh03           18921       4075         5
#> 884    WoodJo02           20664       5757         4
#> 885    BryaAu00           21048       5942         3
#> 886    OkwaRo01           18268       3502         6
#> 887    AnzaAl00           18964       4118         5
#> 888    FlowTr00           16862       2406         7
#> 889    BerrRa01           22436       7459         2
#> 890    DalySc01           19826       4959         4
#> 891    McNeAl00              NA       7679         1
#> 892    PeniJo00           21883       7128         2
#> 893    FoxxJa01           21376       6523         3
#> 894    BoylTi00           20283       5257         4
#> 895        <NA>           21809       7013         2
#> 896    BlouDa00           21277       6450         3
#> 897    GoffJa00           17922       3163         6
#> 898    WarrMi01           21793       6992         2
#> 899    SwifDA00           21684       6790         2
#> 900    WillJa06           18995       4149         5
#> 901    ReynCr00           21564       6659         3
#> 902    JeffJe00              NA       7599         1
#> 903    IgweGo00           20191       5220         4
#> 904    SkipDa00           19624       4716         5
#> 905    SewePe00              NA       7643         1
#> 906    HoldWi00           19031       4185         5
#> 907    NelsMa00           21411       6633         3
#> 908    DeckTa00           17946       3185         6
#> 909    ThomJo05           20020       5117         4
#> 910        <NA>              NA       7891         1
#> 911        <NA>           21676       6834         2
#> 912    BryaHu02           21683       6846         2
#> 913        <NA>              NA       8041         1
#> 914    SokoMa00           21158       6233         3
#> 915    HockTJ00           20805       5844         3
#> 916        <NA>              NA       7890         1
#> 917    KennTo01           21556       6588         3
#> 918    StxxAm00              NA       7547         1
#> 919    HodgKh00           20679       5773         4
#> 920    CephQu00           21729       6895         2
#> 921    BensTr00           21368       6395         3
#> 922    ReynJo00           19017       4171         5
#> 923    RaymKa00           18422       3634         6
#> 924        <NA>           21942       7132         2
#> 925    SullCh00           20178       5181         4
#> 926    StokEr00              NA       7628         1
#> 927    YiadIs00           19901       5048         4
#> 928    KingKe01           18925       4079         5
#> 929    DougRa00           18982       4136         5
#> 930        <NA>              NA       7813         1
#> 931        <NA>              NA       8031         1
#> 932    AlexJa00           19839       4979         4
#> 933        <NA>           21418       6619         3
#> 934        <NA>              NA       7520         2
#> 935    SavaDa00           21107       6210         3
#> 936    AmosAd00           16902       2445         7
#> 937    BlacHe00           22269       7271         2
#> 938    ScotVe00           22148       7146         2
#> 939        <NA>              NA       7825         1
#> 940    LowrDe00           18056       3295         6
#> 941    ClarKe01           17947       3186         6
#> 942    AndeAb00           20450       5636         4
#> 943        <NA>           19709       4913         1
#> 944    SlatTe00              NA       7818         1
#> 945        <NA>              NA       7880         1
#> 946    LancTy00           20288       5483         4
#> 947    BradBe00           19379       4507         5
#> 948    JenkEl00           20828       5877         3
#> 949    PatrLu00           18710       3888         6
#> 950    RunyJo00           22040       6980         2
#> 951        <NA>           22307       7314         2
#> 952    CrosMa20            1694         59        15
#> 953        <NA>           22115       7071         2
#> 954    SmitPr00           16799       2343         7
#> 955    GaryRa00           20767       5839         3
#> 956        <NA>           22187       7185         2
#> 957    RiveCh01           21908       7019         2
#> 958    KalaPe00           20021       5325         4
#> 959    GarvJo00           21906       6965         2
#> 960    BurkOr00           19902       5031         4
#> 961    SummTy00           21125       6294         3
#> 962    MercWh00           13977       1103        10
#> 963    SmitZa00           16883       2427         7
#> 964    CampDe00           18037       3276         6
#> 965    GaleTi01           21891       6981         2
#> 966    BarnKr00           22266       7268         2
#> 967    McDuIs00              NA       7782         1
#> 968    RamsRa00           21417       6517         3
#> 969        <NA>           21904       6962         2
#> 970        <NA>           22013       7263         2
#> 971        <NA>              NA       7759         1
#> 972        <NA>              NA       7785         1
#> 973    NewmRo00              NA       7702         1
#> 974    TurnBi00           16029       1832         8
#> 975    MyerJo00              NA       7645         1
#> 976    BakhDa00           15131       1521         9
#> 977    BojoCo00           20512       5721         4
#> 978    RodgAa00            2593         96        17
#> 979    LoveJo03           21841       6804         2
#> 980        <NA>           20089       5142         4
#> 981        <NA>           20037       5120         4
#> 982        <NA>           21823       6963         2
#> 983    JoneAa00           19045       4199         5
#> 984    DillAJ00           21802       6828         2
#> 985    WhytKe00           20982       6175         3
#> 986    HillKy00              NA       7572         1
#> 987    KellDe00           13730       1031        10
#> 988        <NA>           20895       6008         3
#> 989    LewiMa00            3061        111        16
#> 990    DafnDo00           22477       7502         2
#> 991        <NA>           20865       5975         3
#> 992    DeguJo00           21798       7050         2
#> 993    NautIs00           20893       5957         3
#> 994    DaviTy02           22138       7131         2
#> 995    KaufBr01           18000       3239         6
#> 996    TonyRo00           19491       4602         5
#> 997    CobbRa00           13227        928        11
#> 998    AdamDa01           16470       2133         8
#> 999        <NA>           21526       6540         3
#> 1000   TaylMa01           21169       6239         3
#> 1001       <NA>              NA       7521         1
#> 1002   St.BEq00           20398       5323         4
#> 1003   RodgAm00              NA       7540         1
#> 1004   MoorDa03           19120       4274         5
#> 1005   LazaAl00           20145       5185         4
#> 1006   ValdMa00           19976       5086         4
#> 1007   GaffRi00           20194       5197         4
#> 1008   WinfJu00           21115       6223         3
#> 1009   MoreJi00           20885       6070         3
#> 1010   MurrEr00           18029       3268         6
#> 1011   KingDe01           19062       4216         5
#> 1012   OwenJo01           20219       5520         4
#> 1013   SmitTr04           20028       5328         4
#> 1014   GreeT.00           17988       3227         6
#> 1015   MitcTe00           16370       2067         8
#> 1016   ReidJu00           19866       5036         4
#> 1017   ArnoGr01           22065       7051         2
#> 1018   JohnLo01           20840       5883         3
#> 1019   BrooTe00           16078       1864         8
#> 1020   MoorA.00           20513       5662         4
#> 1021   ThomTa01           20217       5519         4
#> 1022   RiveDe00           18963       4117         5
#> 1023   MartJa02           19999       5378         4
#> 1024   JenkJo01           18012       3251         6
#> 1025   HarrDe06           20189       5218         4
#> 1026   WalkDe03           18932       4086         5
#> 1027   GreeJo04           21879       6900         2
#> 1028   SmitCh03           16265       1994         8
#> 1029   KekeKi00           20848       6103         3
#> 1030   LopeRo00              NA       7799         1
#> 1031   BlacRo00           22054       6795         2
#> 1032       <NA>              NA       7876         1
#> 1033   TaylVi00           19099       4253         5
#> 1034   JohnJa09           19019       4173         5
#> 1035   CollMa00           17997       3236         6
#> 1036       <NA>              NA       7971         1
#> 1037   FairKa01           18215       3451         6
#> 1038   WallGa00              NA       7821         1
#> 1039       <NA>           19225       4368         5
#> 1040   HewiNe00           17145       2677         7
#> 1041   GrugKa00           18124       3363         6
#> 1042   CartRo02           22253       7253         2
#> 1043   WilsEr00           19273       4413         5
#> 1044       <NA>           17362       2894         3
#> 1045       <NA>           20955       6656         3
#> 1046   PierKe00           16690       2277         8
#> 1047   DaviTa00           20338       5646         4
#> 1048   KirkCh00           16133       1905         8
#> 1049       <NA>              NA       8071         0
#> 1050   WeekJo00           11120        548        12
#> 1051   HowaTy00           20813       5901         3
#> 1052   TaylLa01           15583       1702         9
#> 1053   ChriGe01           19894       5027         4
#> 1054   BritJu00           16681       2270         8
#> 1055       <NA>              NA       7774         1
#> 1056   SchaMa01           20936       6150         3
#> 1057   TunsLa00           17918       3159         6
#> 1058       <NA>              NA       8015         1
#> 1059   ToneCo00           18087       3326         6
#> 1060   CannMa00           12764        808        11
#> 1061   McCrJu00           16173       1934         8
#> 1062   EldrJa00           19164       4313         5
#> 1063       <NA>           22359       7371         2
#> 1064   JohnCa02           19552       4654         5
#> 1065   MillDa02              NA       7585         1
#> 1066   WatsDe00           18857       4017         5
#> 1067   TaylTy00           12831        827        11
#> 1068   DrisJe00           18123       3362         6
#> 1069       <NA>           21792       7038         2
#> 1070   BurkRe00           14917       1387         9
#> 1071   JohnDa08           16847       2391         7
#> 1072   FreeRo00           19823       5046         4
#> 1073   PhilSc01           21856       7005         2
#> 1074   HeckCh00           21947       7115         2
#> 1075   AuclAn00           19335       4468         5
#> 1076   AkinJo00           19903       5032         4
#> 1077   JordBr00              NA       7568         1
#> 1078   BrowPh01           19304       4443         5
#> 1079       <NA>           22475       7499         2
#> 1080   MoorCh00           18030       3269         6
#> 1081   AmenDa00            9906        491        14
#> 1082       <NA>           20376       5293         4
#> 1083   CollNi00              NA       7569         1
#> 1084   DorsPh00           16790       2334         7
#> 1085   ConlCh00           16837       2381         7
#> 1086   CookBr00           16568       2197         8
#> 1087   DaviDa03           21311       6380         3
#> 1088       <NA>              NA       7789         1
#> 1089       <NA>              NA       7573         1
#> 1090   KellRy00           17948       3187         6
#> 1091   CarrTr00           16312       2029         8
#> 1092   MyreAl00           21201       6266         3
#> 1093   Ya-SRo00           21001       6128         3
#> 1094   NelsNi00           19948       5382         4
#> 1095       <NA>              NA       7755         1
#> 1096   RhodXa00           15151       1536         9
#> 1097   ChesAn00           21530       6645         3
#> 1098   PoolBr01           18469       3669         6
#> 1099   RodgIs00           22139       7133         2
#> 1100   MoorKe03           19287       4427         5
#> 1101   TellMa00           20961       6143         3
#> 1102   WillKh00           20991       6152         3
#> 1103   CampIb00           16876       2420         7
#> 1104   AddaJa00           15306       1620         9
#> 1105   BlacJu01           22109       7044         2
#> 1106   OdumGe00           20492       5445         4
#> 1107   MillRo03           18623       3808         6
#> 1108   RedmWi00           17998       3237         6
#> 1109   SendAn00           12554        770        12
#> 1110   SweaDJ00           14989       1429         9
#> 1111   PayeKw00              NA       7633         1
#> 1112   LewiTy00           19878       5057         4
#> 1113   TuraKe00           19879       5058         4
#> 1114   ClinKa00           22278       7281         2
#> 1115   RochIs00           19117       4271         5
#> 1116   MuhaAl00           19105       4259         5
#> 1117   OdeyDa00              NA       7649         1
#> 1118   BanoBe00           21022       5971         3
#> 1119       <NA>           22279       7283         2
#> 1120   McInR.00           19946       5311         4
#> 1121   WoodAn02           18244       3479         6
#> 1122   StalTa00           20169       5191         4
#> 1123   StewGr00           19014       4168         5
#> 1124   WindRo01           21871       6893         2
#> 1125   BuckDe00           17933       3172         6
#> 1126   GlowMa00           16895       2438         7
#> 1127       <NA>              NA       7758         1
#> 1128   PintDa00           22030       7118         2
#> 1129   ReedCh00           17743       3038         7
#> 1130   BlanRo03           22112       7062         2
#> 1131   BadgMi00           20144       5230         4
#> 1132       <NA>              NA       8056         1
#> 1133   JeffMa00           19872       5016         4
#> 1134   LeonDa00           19852       4990         4
#> 1135   AdamMa00           20023       5345         4
#> 1136   MoorSk00           20428       5450         4
#> 1137   OkerBo00           20897       5944         3
#> 1138   GlasJo00           22140       7134         2
#> 1139   SpeeEJ00           21117       6218         3
#> 1140   FranZa00           20024       5346         4
#> 1141   RhodLu00           18381       3598         6
#> 1142   NelsQu00           19831       4970         4
#> 1143   SmitBr06           19857       5060         4
#> 1144   TeviSa00           19118       4272         5
#> 1145   FishEr00           15046       1464         9
#> 1146   ColeSh00           18006       3245         6
#> 1147   SancRi00           19187       4331         5
#> 1148   EhliSa00              NA       7583         1
#> 1149       <NA>           21965       7081         2
#> 1150   HundBr00           16907       2450         7
#> 1151       <NA>           22261       7262         2
#> 1152   WentCa00           17920       3161         6
#> 1153       <NA>              NA       7551         1
#> 1154   HineNy00           19912       5347         4
#> 1155   TaylJo02           21682       6813         2
#> 1156   MackMa00           18998       4152         5
#> 1157   DaveJu00           19011       4165         5
#> 1158       <NA>           22277       7280         2
#> 1159   PryoMa00           20043       5363         4
#> 1160       <NA>              NA       8106         0
#> 1161   GranKy00              NA       7602         1
#> 1162       <NA>              NA       8107         1
#> 1163   DoylJa00           15602       1706         9
#> 1164   AlieMo00           18900       4054         5
#> 1165       <NA>           22113       7065         2
#> 1166       <NA>              NA       8094         1
#> 1167   GreeFa00           22458       7483         2
#> 1168   PatmDe00           21959       6985         2
#> 1169   CampPa00           21005       5880         3
#> 1170       <NA>           22276       7279         2
#> 1171       <NA>           21761       6879         2
#> 1172   CoutKe00           19937       5007         4
#> 1173   StraMi03              NA       7944         1
#> 1174   NelsJJ00           16919       2462         7
#> 1175       <NA>           19595       4937         1
#> 1176   DuliAs00           21349       6427         3
#> 1177   PascZa00           19172       4319         5
#> 1178   HiltT.00           14005       1110        10
#> 1179   PittMi01           21744       6819         2
#> 1180   GrifSh00           18986       4140         5
#> 1181   JacqMi00           22389       7405         2
#> 1182       <NA>              NA       7736         1
#> 1183   WatsBr01           21175       6244         3
#> 1184   LawsNe00           16457       2122         8
#> 1185   CampTy01              NA       7667         1
#> 1186   HernTr00           20460       5479         4
#> 1187   ThomDa07           21928       7053         2
#> 1188   FordRu00           19069       4223         5
#> 1189   WingAn01           21281       6416         3
#> 1190   CiscAn00              NA       7698         1
#> 1191   McDoBr01           15302       1617         9
#> 1192   ClayCh02           22141       7138         2
#> 1193   JenkRa00           19026       4180         5
#> 1194   LedbJe00           19086       4240         5
#> 1195   WardJi02           17978       3217         6
#> 1196   BryaTa00           19846       4975         4
#> 1197   GotsAd00           17993       3232         6
#> 1198       <NA>              NA       7719         1
#> 1199   AlleJo03           20737       5840         3
#> 1200   RobeRo00           18292       3526         6
#> 1201   SmooDa00           18959       4113         5
#> 1202   McCrLe01           15029       1453         9
#> 1203   WillRa03           21895       6933         2
#> 1204   BrowMa01           16793       2337         7
#> 1205   HamiDa02           21869       6972         2
#> 1206   TufeJa00              NA       7731         1
#> 1207       <NA>              NA       8082         1
#> 1208   WrigMa00           21203       6268         3
#> 1209   RussCh00           22006       7000         2
#> 1210   QuarSh00           21974       6997         2
#> 1211   AlleDa01           20736       5993         3
#> 1212   WilsDa02           16888       2432         7
#> 1213   AdamTy00           17081       2613         7
#> 1214       <NA>              NA       8009         1
#> 1215   ChaiKL00           21888       6800         2
#> 1216       <NA>              NA       7952         1
#> 1217   JoneJa11           22274       7277         2
#> 1218   JackMy00           17925       3166         6
#> 1219   MatiRo00           22291       7295         2
#> 1220   ShatTy00           16264       1993         8
#> 1221   BartBe00           22012       7060         2
#> 1222   CannA.00           16828       2372         7
#> 1223   NorwAn01           16560       2192         8
#> 1224   LindBr00           16259       1988         8
#> 1225   McDeKC01           20457       5476         4
#> 1226   RichWi01           19938       5313         4
#> 1227   WallTr01           22454       7479         2
#> 1228   RobiCa00           18910       4064         5
#> 1229   TaylJa02           20960       6121         3
#> 1230   CookLo00           20063       5314         4
#> 1231   ScotJK00           19977       5087         4
#> 1232   LutoJa00           21814       7084         2
#> 1233   LawrTr00              NA       7523         1
#> 1234   BeatC.00           18973       4127         5
#> 1235   ArmsRy00           20743       6007         3
#> 1236   CottNa00           22441       7466         2
#> 1237   HydeCa00           16668       2257         8
#> 1238       <NA>              NA       7543         1
#> 1239   RobiJa00           21970       6955         2
#> 1240   SargMe00              NA       8085         1
#> 1241   OgunDa00           19626       4718         5
#> 1242       <NA>              NA       7657         1
#> 1243       <NA>              NA       8062         1
#> 1244       <NA>           22231       7230         2
#> 1245   O'ShJa00           16933       2476         7
#> 1246   FarrLu00              NA       7842         1
#> 1247   ManhCh00           17762       3048         7
#> 1248   ArnoDa00           19659       4741         5
#> 1249   WarrKa00           20974       6164         3
#> 1250   HollJa03           19281       4421         5
#> 1251   MickJa01           18673       3852         6
#> 1252   AgneJa00           19044       4198         5
#> 1253   GodwTe00           20775       5977         3
#> 1254   JoneMa02           13870       1067        10
#> 1255       <NA>           22311       7319         2
#> 1256       <NA>           22283       7287         2
#> 1257   TreaLa00           17914       3155         6
#> 1258   AustTa00           15215       1567         9
#> 1259   ShenLa00           21697       6814         2
#> 1260   CharDJ00           19816       4951         4
#> 1261       <NA>              NA       8013         1
#> 1262   HughMi00           19847       4982         4
#> 1263   SneeLJ00           21934       7117         2
#> 1264   FentRa00           20754       6014         3
#> 1265   LammCh00           20050       5508         4
#> 1266   WardCh01           20204       5493         4
#> 1267   BakeDe00           21020       5852         3
#> 1268       <NA>              NA       8004         1
#> 1269   ThorJu00           20965       6145         3
#> 1270   WattAr00           19939       5329         4
#> 1271       <NA>              NA       8165         0
#> 1272   SoreDa01           16303       2022         8
#> 1273   AndeZa02              NA       8000         1
#> 1274       <NA>              NA       8003         1
#> 1275   MathTy00           15226       1576         9
#> 1276   JackJo01           19856       5029         4
#> 1277   OkafAl00           15228       1578         9
#> 1278   KainJo00              NA       7700         1
#> 1279   ClarFr01           16824       2368         7
#> 1280   WoodJo00           18142       3381         6
#> 1281   DannMi00           22095       6958         2
#> 1282       <NA>              NA       8001         1
#> 1283   EdwaAu00           22185       7183         2
#> 1284   SaunKh00           20934       6177         3
#> 1285   BillAn00           17968       3207         6
#> 1286   WharTe00           22295       7301         2
#> 1287   ReedJa02           17981       3220         6
#> 1288   BrouCo00           21130       6300         3
#> 1289   NnadDe00           19880       5035         4
#> 1290   JoneCh09           18331       3558         6
#> 1291   BurtMi00           16928       2471         7
#> 1292   WyliAn00           19596       4693         5
#> 1293   AlleNi00           21129       6292         3
#> 1294   ButkHa00           19073       4227         5
#> 1295   ODanDo00           19905       5033         4
#> 1296   CalhSh00           18005       3244         6
#> 1297   GayJWi00           21984       7023         2
#> 1298   IngrMe00           14128       1141        10
#> 1299   HitcAn00           16364       2062         8
#> 1300   NiemBe00           20498       5576         4
#> 1301   HarrDa07           21379       6551         3
#> 1302   BoltNi00              NA       7648         1
#> 1303   WincJa00           15917       1785         9
#> 1304       <NA>           20633       5737         4
#> 1305   LongKy00           15115       1509         9
#> 1306   HumpCr00              NA       7644         1
#> 1307   NianLu00           22018       6883         2
#> 1308   SmitTr05              NA       7777         1
#> 1309   BlytAu00           18164       3403         6
#> 1310   ThunJo00           18008       3247         6
#> 1311       <NA>           22034       7298         2
#> 1312   TownTo01           22300       7307         2
#> 1313   MahoPa00           18890       4046         5
#> 1314   HennCh01            2405         89        14
#> 1315       <NA>              NA       8002         1
#> 1316   McKiJe00           16510       2161         8
#> 1317   McGuEl00           19109       4263         5
#> 1318       <NA>           21634       6753         3
#> 1319   WillDa10           20500       5549         4
#> 1320   EdwaCl00           21769       6820         2
#> 1321   RemmMi00           15647       1722        10
#> 1322   JohnRo06           19042       4196         5
#> 1323   BrowOr00           19814       4948         4
#> 1324   WanoTe00           22020       6859         2
#> 1325       <NA>              NA       7733         1
#> 1326       <NA>              NA       7992         1
#> 1327   GrayNo00              NA       7828         1
#> 1328   KelcTr00           15048       1466         9
#> 1329   FortJo01           21383       6665         3
#> 1330       <NA>           22347       7359         2
#> 1331   BellBl00           16878       2422         7
#> 1332       <NA>              NA       8101         1
#> 1333   RobiDe01           18047       3286         6
#> 1334       <NA>              NA       7541         1
#> 1335   HardMe00           20788       5917         3
#> 1336   FounDa00           19981       5102         4
#> 1337       <NA>           21576       6677         1
#> 1338   DietGe00           19358       4489         5
#> 1339   GordJo02           14587       1244        10
#> 1340   PrinBy00           20150       5199         4
#> 1341   HillTy00           18082       3321         6
#> 1342   KempMa00           19361       4491         5
#> 1343   WatsJu01           19922       5374         4
#> 1344   LongDa02           20861       5914         3
#> 1345   DeayDo01           18577       3765         6
#> 1346   RamsJa00           17919       3160         6
#> 1347   WillDa09           20570       5526         4
#> 1348       <NA>           22336       7348         2
#> 1349   RochRo00              NA       7712         1
#> 1350       <NA>              NA       7914         0
#> 1351   ScotNi01           21131       6301         3
#> 1352   FullJo01           21937       6968         2
#> 1353   NeasSh00           18467       3667         6
#> 1354   RappTa00           20919       5882         3
#> 1355   HaleGr00           20339       5647         4
#> 1356   BrooAn00           21924       6917         2
#> 1357   GervJa00           21588       6687         3
#> 1358   HallTy01           22190       7188         2
#> 1359   CounBl00           18113       3352         6
#> 1360   BurgTe00           21922       7036         2
#> 1361   OrrxKa00           21581       6682         3
#> 1362   WillJo10           22332       7344         2
#> 1363       <NA>              NA       7817         1
#> 1364   GainGr00           20764       5981         3
#> 1365   JoseSe00           19985       5073         4
#> 1366   DonaAa00           16618       2227         8
#> 1367   RobiAS00           17979       3218         6
#> 1368   BrowBo04              NA       7722         1
#> 1369   HoecMi00           22330       7342         2
#> 1370   CopeMa01           21298       6390         3
#> 1371   WeddEr99            7243        290        15
#> 1372       <NA>           19530       4933         1
#> 1373   SantRy00           20282       5692         4
#> 1374   GayxMa00           20769       6083         3
#> 1375       <NA>              NA       7945         1
#> 1376   ReedTr01           21332       6353         3
#> 1377   JoneEr01              NA       7672         1
#> 1378   OkorOg00           19987       5075         4
#> 1379   FloyLe00           17935       3174         6
#> 1380   MillVo00           13022        871        11
#> 1381   HollJu00           20808       6076         3
#> 1382       <NA>           22334       7346         2
#> 1383       <NA>              NA       7857         1
#> 1384   LewiTe00           21903       6837         2
#> 1385   HowaTr00           20030       5306         4
#> 1386   OrzeMa00           21484       6461         3
#> 1387   TinkCa00           15454       1668         9
#> 1388   DembJa00           19984       5072         4
#> 1389       <NA>           20527       5429         4
#> 1390   NoteJo00           19895       5014         4
#> 1391   HaveRo00           16818       2362         7
#> 1392   BrewCh01           21330       6426         3
#> 1393   EdwaDa01           20747       5904         3
#> 1394       <NA>              NA       8016         1
#> 1395   CorbAu00           19851       4989         4
#> 1396   AnchTr00           21983       6944         2
#> 1397   WhitAn20            5099        202        16
#> 1398   ShelCo00           20533       5454         4
#> 1399   EvanBo00           20752       5948         3
#> 1400       <NA>              NA       7872         1
#> 1401   AlleBr02           19941       5304         4
#> 1402   WrigBr00           22292       7296         2
#> 1403   HekkJo00           14409       1202        10
#> 1404   WolfJo00           20703       5806         4
#> 1405   StafMa00            9038        421        13
#> 1406       <NA>           21819       7335         2
#> 1407   MichSo00           19828       4962         4
#> 1408   AkerCa00           21688       6938         2
#> 1409   HoweGr00           20318       5271         4
#> 1410   CalaRa00           21855       6988         2
#> 1411   HendDa00           20798       5916         3
#> 1412       <NA>              NA       7563         1
#> 1413   FunkJa00              NA       7771         1
#> 1414   HopkBr01           21678       6926         2
#> 1415   HarrJa03              NA       7703         1
#> 1416   HigbTy00           18032       3271         6
#> 1417       <NA>           21770       7378         2
#> 1418   BlanKe01           21032       6081         3
#> 1419   MundJo00           19165       4314         5
#> 1420   WoodRo02           14871       1352         9
#> 1421       <NA>              NA       7915         1
#> 1422       <NA>              NA       7757         1
#> 1423   BeckOd00           16389       2078         8
#> 1424       <NA>              NA       7550         1
#> 1425   JeffVa00           21739       6853         2
#> 1426       <NA>           22327       7339         2
#> 1427   KuppCo00           18882       4039         5
#> 1428   PoweBr00           20487       5695         4
#> 1429   AtweTu00              NA       7562         1
#> 1430   LinsCo00           16481       2141         8
#> 1431   HallKe01           21187       6254         3
#> 1432   CampTe00           20721       5827         3
#> 1433   SamuAs00              NA       7655         1
#> 1434   SmitRy00           18332       3559         6
#> 1435   DaviMi03           19560       4661         5
#> 1436   HarrDa05           19967       5078         4
#> 1437   HarrCh01           13018        869        11
#> 1438   AddeNa00           20733       5881         3
#> 1439       <NA>              NA       7939         1
#> 1440   GilmAl00           21939       7069         2
#> 1441   WebbMa01              NA       7763         1
#> 1442   MarsTr00           20418       5442         4
#> 1443   JameDe00           19837       4971         4
#> 1444   DaviJa08           21246       6339         3
#> 1445   GaziJo01           22317       7325         2
#> 1446   TillJe00           20967       6129         3
#> 1447   JoseLi99           11302        579        12
#> 1448   CoviCh00           16976       2517         7
#> 1449       <NA>              NA       7931         1
#> 1450   JoneJu03           19881       5063         4
#> 1451   ReidCa00           16463       2126         8
#> 1452   BrowAn05           19966       5077         4
#> 1453   NabeGa00           22310       7318         2
#> 1454   AbouOd00           14890       1368         9
#> 1455   FeilMa00           16198       1949         8
#> 1456   HuntRy00           20499       5577         4
#> 1457   HopkDu00           14867       1348         9
#> 1458   VizcTr00           20717       5823         3
#> 1459   TranDr00           20968       6141         3
#> 1460   RumpCh00              NA       7721         1
#> 1461   BosaJo00           17915       3156         6
#> 1462       <NA>              NA       7936         1
#> 1463   WhitKy00           19940       5348         4
#> 1464   MurrKe00           21985       6811         2
#> 1465       <NA>              NA       8075         1
#> 1466   NwosUc00           19859       5061         4
#> 1467   ChriCo00           22321       7329         2
#> 1468   EgbuEm00           20750       5978         3
#> 1469   NiemNi00              NA       7807         1
#> 1470   FackKy00           18016       3255         6
#> 1471   OverMa00           14010       1112        12
#> 1472   FehoBr01           22318       7326         2
#> 1473   QuesSc00           19983       5104         4
#> 1474   KeleSe00           14481       1220        10
#> 1475   JaimBr00              NA       7831         1
#> 1476   LongTy00           17118       2650         7
#> 1477   DaniCh00            9902        490        13
#> 1478   SticEa00           20953       6185         3
#> 1479   HerbJu00           21681       6797         2
#> 1480   KellJo01           21776       7045         2
#> 1481   EkelAu00           19562       4663         5
#> 1482   RounLa00              NA       7574         1
#> 1483   JackJu01           20064       5131         4
#> 1484   SlatRa00              NA       7639         1
#> 1485       <NA>              NA       7973         1
#> 1486   PipkTr00           21110       6213         3
#> 1487   NortSt00           19486       4598         5
#> 1488   BulaBr20           11385        596        12
#> 1489   SchoMi00           16284       2009         8
#> 1490       <NA>              NA       7938         1
#> 1491   McKiTr00              NA       7554         1
#> 1492   ParhDo00           20905       6074         2
#> 1493   CookJa02            8534        367        13
#> 1494   AndeSt01           18262       3496         6
#> 1495       <NA>           22235       7234         2
#> 1496       <NA>           21178       6247         3
#> 1497   AlleKe00           15076       1479         9
#> 1498   HillKJ00           21758       6866         2
#> 1499   PalmJo00              NA       7670         1
#> 1500       <NA>              NA       8076         1
#> 1501   ReedJo03           21718       6913         2
#> 1502   GuytJa01           21448       6421         3
#> 1503   WillMi07           18914       4068         5
#> 1504   RobeAn00           11565        627        12
#> 1505   JameAn01           20825       6004         3
#> 1506   MartNi00           17982       3221         6
#> 1507       <NA>              NA       7928         1
#> 1508   NixoKe00           21239       6333         3
#> 1509   HobbNa00              NA       7823         1
#> 1510   FacyBr00           20434       5416         4
#> 1511   RobeAm00           22089       6896         2
#> 1512   MullTr00           20887       5853         3
#> 1513   HaywCa00           14285       1175        10
#> 1514   TrufDe00           15183       1545         9
#> 1515       <NA>              NA       8047         0
#> 1516   TeamRo00           21190       6257         3
#> 1517   FrazKa00           18128       3367         6
#> 1518   MoehTr00              NA       7659         1
#> 1519   GillTy00              NA       7701         1
#> 1520       <NA>           20066       5424         4
#> 1521   LeavDa00           20642       5736         4
#> 1522       <NA>           21044       6030         3
#> 1523   AbraJo01           20731       5860         3
#> 1524   LeBlCr01           18178       3416         6
#> 1525   JameNa00           19992       5084         4
#> 1526   NassCa00           17995       3234         6
#> 1527   BuggIs00           21049       6033         3
#> 1528   FerrCl00           20757       5842         3
#> 1529       <NA>              NA       7676         1
#> 1530   NgakYa00           17999       3238         6
#> 1531   VickKe00           20346       5470         4
#> 1532   CrosMa00           21015       5991         3
#> 1533       <NA>           21128       6272         3
#> 1534   JeffQu00           18065       3304         6
#> 1535   PhilDa01           16952       2493         7
#> 1536   HankJo00           15090       1492         9
#> 1537   ThomSo00           18904       4058         5
#> 1538       <NA>           21124       6273         3
#> 1539   McCoGe99           11514        619        12
#> 1540       <NA>           20948       6188         3
#> 1541   IngoAl01           20819       6109         3
#> 1542   GoodDe01           17014       2554         7
#> 1543       <NA>           19313       4925         1
#> 1544   IncoRi20           11664        647        17
#> 1545   CottLe00           21012       6110         3
#> 1546   SimmJo00           19311       4450         5
#> 1547   SimpJo00           22031       6875         2
#> 1548   CarlDa00           19989       5095         4
#> 1549   MarcJu00           17307       2839         7
#> 1550   MorrNi00           19310       4449         5
#> 1551   OnwuPa00           18480       3680         6
#> 1552   KwiaNi00           18035       3274         6
#> 1553   LittCo01           18559       3747         6
#> 1554   WilbKy00           14167       1148        10
#> 1555   PerrDe00           16809       2353         7
#> 1556   DeabDi00              NA       7677         1
#> 1557   LeexMa01           19058       4212         5
#> 1558   WrigK.00           13484        998        11
#> 1559   SiegTr00           20249       5461         4
#> 1560       <NA>           21079       6417         3
#> 1561   PoutJe00           16827       2371         7
#> 1562       <NA>              NA       7873         1
#> 1563   ElueJe00           19036       4190         5
#> 1564   GrasHr00           16832       2376         7
#> 1565       <NA>           22471       7497         2
#> 1566   ColeAJ01           21516       6555         3
#> 1567   CarrDe02           16311       2028         8
#> 1568   PeteNa00           19029       4183         5
#> 1569   MariMa01           16763       2307         7
#> 1570   JacoJo01           20824       5850         3
#> 1571   DrakKe00           18003       3242         6
#> 1572   RichJa01           18690       3868         6
#> 1573       <NA>              NA       7993         1
#> 1574   BarbPe01           18375       3594         6
#> 1575   ParkBr01           19888       5065         4
#> 1576       <NA>           21026       6029         3
#> 1577   LeatAl00              NA       7636         1
#> 1578   MillKo00           19840       4986         4
#> 1579       <NA>           21719       7308         2
#> 1580   WallDa01           16964       2505         7
#> 1581   CarrDe00           15640       1718        10
#> 1582   MoreFo00           20884       5985         3
#> 1583   JohnTy03           20838       6063         3
#> 1584   WimsJa00           20011       5111         4
#> 1585       <NA>              NA       7989         1
#> 1586   JoneZa00           18926       4080         5
#> 1587   RenfHu00           20924       5955         3
#> 1588   JackDe00            3943        147        14
#> 1589   EdwaBr01           21736       6870         2
#> 1590       <NA>              NA       7996         1
#> 1591   PullSp00           18312       3543         6
#> 1592   TomxCa00           19377       4505         5
#> 1593   WiltJo01           19557       4658         5
#> 1594       <NA>              NA       7912         1
#> 1595   JoneBy00           16788       2332         7
#> 1596       <NA>           22064       6974         2
#> 1597   IgbiNo00           22072       6817         2
#> 1598   ArneDa00           22045       6840         2
#> 1599   NeedNi00           21192       6258         3
#> 1600   WilsQu01           18934       4088         5
#> 1601   HowaXa00           17976       3215         6
#> 1602   ColeJu01           17037       2572         7
#> 1603   HollJe02              NA       7666         1
#> 1604   JoneBr06           21927       6911         2
#> 1605       <NA>           21463       6476         3
#> 1606   FejeCl00           18161       3400         6
#> 1607   RoweEr00           16808       2352         7
#> 1608   McCoJa99            8550        368        13
#> 1609   MiltCh00           18369       3589         6
#> 1610   CampEl00           20271       5534         4
#> 1611   RedwSh00           20923       5983         3
#> 1612   HodgDa01              NA       7987         1
#> 1613   OgbaEm00           17958       3197         6
#> 1614   HallDa01           18949       4103         5
#> 1615   SielZa00           20051       5297         4
#> 1616   JoneBe03           21868       6999         2
#> 1617   JenkJo00           15194       1553         9
#> 1618   WilkCh00           20983       6120         3
#> 1619   ButlAd00           19275       4415         5
#> 1620   DaviRa03           22062       6831         2
#> 1621       <NA>           21098       6197         3
#> 1622       <NA>              NA       7923         1
#> 1623   KindSo00           22037       6971         2
#> 1624   SandJa00           20033       5119         4
#> 1625   VanGAn00           20971       6183         3
#> 1626   BiegVi00           18991       4145         5
#> 1627   RileDu00           18945       4099         5
#> 1628   McMaWy00           18670       3849         6
#> 1629   MunsCa00           19538       4643         5
#> 1630   EguaSa00           20724       5830         3
#> 1631   BakeJe00           19882       5056         4
#> 1632   RobeEl00           18130       3369         6
#> 1633   PhilJa02              NA       7635         1
#> 1634   ScarBr00           18545       3734         6
#> 1635   FergBl00           21988       7043         2
#> 1636   HuntRo01           21943       7041         2
#> 1637   MancGr00           17491       2986         7
#> 1638   DaviJe00           17566       3017         7
#> 1639   DeitMi00           21065       5898         3
#> 1640   PalaMi00           17286       2818         8
#> 1641   BrisJa00           18018       3257         6
#> 1642   LoveJo02           21156       6231         3
#> 1643   TagoTu00           21677       6768         2
#> 1644   StreCh00           21866       6778         2
#> 1645   LairPa00           21211       6311         3
#> 1646   AhmeSa01           21843       6918         2
#> 1647   GaskMy00           20768       5980         3
#> 1648   LindPh00           20128       5170         4
#> 1649       <NA>              NA       7539         1
#> 1650   ScarJo00           20935       6167         3
#> 1651   BrowMa03           17053       2588         7
#> 1652   JohnDu00           16838       2382         7
#> 1653       <NA>           20858       5868         3
#> 1654       <NA>              NA       7742         1
#> 1655   PankAd00           19240       4383         5
#> 1656       <NA>              NA       7773         1
#> 1657   JackAu00           21949       6821         2
#> 1658   EichLi00              NA       7660         1
#> 1659   CartCe00           19219       4362         5
#> 1660       <NA>              NA       8088         1
#> 1661       <NA>              NA       8089         1
#> 1662   SmytDu00           19943       5008         4
#> 1663   ShahAd00           18931       4085         5
#> 1664   GesiMi00           19853       4993         4
#> 1665   LongHu00              NA       7535         1
#> 1666   WilsAl02           16308       2025         8
#> 1667   WaddJa00              NA       7526         1
#> 1668   HollMa00           19023       4177         5
#> 1669   ParkDe01           16775       2319         7
#> 1670   HurnAl01           16253       1984         8
#> 1671   LewiTo00           18401       3614         6
#> 1672       <NA>              NA       8108         1
#> 1673   BowdLy00           21743       6909         2
#> 1674   CracRi00           19755       4854         5
#> 1675   CoreCo00           18116       3355         6
#> 1676   FullWi01           17916       3157         6
#> 1677   FordIs00           19098       4252         5
#> 1678   WillPr01           20988       6148         3
#> 1679   BradGa00           21038       5855         3
#> 1680   DantCa00           22048       6871         2
#> 1681   NickPa00           19994       5091         4
#> 1682       <NA>           22290       7294         2
#> 1683       <NA>              NA       7953         1
#> 1684   HandHa00           22053       6961         2
#> 1685   AlexMa01           17985       3224         6
#> 1686   SmitTy01           16930       2473         7
#> 1687   PetePa00           13415        972        11
#> 1688   BoydKr00           21036       5921         3
#> 1689   BynuCa00              NA       7715         1
#> 1690   WoodXa00           19084       4238         5
#> 1691       <NA>           22353       7366         2
#> 1692   MeteJo00           21929       6901         2
#> 1693   SmitHa00           14461       1213        10
#> 1694   HuntDa01           16849       2393         7
#> 1695       <NA>              NA       7710         1
#> 1696   JonePa20              NA       7674         1
#> 1697   JonePa00              NA       7674         1
#> 1698   YarbEd01           18426       3637         6
#> 1699   WillKe06           21893       6874         2
#> 1700   WonnDJ00           21909       6868         2
#> 1701   GrifEv99           11414        605        12
#> 1702   BoweTa00           19261       4402         5
#> 1703   LyncJa00           21894       6858         2
#> 1704       <NA>              NA       7797         0
#> 1705   TomlDa00           18938       4092         5
#> 1706   RichSh00           14894       1372         9
#> 1707       <NA>           22319       7327         2
#> 1708   PierMi00           18481       3681         6
#> 1709       <NA>              NA       7919         1
#> 1710   McGiT.00           17082       2614         7
#> 1711   WattAr01           20975       6186         3
#> 1712   BargJa00           22346       7358         2
#> 1713   HamxC.00           18652       3832         6
#> 1714   DaviWy00              NA       7675         1
#> 1715   UdohOl01           20969       6158         3
#> 1716       <NA>              NA       7856         1
#> 1717   DoziDa00           16061       1852         8
#> 1718   ClevEz00           21993       6922         2
#> 1719       <NA>           22155       7153         2
#> 1720   JoseGr00           20325       5272         4
#> 1721   SurrCh00              NA       7673         1
#> 1722   KendEr00           16806       2350         7
#> 1723       <NA>              NA       7920         1
#> 1724   LyncBl00           22352       7364         2
#> 1725   VigiNi00           18015       3254         6
#> 1726   ConnRy00           21011       5979         3
#> 1727   BarrAn00           16496       2151         8
#> 1728   DyexTr00           21994       6941         2
#> 1729   DePaAn00           15646       1721        10
#> 1730   ColeMa02           19898       5062         4
#> 1731   BerrJo00           17470       2975         7
#> 1732   CousKi00           14252       1166        10
#> 1733   MannSe00           16850       2394         7
#> 1734       <NA>              NA       7581         1
#> 1735       <NA>              NA       7918         1
#> 1736   GallWa00           18996       4150         5
#> 1737   CookDa01           18872       4029         5
#> 1738   MattAl01           20868       5987         3
#> 1739       <NA>              NA       7720         1
#> 1740   HillRa01           18315       3545         6
#> 1741   ONeiBr00           19883       5047         4
#> 1742       <NA>              NA       7631         1
#> 1743   ParrTi00           20392       5430         4
#> 1744   BranBl00           22136       7129         2
#> 1745   StocLu00           13370        963        11
#> 1746   HernCh00           19947       5009         4
#> 1747   SmitIr01           20949       6126         3
#> 1748   ElleBe00           22284       7288         2
#> 1749   ConkTy00           19988       5133         4
#> 1750       <NA>              NA       7943         1
#> 1751   SmitIh00              NA       7559         1
#> 1752   OsboKJ00           21714       7066         2
#> 1753   ThieAd00           15534       1689         9
#> 1754       <NA>              NA       7578         1
#> 1755       <NA>           21725       7009         2
#> 1756   JohnOl00           20836       6088         3
#> 1757   WestDe00           18992       4146         5
#> 1758   ChisDa00           22345       7357         2
#> 1759   JeffJu00           21685       6794         2
#> 1760   AndrDa00           17443       2961         7
#> 1761   BausDe00           17651       3022         7
#> 1762   WillJo13           20986       6127         3
#> 1763   MillJa02           18149       3388         6
#> 1764       <NA>              NA       7830         1
#> 1765       <NA>              NA       8011         1
#> 1766   BethJu00           14469       1216        10
#> 1767   DuggKy00           21926       6872         2
#> 1768   BryaMy01           22047       6946         2
#> 1769   DaviCo02           15208       1565         9
#> 1770   JoneJo03           18177       3415         6
#> 1771   McCoDe99           10978        518        12
#> 1772   PhilAd00           16724       2287         8
#> 1773       <NA>              NA       7805         1
#> 1774   JackJ.00           20167       5193         4
#> 1775   DaviSe00           17989       3228         6
#> 1776   WiseDe00           19020       4174         5
#> 1777   WinoCh00           20995       6133         3
#> 1778   AndeHe00           16854       2398         7
#> 1779   EkuaDa00           20269       5532         4
#> 1780   BarmCh00              NA       7664         1
#> 1781   DaviCa01           16851       2395         7
#> 1782       <NA>           22356       7369         2
#> 1783   GuyxLa00           14743       1288        11
#> 1784   GodcDa00           19053       4207         5
#> 1785   CowaBy00           21013       6006         3
#> 1786   JohnJa12           21100       6202         3
#> 1787   DuraYa01           21998       7297         2
#> 1788   FolkNi20           11694        650        15
#> 1789       <NA>              NA       8040         1
#> 1790   HallTe01           20784       5990         3
#> 1791   ReynLa00           15450       1666         9
#> 1792   JennAn00           21898       6848         2
#> 1793   KingBr02           17192       2724         7
#> 1794   UcheJo00           21889       6921         2
#> 1795   VanNKy00           16467       2130         8
#> 1796       <NA>              NA       7814         1
#> 1797   TavaJa00           20959       6179         3
#> 1798   McMiRa02           18936       4090         5
#> 1799   CollJa00           14885       1364         9
#> 1800   LangHa00           19286       4426         5
#> 1801   BentJa00           19944       5318         4
#> 1802   HighDo01           13748       1037        10
#> 1803       <NA>              NA       7688         1
#> 1804   JudoMa00           18064       3303         6
#> 1805   CardJo00           16926       2469         7
#> 1806   RedmAl01           18494       3692         6
#> 1807   HerrJu00           21950       7126         2
#> 1808   FereJa00           16199       1950         8
#> 1809   MasoSh01           16892       2435         7
#> 1810       <NA>           21004       5891         3
#> 1811   OnweMi00           22038       7123         2
#> 1812   BrowTr02           17003       2543         7
#> 1813       <NA>              NA       8109         0
#> 1814   KarrTe00           18137       3376         6
#> 1815   HambAr00           22142       7139         2
#> 1816   WynnIs00           19848       4977         4
#> 1817   BailJa00           21017       6093         3
#> 1818   HoyeBr00            8358        345        13
#> 1819   JoneMa05              NA       7527         1
#> 1820   StidJa00           20954       6136         3
#> 1821   OzigDe01           20904       6068         3
#> 1822   WhitJa02           16056       1848         8
#> 1823   HarrDa06           20790       5890         3
#> 1824   StevRh00              NA       7611         1
#> 1825   BoldBr00           13741       1034        10
#> 1826   TaylJJ01           21837       6973         2
#> 1827       <NA>              NA       7798         1
#> 1828   HenrHu00           17975       3214         6
#> 1829   FumaTr00           19973       5092         4
#> 1830   KeenDa00           21808       7082         2
#> 1831   SmitJo01           18990       4144         5
#> 1832   LaCoMa00           17415       2944         7
#> 1833   AsiaDe00           21771       6956         2
#> 1834   BourKe00           19318       4454         5
#> 1835       <NA>              NA       7546         1
#> 1836   PerrMa00           21962       7109         2
#> 1837   MeyeJa01           20876       5947         3
#> 1838   OlszGu00           21601       6699         3
#> 1839   WilkKr00           22417       7438         2
#> 1840   AghoNe00           16781       2325         7
#> 1841   SlatMa00            7651        312        14
#> 1842       <NA>           20945       6155         3
#> 1843   HarrNK00           20792       5878         3
#> 1844   ClapWi00           20072       5316         4
#> 1845       <NA>           22001       7338         2
#> 1846   WillP.00           16839       2383         7
#> 1847   AdebPa00              NA       7669         1
#> 1848       <NA>              NA       7910         0
#> 1849   MabiDy00           21238       6332         3
#> 1850       <NA>              NA       7907         1
#> 1851   RobyBr00           16283       2008         8
#> 1852   LattMa01           18905       4059         5
#> 1853   CrawKe02           18190       3426         6
#> 1854   GrayJ.00           20559       5452         4
#> 1855   HeatJe00           15576       1700         9
#> 1856   MillJo05           20878       6009         3
#> 1857   WillMa06           18937       4091         5
#> 1858   RussKe00           18004       3243         6
#> 1859   GardCh00           20766       5893         3
#> 1860   AlexAd00           20674       5767         4
#> 1861   TurnPa02              NA       7629         1
#> 1862   JordCa00           13338        957        11
#> 1863   DaveMa00           19835       4965         4
#> 1864   GranCa01           20776       5912         3
#> 1865   HolmJa01           19911       5333         4
#> 1866   KpasTa00           18960       4114         5
#> 1867   RoacMa01           21899       7018         2
#> 1868   TuttSh00           21422       6627         3
#> 1869   HoyeBr01           21358       6602         3
#> 1870       <NA>           21507       6510         3
#> 1871   HuggAl01           20815       6026         3
#> 1872   WestEt00           16637       2237         8
#> 1873   OnyeDa00           18042       3281         6
#> 1874   RingCh00           16970       2511         7
#> 1875       <NA>              NA       8025         1
#> 1876   LutzWi00           18478       3678         6
#> 1877   MaheBr01           15854       4958         9
#> 1878   HansCh02           20787       5952         3
#> 1879   DaviDe00           13810       1052        10
#> 1880   BaunZa00           21907       6815         2
#> 1881   WernPe00              NA       7647         1
#> 1882   ElliKa00           21134       6302         3
#> 1883   AlexKw00           16885       2429         7
#> 1884   DoweAn00           21445       6611         3
#> 1885   PoliQu00           20031       5343         4
#> 1886   FincSh00           20382       5669         4
#> 1887   WoodZa00           18704       3882         6
#> 1888   GreeEt00           21164       6564         3
#> 1889   ThroCa01           22043       7010         2
#> 1890       <NA>              NA       7906         0
#> 1891   PeatAn00           16774       2318         7
#> 1892   RuizCe00           22036       6816         2
#> 1893   HursJa00           16086       1870         8
#> 1894   McCoEr01           20869       5875         3
#> 1895   LampFo00           18940       4094         5
#> 1896   BeneCa00           18066       3305         6
#> 1897   HawkJe00           18044       3283         6
#> 1898       <NA>           18117       3356         6
#> 1899   GillBl00           22442       7467         2
#> 1900   WinsJa00           16762       2306         7
#> 1901   BortBl00           16245       1979         8
#> 1902       <NA>              NA       7589         1
#> 1903   HillTa00           19238       4381         5
#> 1904   SiemTr00           17009       2549         7
#> 1905   IngrMa01           13337        956        11
#> 1906   JoneTo04           21774       6984         2
#> 1907   KamaAl00           18878       4035         5
#> 1908   WashDw00           18152       3391         6
#> 1909   AdamJo03           20075       5136         4
#> 1910   JenkMa99            9196        444        13
#> 1911   MillJo02           15116       1510         9
#> 1912   CarpJa00           13462        989        11
#> 1913   YounLa00              NA       7792         1
#> 1914   RamcRy00           18922       4076         5
#> 1915   ArmsTe00           15193       1552         9
#> 1916   TrauAd00           21786       6869         2
#> 1917   VannNi00           18019       3258         6
#> 1918       <NA>              NA       7905         1
#> 1919   JohnJu02           21738       7002         2
#> 1920       <NA>           20193       5196         4
#> 1921   GrifGa00           18716       3894         6
#> 1922   ThomMi05           17960       3199         6
#> 1923   MerrKi00           22339       7351         2
#> 1924       <NA>           21724       7337         2
#> 1925   MontTy01           16855       2399         7
#> 1926   SmitTr03           19897       5026         4
#> 1927       <NA>           22175       7173         2
#> 1928   HarrDe07           21163       6234         3
#> 1929       <NA>           20653       5744         1
#> 1930   WhitKe00           16768       2312         7
#> 1931   HumpLi01           20816       5938         3
#> 1932   StilKe00           15196       1555         9
#> 1933   CallMa01           21750       6989         2
#> 1934       <NA>              NA       7752         1
#> 1935       <NA>           21671       6752         0
#> 1936   GateNi00           20337       5645         4
#> 1937   SkurMa01           18205       3441         6
#> 1938   WillBr07           18330       3557         4
#> 1939   WillRo07              NA       7795         1
#> 1940   WillJa09           22172       7170         2
#> 1941   RobiAa00              NA       7668         1
#> 1942   HolmDa01           22050       6882         2
#> 1943   BradJa00           17992       3231         6
#> 1944       <NA>              NA       7748         1
#> 1945   KaluJo00           20384       5671         4
#> 1946   PeppJa00           18902       4056         5
#> 1947   LoveJu00           20864       5876         3
#> 1948   ParkSt00           20316       5741         4
#> 1949   EbneNa00           13744       1035        10
#> 1950       <NA>           21935       7046         2
#> 1951   RyanLo00           14888       1367         9
#> 1952   CrosKe00           20070       5317         4
#> 1953   JackAd00           18924       4078         5
#> 1954   McKiXa00           21936       6788         2
#> 1955   WillLe02           16767       2311         7
#> 1956   JohnRa02              NA       7930         1
#> 1957   LaloNi00           22367       7381         2
#> 1958   HamiWo00           18575       3763         6
#> 1959   JohnAu01           18333       3560         6
#> 1960       <NA>           22350       7362         2
#> 1961   LawrDe03           20852       5847         3
#> 1962   ShelDa01           16773       2317         7
#> 1963   GillCu00           21126       6293         3
#> 1964   BredBe00           21990       6934         2
#> 1965   MartWe00           21112       6215         3
#> 1966   HernWi00           19860       5018         4
#> 1967   GanoGr44           10333        503        13
#> 1968   SmitEl00              NA       7723         1
#> 1969   McKiBe00           16804       2348         7
#> 1970   BrowCa01           21978       7020         2
#> 1971   SmitJa05           17926       3167         6
#> 1972   CartLo01           19886       5021         4
#> 1973   CrowTa00           22156       7155         2
#> 1974   RochQu00              NA       7783         1
#> 1975   OjulAz00              NA       7653         1
#> 1976   RaglRe00           17937       3176         6
#> 1977   CougCa00           21902       7011         2
#> 1978   XimiOs00           21000       6132         3
#> 1979       <NA>              NA       7732         1
#> 1980   CobbOm00           22296       7302         2
#> 1981   MartBl01           18052       3291         6
#> 1982   BrunTJ00           22150       7148         2
#> 1983   KreiCa00           16365       2063         8
#> 1984   KellDe01           21424       6635         3
#> 1985   LemiSh00           22039       7022         2
#> 1986       <NA>           22091       7377         2
#> 1987   HarrJo03           16221       1963         8
#> 1988   PricBi01           19813       4947         4
#> 1989   DixoRi00           18144       3383         6
#> 1990   GillJa00           21279       6452         3
#> 1991   JoneDa05           20841       5870         3
#> 1992       <NA>           21811       7008         2
#> 1993       <NA>           21828       6822         2
#> 1994   WebbDa00           18907       4061         5
#> 1995   GlenMi00           15201       1559         9
#> 1996       <NA>           20966       6147         3
#> 1997   BookDe00           17970       3209         6
#> 1998   PennEl00           18617       3803         6
#> 1999       <NA>           22395       7412         2
#> 2000   MizzTa00           19205       4349         5
#> 2001   BrigGa00              NA       7529         1
#> 2002   BarkSa00           19766       4866         4
#> 2003   WillAn03           22205       7203         2
#> 2004   PearMa00           22035       6905         2
#> 2005   ThomAn02           22025       6810         2
#> 2006   CunnKo00           20047       5349         4
#> 2007       <NA>              NA       7997         1
#> 2008   SoldNa00           12778        813        11
#> 2009   RudoKy00           13275        943        11
#> 2010   EngrEv00           18912       4066         5
#> 2011       <NA>              NA       8061         1
#> 2012   SmitKa00           20946       6146         3
#> 2013   MyarCh00           21531       6529         3
#> 2014       <NA>           22365       7379         2
#> 2015   ToilLe00           15378       1642         9
#> 2016   StevTo01           22151       7149         2
#> 2017       <NA>           22128       7100         2
#> 2018       <NA>              NA       8070         1
#> 2019   CoopPh00           18039       3278         6
#> 2020   ToneKa00              NA       7606         1
#> 2021   BoarC.00           19200       4344         5
#> 2022   JoneAn01           18508       3702         6
#> 2023       <NA>           20052       5126         4
#> 2024   SlayDa01           20943       6149         3
#> 2025   BachAl00           21294       6386         3
#> 2026       <NA>           20939       6154         3
#> 2027   PettDa00           19854       4992         4
#> 2028   ShepSt00           17961       3200         6
#> 2029   RossJo00           18881       4038         5
#> 2030   GollKe00           18977       4131         5
#> 2031   JohnCo01           21730       6857         2
#> 2032       <NA>           22170       7168         2
#> 2033   HallBr02           22076       6833         2
#> 2034   WebsKe00           21145       6405         3
#> 2035       <NA>              NA       7816         1
#> 2036   CartMi02              NA       7835         1
#> 2037   EchoBr00              NA       7796         1
#> 2038   GuidJa01           22081       7392         2
#> 2039       <NA>              NA       7786         1
#> 2040   HardJu01           19501       4611         5
#> 2041   MoffJo01           22251       7251         2
#> 2042   ParkWi01           18134       3373         6
#> 2043   JoynLa00           16625       2230         8
#> 2044   RileEl01           22390       7406         2
#> 2045   MayeMa00           18939       4093         5
#> 2046   DaviAs00           21925       6855         2
#> 2047   NacuKa00           19448       4564         5
#> 2048   DunnIs00              NA       8044         1
#> 2049   LawsCa00           18994       4148         5
#> 2050   AkinFr01           21584       6657         3
#> 2051   WardTi00           21225       6321         3
#> 2052   ZuniJa00           21910       6897         2
#> 2053   HuffBr00           22377       7391         2
#> 2054       <NA>              NA       7877         1
#> 2055   AnaeBr00           21870       6827         2
#> 2056   BlaiRo00           18060       3299         6
#> 2057   FatuFo00           19993       5090         4
#> 2058   PhilKy00           21165       6235         3
#> 2059   FranJo02           19942       5466         4
#> 2060   SmarTa00           19097       4251         5
#> 2061   WillQu00           20989       6118         3
#> 2062       <NA>              NA       7791         1
#> 2063   RankSh00           17949       3188         6
#> 2064   ShepNa00           19887       5043         4
#> 2065   BawdNi00           20018       5116         4
#> 2066   AmmeMa00              NA       7617         1
#> 2067   PineEd00           20149       5189         4
#> 2068   NasiHa00              NA       7806         1
#> 2069   MoslC.00           16093       1875         8
#> 2070   PhilDe00           21306       6348         3
#> 2071   WhitJa04           22303       7311         2
#> 2072   CashBl00           21118       6217         3
#> 2073   WillQu01           21109       6214         3
#> 2074   DaviJa01           18913       4067         5
#> 2075       <NA>              NA       8046         0
#> 2076   SherJa00              NA       7841         1
#> 2077   HennTh00           19178       4325         5
#> 2078   VanRGr00           19690       4771        10
#> 2079       <NA>              NA       8045         1
#> 2080       <NA>              NA       7927         1
#> 2081   FeenDa00           18968       4122         5
#> 2082       <NA>           18062       3301         6
#> 2083   VeraAl00              NA       7638         1
#> 2084   DuveLa00           16293       2014         8
#> 2085   SamiDr00           20930       5887         3
#> 2086   McDeCo00           19104       4258         5
#> 2087   MoseMo00           16419       2098         8
#> 2088       <NA>           18761       3931         6
#> 2089   PierRo00           20910       5943         3
#> 2090       <NA>           22011       7061         2
#> 2091   FantGe00           18599       3786         6
#> 2092   BectMe00           22009       6796         2
#> 2093   EdogCh00           20746       5969         3
#> 2094   MannBr01           22094       6950         2
#> 2095   WhitMi01           19972       5089         4
#> 2096   FlacJo00             611         19        14
#> 2097   WilsZa00              NA       7538         1
#> 2098   JohnTy02           20837       6039         3
#> 2099   CartMi03              NA       7607         1
#> 2100   PeriLa00           21797       6908         2
#> 2101   WaltAu00           21514       6553         3
#> 2102   ColeTe01           16834       2378         7
#> 2103   SenaGr00           20009       5299         4
#> 2104   DillBr00           21161       6279         3
#> 2105   PerkJo02           18468       3668         6
#> 2106   KrofTy00           16846       2390         7
#> 2107   WescTr00           20977       6181         3
#> 2108   BrowDa04           17219       2751         7
#> 2109   GrifRy00           14985       1425         9
#> 2110       <NA>              NA       7597         1
#> 2111   DaviCo03           18879       4036         5
#> 2112   CrowJa00           16866       2410         7
#> 2113   ColeKe00           19514       4622         5
#> 2114   BerrBr00           20038       5121         4
#> 2115       <NA>           21473       6453         3
#> 2116   SmitJe03           21078       6557         3
#> 2117   MimsDe00           21741       6849         2
#> 2118   AdamRo01           19054       4208         5
#> 2119   MoorEl00              NA       7596         1
#> 2120   CageLa01           21728       7106         2
#> 2121       <NA>           17765       3050         3
#> 2122       <NA>              NA       8005         1
#> 2123   KelcJa00           12707        787        11
#> 2124       <NA>              NA       7767         1
#> 2125   SlayDa00           15127       1518         9
#> 2126       <NA>              NA       7895         1
#> 2127   ScotJo00           22057       6935         2
#> 2128   McPhZe00              NA       7717         1
#> 2129   NelsSt01           16859       2403         7
#> 2130   JameCr01           20584       5583         4
#> 2131   GowaTa00              NA       7780         1
#> 2132   MaddAv00           19949       5361         4
#> 2133   ChacAn00           20604       5674         4
#> 2134   EppsMa00           21133       6284         3
#> 2135   MaydJa01           22103       7027         2
#> 2136   HarrAn01           17187       2719         7
#> 2137   McLeRo00           14419       1205        10
#> 2138   WallKV00           21938       6947         2
#> 2139   MalvCa00           19252       4393         5
#> 2140   SweaJo00           19918       4999         4
#> 2141   GrahBr99           11315        583        12
#> 2142   JackTa02              NA       7802         1
#> 2143       <NA>           22394       7411         2
#> 2144   KerrRy00           13166        917        11
#> 2145   BarnDe01           18911       4065         5
#> 2146       <NA>              NA       8029         1
#> 2147   WrenRe00           20998       6157         3
#> 2148   CoxxFl00           13721       1027        10
#> 2149   HargJa00           18017       3256         6
#> 2150       <NA>           19555       4935         1
#> 2151   TuipMa00              NA       7804         1
#> 2152   RidgHa00           18038       3277         6
#> 2153   WillMi08              NA       7696         1
#> 2154   SeumIs00           18009       3248         6
#> 2155   BrooBr00           13959       1098        10
#> 2156       <NA>              NA       7768         1
#> 2157   HerbNa01           20799       5963         3
#> 2158   OpetIo00           20902       6102         3
#> 2159   ElliJa03           19041       4195         5
#> 2160   AverGe00           19970       5081         4
#> 2161   EdwaTJ02           20749       5960         3
#> 2162   BradSh00           21914       7127         2
#> 2163       <NA>              NA       7921         1
#> 2164   SingAl00           17085       2617         7
#> 2165   TaylDa01           21987       6912         2
#> 2166       <NA>              NA       7779         1
#> 2167   JohnPa02              NA       7770         1
#> 2168   LovaRi00           17527       2999         7
#> 2169       <NA>              NA       7665         1
#> 2170   TothBr00           21661       6740         3
#> 2171       <NA>              NA       7947         1
#> 2172   SipoAr01           22260       7261         2
#> 2173   HurtJa00           21831       6904         2
#> 2174       <NA>           22160       7159         2
#> 2175   MinsGa00           20880       6011         3
#> 2176   HowaJo00           18067       3306         6
#> 2177   GainKe00              NA       7567         1
#> 2178   SandMi01           20933       6151         3
#> 2179   ScotBo02           20039       5122         4
#> 2180   HuntJa01           21764       7107         2
#> 2181   JohnLa01           14857       1340         9
#> 2182   ClarLe01           18011       3250         6
#> 2183   MailJo00           20042       5362         4
#> 2184   DrisJa00           21981       6942         2
#> 2185   DillAn00           21067       5858         3
#> 2186   StolJa00              NA       7946         1
#> 2187       <NA>           20823       6040         3
#> 2188   CrooJa00           19415       4536         5
#> 2189   GoedDa00           19863       5022         4
#> 2190   TogiNo00           21796       7404         2
#> 2191   RodgRi00           16491       2146         8
#> 2192   WardGr02           19705       6744         5
#> 2193   ReagJa00           21686       6798         2
#> 2194   WatkQu00           21957       6927         2
#> 2195   CainDe00           19980       5101         4
#> 2196   ArceJJ00           20742       5863         3
#> 2197   HighJo00           21731       7086         2
#> 2198   SmitDe07              NA       7525         1
#> 2199   GreeKe02              NA       7692         1
#> 2200       <NA>           20231       5503         4
#> 2201   WithAh00           18970       4124         5
#> 2202   LaynJu00           20853       5905         3
#> 2203   SuttCa00           18984       4138         5
#> 2204   HadeJo99           11043        531        12
#> 2205   JohnIs02           20833       5951         3
#> 2206   MaulAr00           19375       4503         5
#> 2207   PierJa01           22068       7419         2
#> 2208   KillMi00           18033       3272         6
#> 2209   NorwTr00              NA       7761         1
#> 2210   EdmuTe00           19849       4974         4
#> 2211       <NA>              NA       7896         1
#> 2212   FitzMi00           19829       4963         4
#> 2213   JoseKa00           17952       3191         6
#> 2214   StepLi00           20335       5474         4
#> 2215   CharTa00           18919       4073         5
#> 2216   MondHe00           20520       5572         4
#> 2217       <NA>              NA       8091         5
#> 2218   LoudIs00              NA       7833         1
#> 2219   AluaTy99           11151        554        12
#> 2220   TuitSt00           16159       1925         8
#> 2221   WormCh00           18947       4101         5
#> 2222   HeywCa01           12902        843        11
#> 2223   DaviCa03           22067       6995         2
#> 2224       <NA>           21007       5953         3
#> 2225   AdamMo00           18978       4132         5
#> 2226       <NA>              NA       8054         1
#> 2227   DaviKh00           22070       7125         2
#> 2228   WattDe00           18115       3354         6
#> 2229       <NA>           22315       7323         2
#> 2230   TurnTr01           16563       2194         8
#> 2231       <NA>           21241       6569         3
#> 2232   BoswCh00           16191       1945         8
#> 2233   SlomSa00           22154       7152         2
#> 2234   SchoJo00           17967       3206         6
#> 2235       <NA>           22461       7487         2
#> 2236   SimoJo01           14904       1381         9
#> 2237   JohnBu01              NA       7704         1
#> 2238   SpilRo00           20646       5726         4
#> 2239   ScalTe00           20155       5174         4
#> 2240   BushDe01           21054       5843         3
#> 2241   WattT.00           18916       4070         5
#> 2242   TuszDe00           21873       7154         2
#> 2243   HighAl02           21897       7113         2
#> 2244   AlleMa03           19997       5360         4
#> 2245   GilbUl00           20771       6057         3
#> 2246       <NA>           22472       7498         2
#> 2247   KuntCh02           19749       4848         5
#> 2248   DotsKe00           22132       7116         2
#> 2249   FinnB.01           17782       3057         7
#> 2250   OkorCh00           19906       5023         4
#> 2251   MoorDa05              NA       7714         1
#> 2252       <NA>           21362       6437         3
#> 2253   NiziCa00           21660       6739         3
#> 2254   HarvPr00              NA       7753         1
#> 2255   DobbJo00           19025       4179         5
#> 2256   RoetBe00            3807        138        18
#> 2257   RudoMa00           19850       4972         4
#> 2258   HaskDw00           20795       5845         3
#> 2259       <NA>           19316       4926         1
#> 2260   McFaAn00           21854       6878         2
#> 2261   SnelBe00           20950       6156         3
#> 2262   EdmuTr00           19599       4696         5
#> 2263   BallKa00           19824       4994         4
#> 2264   HarrNa00              NA       7528         1
#> 2265   BannZa00           19013       4167         5
#> 2266   GreeCh02           16852       2396         7
#> 2267   HaegJo00           18072       3311         6
#> 2268   SterJa00           20952       6139         3
#> 2269   EbroEr00           16451       2118         8
#> 2270   FreiPa00              NA       7600         1
#> 2271   RadeKe00           20134       5171         4
#> 2272   GentZa00           20770       6018         3
#> 2273       <NA>           20922       6016         3
#> 2274   ClayCh01           21752       6886         2
#> 2275   JohnDi01           21077       5937         3
#> 2276       <NA>              NA       7901         1
#> 2277   WashJa00           19865       5024         4
#> 2278       <NA>           21964       7039         2
#> 2279   SimsSt00           21400       6402         3
#> 2280   McClRa00           19961       5096         4
#> 2281   MillAn02           19864       5013         4
#> 2282   SmitJu00           18883       4040         5
#> 2283       <NA>              NA       7548         1
#> 2284   ShepDa01           20556       5555         4
#> 2285       <NA>           22412       7433         2
#> 2286   JoneSi00           18929       4083         5
#> 2287   ReidJo00           22061       7052         2
#> 2288   JackMi01           20822       6025         3
#> 2289   ReedD.00           19953       5372         4
#> 2290   BrowTr03              NA       7707         1
#> 2291   BlaiMa01           21031       5982         3
#> 2292       <NA>           22098       6986         2
#> 2293   DiggQu00           16960       2501         7
#> 2294   AmadUg00           21111       6216         3
#> 2295   AustBl00           20744       5933         3
#> 2296   JoneJo06           18955       4109         5
#> 2297       <NA>           22409       7429         2
#> 2298   TaylDa00           21882       6910         2
#> 2299   RobiAl03           21901       6915         2
#> 2300   GreeRa01           19890       5059         4
#> 2301   CollLJ00           21008       5861         3
#> 2302   MayoBe00           15814       1764         9
#> 2303   HydeKe01           16067       1857         8
#> 2304   DunlCa99           11023        529        12
#> 2305   WoodAl99           12450        754        12
#> 2306       <NA>           22224       7222         2
#> 2307   MoneBr00           21494       6494         3
#> 2308       <NA>              NA       8083         1
#> 2309   ScotNi00           20469       5393         4
#> 2310   NkemRo00           17941       3180         6
#> 2311   FordPo00           20185       5226         4
#> 2312   BellNi01           12787        815        11
#> 2313   LewiDa05           22028       7003         2
#> 2314   JackGa00           16320       2034         8
#> 2315   MyerJa00           17215       2747         7
#> 2316   BurrBe00           21053       6098         3
#> 2317   BrooJo01           22005       6949         2
#> 2318   BartCo00           21025       6065         3
#> 2319       <NA>              NA       8096         1
#> 2320       <NA>              NA       8032         1
#> 2321   MuseTa00           21932       6990         2
#> 2322   WagnBo00           14534       1233        10
#> 2323   RhatJo00              NA       7957         1
#> 2324       <NA>              NA       8098         1
#> 2325   RobiEd00           16991       2531         7
#> 2326       <NA>           21092       6190         0
#> 2327   OttxTy00           16051       1844         8
#> 2328   HaynPh00           20796       6077         3
#> 2329       <NA>              NA       7955         1
#> 2330   PociEt00           18969       4123         5
#> 2331   FullKy01           19091       4245         5
#> 2332       <NA>              NA       7958         1
#> 2333   DickMi00           19956       5011         4
#> 2334       <NA>           19574       4936         1
#> 2335   SmitGe00           14895       1373         9
#> 2336   EasoJa00           21820       6823         2
#> 2337   WilsRu00           14536       1234        10
#> 2338   PennRa00           19799       4985         4
#> 2339   CollAl00           18088       3327         6
#> 2340   ThomDa06           20964       6178         3
#> 2341   PeteAd01            4807        184        15
#> 2342   DallDe00           21804       6931         2
#> 2343       <NA>              NA       8051         1
#> 2344   HomeTr00           20810       6012         3
#> 2345   CarsCh00           19119       4273         5
#> 2346   NealRy00           20538       5655         4
#> 2347   AdamJa00           18923       4077         5
#> 2348   JoneJa08           19998       5377         4
#> 2349       <NA>              NA       7790         1
#> 2350   BrowDu20            3617        131        14
#> 2351   ShelBr00           18075       3314         6
#> 2352   CurhJa00              NA       8081         1
#> 2353   EverGe00           18935       4089         5
#> 2354   MabrTy00           22407       7427         2
#> 2355   ParkCo02           21807       6865         2
#> 2356   DissWi00           19950       5010         4
#> 2357   LockTy00           16830       2374         7
#> 2358   UrsuJo00           20970       6168         3
#> 2359       <NA>           21751       6967         2
#> 2360   ColeMa03           22340       7352         2
#> 2361   SwaiFr00           21960       7135         2
#> 2362   HartPe01           20793       5902         3
#> 2363   MetcDK00           20875       5846         3
#> 2364       <NA>           20963       6171         3
#> 2365   EskrDW00              NA       7612         1
#> 2366       <NA>              NA       7956         1
#> 2367   MackAl20            8485        359        13
#> 2368   NormJo01           14340       1182        10
#> 2369       <NA>           22066       6863         2
#> 2370   MoseEm00           20366       5436         4
#> 2371   DennDa00           16107       1887         8
#> 2372   BarcLu00           22289       7293         2
#> 2373   WillKW00           16143       1913         8
#> 2374   VerrJa00           16353       2055         8
#> 2375       <NA>           20758       5968         3
#> 2376   ThomAm00              NA       7686         1
#> 2377   JohnDo02           16669       2258         8
#> 2378   WilsJa00           18321       3550         6
#> 2379   WilsTa00           13753       1039        10
#> 2380   MoorTa00           19907       5040         4
#> 2381   TartJa00           16807       2351         7
#> 2382   LenoDe00              NA       7819         1
#> 2383   HufaTa00              NA       7811         1
#> 2384   MiddDo01           18434       3643         6
#> 2385   HollKa00           21116       6222         3
#> 2386   WardJi01           16678       2267         8
#> 2387   OmenCh00           20901       5934         3
#> 2388   WillJo09           18951       4105         5
#> 2389   ArmsAr01           16778       2322         7
#> 2390   BarrAl00           19481       4594         5
#> 2391   KeyxAr00           19896       5067         4
#> 2392   BosaNi00           20713       5816         3
#> 2393   EbukSa00           19016       4170         5
#> 2394   FordDe00           16294       2015         8
#> 2395       <NA>           20942       6174         3
#> 2396   KinlJa00           21867       6792         2
#> 2397   StreKe00           19952       5371         4
#> 2398   HursMa00           19921       5002         4
#> 2399   DaniDa04           22074       6975         2
#> 2400   JoneD.01           19124       4278         5
#> 2401   VandEd00           18967       4121         5
#> 2402   GiveKe01           20773       6005         3
#> 2403       <NA>           22400       7420         2
#> 2404   JuszKy00           14901       1379         9
#> 2405   HalaJo00           16044       1840         8
#> 2406 gouldrob01            1410         49        17
#> 2407   NzeoMa00           16995       2535         7
#> 2408   HarrMa03           20000       5370         4
#> 2409   FlanDe00           21354       6610         3
#> 2410   WarnFr00           19891       5041         4
#> 2411       <NA>              NA       8020         1
#> 2412   AlShAz00           21490       6485         3
#> 2413   GreeDr00           20778       6056         3
#> 2414   PeppTa00           18851       4846         5
#> 2415   TomlLa01           16789       2333         7
#> 2416       <NA>              NA       7654         1
#> 2417   MoorJa04              NA       7834         1
#> 2418   BrenJa01           18203       3439         6
#> 2419   CompTo00           14791       1310        10
#> 2420   McKiCo00           22023       6889         2
#> 2421       <NA>              NA       8034         1
#> 2422   BrunDa00           19139       4293         5
#> 2423   SkulJu00           21119       6221         3
#> 2424       <NA>           21230       6568         3
#> 2425   WishMi00           20996       6173         3
#> 2426   SudfNa00           18104       3343         6
#> 2427   GaroJi00           16041       1837         8
#> 2428   LancTr00              NA       7610         1
#> 2429       <NA>            9329       4914         1
#> 2430   MitcEl00              NA       7561         1
#> 2431   WilsJe01           20360       5284         4
#> 2432   CannTr00           20040       5123         4
#> 2433   HillBr02           19033       4187         5
#> 2434   MostRa00           17217       2749         7
#> 2435   SermTr00              NA       7593         1
#> 2436   HastJa02           21765       6996         2
#> 2437   WillTr21           12308        734        12
#> 2438       <NA>           19833       4966         4
#> 2439   DwelRo00           20361       5285         4
#> 2440   MattJo00           15974       1800         8
#> 2441   WoerCh00           22119       7075         2
#> 2442   HudsTa00           20506       5409         4
#> 2443   KittGe00           19063       4217         5
#> 2444       <NA>              NA       7954         1
#> 2445   JohnKe07           20835       5962         3
#> 2446   SanuMo00           13878       1071        10
#> 2447   SamuDe00           20932       5872         3
#> 2448   JennJa00           21717       7049         2
#> 2449   BenjTr00           13887       1077        10
#> 2450   MackAu01           21862       6873         2
#> 2451   JameRi00           20077       5137         4
#> 2452   AiyuBr00           21747       6803         2
#> 2453   SherTr00           20081       5154         4
#> 2454   JensRy00           14900       1378         9
#> 2455   SherRi00           13479        996        11
#> 2456   DesiPi00           16128       1902         8
#> 2457   BuntSe00           21050       6060         3
#> 2458   DelaDe00           20429       5658         4
#> 2459   DeanJa00           21064       5946         3
#> 2460   RobiRa00           18054       3293         6
#> 2461   DaviCa02           19892       5054         4
#> 2462   CockRo00           15988       1809         8
#> 2463   WrehBl00           14983       1423         9
#> 2464   WhitJo03           19954       5375         4
#> 2465       <NA>              NA       8065         1
#> 2466       <NA>              NA       7959         0
#> 2467       <NA>           20302       5449         4
#> 2468   AdamAn00           18576       3764         6
#> 2469   EdwaMi01           20748       5959         3
#> 2470   WinfAn00           21940       6888         2
#> 2471   OConPa00           19087       4241         5
#> 2472   GholWi00           15200       1558         9
#> 2473   PotoBe00           22434       7456         2
#> 2474       <NA>           22265       7267         2
#> 2475   McLeSt00           11767        667        13
#> 2476   SuhxNd99           11382        594        12
#> 2477       <NA>           22423       7444         2
#> 2478   VeaxVi00           19834       4969         4
#> 2479   NuneRa00           17512       2993         7
#> 2480       <NA>           22021       7413         2
#> 2481   StinAa00           20379       5668         4
#> 2482   MarpAl00           16822       2366         7
#> 2483       <NA>           22426       7448         2
#> 2484   CappAl00           19908       5053         4
#> 2485       <NA>              NA       7961         1
#> 2486   SuccRy44            8750        391        13
#> 2487   StuaGr00              NA       7750         1
#> 2488   BritKJ00              NA       7815         1
#> 2489   MintKe00           15227       1577         9
#> 2490       <NA>              NA       7963         1
#> 2491   NelsAn01           20894       6003         3
#> 2492   BarrSh00           16271       1999         8
#> 2493   GillCa00           22429       7451         2
#> 2494   WhitDe02           20981       6119         3
#> 2495   DaviLa00           14375       1192        10
#> 2496   TryoJo00              NA       7625         1
#> 2497   PierJa99           12247        720        12
#> 2498   SanbGa00            9700        471        13
#> 2499   TrinZa00           18825       4865         5
#> 2500       <NA>              NA       7962         1
#> 2501       <NA>           19741       4838         0
#> 2502       <NA>              NA       7689         1
#> 2503       <NA>           22462       7488         2
#> 2504       <NA>           22209       7206         2
#> 2505       <NA>              NA       7966         0
#> 2506   PiniBr00           16925       2468         7
#> 2507   HofrSt00           22144       7141         2
#> 2508       <NA>           15190       1550         9
#> 2509   GabbBl00           12982        862        11
#> 2510   BradTo00            4314        167        22
#> 2511       <NA>              NA       7605         1
#> 2512   JoneRo01           19861       5052         4
#> 2513   VaugKe00           21788       6885         2
#> 2514   BernGi00           14916       1386         9
#> 2515   FourLe00           18803       3969         5
#> 2516   BarnKe00           15185       1546         9
#> 2517   BellLe00           14967       1408         9
#> 2518   SmitDo02           16795       2339         7
#> 2519   WellJo02           16268       1997         8
#> 2520   WirfTr00           22033       6793         2
#> 2521   HowaO.00           18901       4055         5
#> 2522   BratCa00           16593       2214         8
#> 2523   GronRo00           10974        515        12
#> 2524   McElCo00           20314       5269         4
#> 2525   FellDa01           15247       1592         9
#> 2526       <NA>           22433       7455         2
#> 2527   GrayCy01           18896       4050         5
#> 2528   GodwCh00           18880       4037         5
#> 2529   BrowJo02           16640       2238         8
#> 2530   SmitVy00           20295       5260         4
#> 2531       <NA>              NA       7579         1
#> 2532       <NA>           22432       7454         2
#> 2533   JohnTy00           21675       6960         2
#> 2534   PerrBr02           16787       2331         7
#> 2535   EvanMi00           16597       2216         8
#> 2536   DardJa00              NA       7713         1
#> 2537   MillSc01           21138       6290         3
#> 2538       <NA>           20565       5514         1
#> 2539   JoneBe01           13969       1101        10
#> 2540   MunyDa00           17511       2992         7
#> 2541   MabiGr00           19344       4476         5
#> 2542   WillCh07           22153       7151         2
#> 2543   FultKr00           22084       6829         2
#> 2544   JenkJa03           14412       1203        10
#> 2545   BoddBr01           18239       3474         6
#> 2546   MeekQu00           20148       5188         4
#> 2547       <NA>           20711       5815         4
#> 2548   FarlCa00              NA       7632         1
#> 2549   MoldEl00              NA       7682         1
#> 2550   FarlMa00           18392       3605         6
#> 2551   SkriBu00           12881        837        11
#> 2552   HookAm00           20811       5908         3
#> 2553       <NA>           21920       6940         2
#> 2554   CartJa02           19591       4689         5
#> 2555   JackCh01           22152       7150         2
#> 2556       <NA>           21919       7304         2
#> 2557   CruiDa00           20001       5369         4
#> 2558   ByarKe01           17994       3233         6
#> 2559   AutrDe00           16310       2027         8
#> 2560   StroKe00           21536       6536         3
#> 2561   BledAm01           21033       6043         3
#> 2562   ColeTr01           18476       3676         6
#> 2563       <NA>           19612       4939         1
#> 2564       <NA>              NA       7853         1
#> 2565   SimmJe01           20940       6125         3
#> 2566   TartTe00           22422       7443         2
#> 2567   HandDa00           19934       5351         4
#> 2568   PekoKy00           18421       3633         6
#> 2569   MurcLa00           21880       6887         2
#> 2570   BlasKh00           21310       6379         3
#> 2571       <NA>              NA       7852         1
#> 2572   LeviCo00           19128       4282         5
#> 2573   SaffRo20           11545        623        12
#> 2574   DaviNa01           21060       5936         3
#> 2575   RoosJo00           19578       4677         5
#> 2576   FickSa00           18735       3909         6
#> 2577   BullRa00           13961       1099        10
#> 2578   ColeDy00           19496       4606         5
#> 2579   RobeDe01           21360       6581         3
#> 2580   DzubNi00           17123       2655         7
#> 2581   AdenOl00           20180       5183         4
#> 2582   WeavRa00              NA       7709         1
#> 2583   HallNa01           20783       6027         3
#> 2584   RiceMo00              NA       7683         1
#> 2585   CunnZa00           18956       4110         5
#> 2586   DuprAl00           16783       2327         7
#> 2587   LandHa00           19862       5030         4
#> 2588   LawlJu00           20068       5307         4
#> 2589   JoneJo05           19458       4572         5
#> 2590   SkipTu00           21578       6679         3
#> 2591   EvanRa01           19842       4978         4
#> 2592   BrowJa06           19066       4220         5
#> 2593   LongDa04           20862       5928         3
#> 2594   BellB.00           19441       4558         5
#> 2595       <NA>              NA       7740         1
#> 2596   CoxxMo00           11008        525        12
#> 2597   QuesDa00           14988       1428         9
#> 2598       <NA>              NA       7650         1
#> 2599       <NA>           22419       7440         2
#> 2600   LewaTa00           16172       1933         8
#> 2601   LammKe00           17490       2985         7
#> 2602   KernBr20           10067        497        14
#> 2603   TannRy00           13799       1049        10
#> 2604   HogaKe00           18079       3318         6
#> 2605   WoodLo00           20055       5128         4
#> 2606   EvanDa02           21845       7064         2
#> 2607   HillDo00           20566       5536         4
#> 2608   WilkJo01           19979       5100         4
#> 2609   McNiJe00           19065       4219         5
#> 2610   HenrDe00           17959       3198         6
#> 2611   ForeDO00           18957       4111         5
#> 2612       <NA>           22420       7441         2
#> 2613       <NA>           20268       5531         4
#> 2614   GrayDe01           20777       6028         3
#> 2615   PruiMy00           16903       2446         7
#> 2616   SwaiGe00           17005       2545         7
#> 2617       <NA>              NA       7903         1
#> 2618   FirkAn00           19296       4435         5
#> 2619   ErnsDo00           20370       5288         4
#> 2620       <NA>           22418       7439         2
#> 2621       <NA>           21369       6396         3
#> 2622   IzzoRy00           20069       5094         4
#> 2623   BatsCa00           20372       5289         4
#> 2624   MaloJo00           19006       4160         5
#> 2625       <NA>           20182       5223         4
#> 2626   JoneJu02           13291        947        11
#> 2627   RogeCh02           18361       3582         6
#> 2628   BrowAJ00           21042       5859         3
#> 2629   JohnMa07           18209       3445         6
#> 2630   WestNi00           21734       7496         2
#> 2631   McMaRa00              NA       7793         1
#> 2632   HollCo00           19280       4420         5
#> 2633   FitzDe00              NA       7729         1
#> 2634       <NA>           22415       7436         2
#> 2635       <NA>           19760       4860         5
#> 2636   RoulCh00           19134       4288         5
#> 2637   IsmaKe00           21945       6877         2
#> 2638   LarsTy00           16021       1826         8
#> 2639   McCaBo01           16905       2448         7
#> 2640   HaydDJ00           15067       1472         9
#> 2641   RobeDa00           17006       2546         7
#> 2642   McTyTo00           19254       4395         5
#> 2643   JackWi02           17945       3184         6
#> 2644   EldeCo00           19038       4192         5
#> 2645   JohnDa09           20395       5388         4
#> 2646   FullKe00           18013       3252         6
#> 2647   CollLa00           16794       2338         7
#> 2648   ForrDa00              NA       7827         1
#> 2649   EverDe01           17111       2643         7
#> 2650   CurlKa00           21923       7136         2
#> 2651   StJuBe00              NA       7671         1
#> 2652   ReavJe00           16072       5792         4
#> 2653   ApkeTr00           19955       5365         4
#> 2654       <NA>           20108       5626         4
#> 2655   SmitJa08           21875       7024         2
#> 2656   SweaMo00           20956       6124         3
#> 2657   ToohCa00           22104       7030         2
#> 2658       <NA>              NA       7764         1
#> 2659   YounCh04           22092       6782         2
#> 2660       <NA>           20827       5935         3
#> 2661   ToneSh00              NA       7760         1
#> 2662   OrchNa00           16812       2356         7
#> 2663   IoanMa01           18069       3308         6
#> 2664   BadaDa00           22393       7410         2
#> 2665   PaynDa00           19841       4976         4
#> 2666       <NA>           22452       7477         2
#> 2667       <NA>           21444       6423         3
#> 2668   SettTi00           20002       5366         4
#> 2669   WrigGa00           16874       2418         7
#> 2670   AlleJo01           18875       4032         5
#> 2671   ArmaAl00           19072       4226         5
#> 2672       <NA>              NA       8023         1
#> 2673       <NA>           21018       6114         3
#> 2674   CalhSh01           21266       6570         3
#> 2675   SchwWe00           18112       3351         6
#> 2676   BenzBe01           21030       5932         3
#> 2677   ScheBr00           16766       2310         7
#> 2678   SlyeJo00           21519       6528         3
#> 2679       <NA>              NA       8055         1
#> 2680   BostJo00           15113       1507         9
#> 2681   MayoDa00           16929       2472         7
#> 2682   HarrDe10           21991       7504         2
#> 2683   DaviJa11              NA       7634         1
#> 2684   NorrJa00           18279       3513         6
#> 2685   KunaJo00           21207       6307         3
#> 2686       <NA>              NA       7878         1
#> 2687   HudsKh00           22017       6937         2
#> 2688   HolcCo00           21120       6220         3
#> 2689   CheeCa00              NA       7778         1
#> 2690   CosmSa00              NA       7652         1
#> 2691   DougJa00           16875       2419         7
#> 2692       <NA>           20474       5405         4
#> 2693   WayxTr00           15112       1506         9
#> 2694   HeinTa00           17179       2711         7
#> 2695   AlleKy00           20053       5127         4
#> 2696   FitzRy00            8283        333        17
#> 2697   GilbGa01           16621       2229         8
#> 2698   McKiJ.00           18464       3664         6
#> 2699   BonnRe00           20103       5162         4
#> 2700   SmalWe00           18070       3309         6
#> 2701   WillJo07           18073       3312         6
#> 2702   GibsAn00           21861       6945         2
#> 2703   PattJa01              NA       7537         1
#> 2704   LenoCh00           16436       2112         8
#> 2705   CharSa00           22008       6862         2
#> 2706   FlowEr00           16770       2314         7
#> 2707   SteiDa00           20320       5683         4
#> 2708   LucaCo01           16458       2123         8
#> 2709       <NA>              NA       7622         1
#> 2710   SealRi00           19410       4531         5
#> 2711   ThomLo00           16656       2251         8
#> 2712       <NA>           19982       5103         4
#> 2713   BateJo00              NA       7716         1
#> 2714   HemiTe00           18094       3333         6
#> 2715   GandAn00           21742       6906         2
#> 2716   CartDe02           17218       2750         7
#> 2717   MilnDa00              NA       7751         1
#> 2718   SamuCu00           18928       4082         5
#> 2719   McLaTe00           20873       5927         3
#> 2720   SimsCa00           20529       5432         4
#> 2721   HarmKe00           20789       5884         3
#> 2722   HumpAd00           17290       2822         7
#> 2723   BrowDy00              NA       7587         1
#> 2724   MichMa00           18343       3568         6
#> 2725   PounMi00           13698       1023        11
#> 2726   RhanDe00           16629       2232         8
#> 2727   MagnEr00           19328       4462         5
#> 2728   NearAa00           18418       3631         6
#> 2729       <NA>           18186       3422         6
#> 2730   KaliRy20             423         12        15
#> 2731   EdisCo00           17821       3074         6
#> 2732   BergTo00           14088       1134        10
#> 2733   ShipA.20           13610       1011        13
#> 2734   DunnCa00           20636       5723         4
#> 2735       <NA>           21274       6576         3
#> 2736       <NA>           21154       6414         3
#> 2737   RichWe00           16400       2086         8
#> 2738   PounMa20           11062        537        12
#> 2739       <NA>           20546       5805         4
#> 2740   MorrPa00           20179       5182         4
#> 2741       <NA>           20814       6080         3
#> 2742   GradGi00           13838       1055        10
#> 2743   FredTr00           15083       1486         9
#> 2744       <NA>           21146       6607         3
#> 2745   StonJa02           16545       2181         6
#> 2746       <NA>           20377       5614         4
#> 2747   JohnTJ00           14923       1393         7
#> 2748       <NA>           19936       5319         4
#> 2749   EastAn01           17087       2619         7
#> 2750   KilgDa00           13444        981        11
#> 2751       <NA>           21292       6360         3
#> 2752       <NA>           16671       2260         8
#> 2753   SullJo24            7509        303        14
#> 2754   JohnWe00           16150       1918         8
#> 2755       <NA>           20319       5600         4
#> 2756   SwanTr00           16465       2128         8
#> 2757   HuntJo00           18131       3370         6
#> 2758       <NA>           20303       5472         4
#> 2759   BoehEv00           18049       3288         6
#> 2760       <NA>           21555       6589         3
#> 2761       <NA>           17506       2991         7
#> 2762       <NA>           20354       5562         4
#> 2763   FabiAn00           18289       3523         6
#> 2764   LongSp00           16417       2096         8
#> 2765   BondDe01           19174       4321         5
#> 2766       <NA>           21193       6281         3
#> 2767       <NA>           21438       6541         3
#> 2768   LundBr00           20353       5561         4
#> 2769       <NA>           19193       4337         5
#> 2770       <NA>           21159       6559         3
#> 2771   SchwBr00           14979       1419         9
#> 2772       <NA>           20299       5770         4
#> 2773       <NA>           19515       4773         5
#> 2774       <NA>           20551       5592         4
#> 2775       <NA>           18314       3544         6
#> 2776   BowaLu00           16246       1980         8
#> 2777   ReitAu00           16981       2521         7
#> 2778       <NA>           21455       6445         3
#> 2779       <NA>           20285       5482         4
#> 2780   UngeMa20            9392        460        13
#> 2781   BodiRu00           16104       1884         8
#> 2782       <NA>           19083       4237         5
#> 2783   HousDa00           13236        929        11
#> 2784   HatfDo00           19628       4720         5
#> 2785   CoopMa00           15234       1583         9
#> 2786   IworPr00           18165       3404         6
#> 2787   ReedKa00           17973       3212         6
#> 2788   StanJa00           21307       6349         3
#> 2789   RobiJo01           14631       1254        10
#> 2790       <NA>           20856       6034         3
#> 2791   AmerDa00           15096       1498         9
#> 2792   JoneDe02           19108       4262         5
#> 2793   SherMa20           12681        784        12
#> 2794   SoutDe00           16542       2178         6
#> 2795       <NA>           20594       5596         4
#> 2796   SensCo00           13949       1095        10
#> 2797   McFaLe00           14948       1404         7
#> 2798   ColvAa00           16249       1982         8
#> 2799   DaviVo99            9664        466        13
#> 2800   BlakAn00           14020       1115         8
#> 2801       <NA>           21073       5998         3
#> 2802   CartAl01           16841       2385         7
#> 2803       <NA>           21188       6255         3
#> 2804   RobiPa99           11493        617        12
#> 2805   McDoDe02           17001       2541         5
#> 2806       <NA>           18400       3613         6
#> 2807   LewiCh01           14721       1277         8
#> 2808   HawkJo00           18529       3721         6
#> 2809   BrowDo02           19231       4374         5
#> 2810       <NA>           20349       5471         4
#> 2811       <NA>           20614       5730         4
#> 2812   SheaDe00           14793       1311        10
#> 2813       <NA>           20692       5795         4
#> 2814   ColeXa00           19294       4433         5
#> 2815       <NA>           20671       5764         4
#> 2816   GrimBr20            6078        242        16
#> 2817   ButlMa01           16035       1834         8
#> 2818   NixoTa00           17010       2550         7
#> 2819   DixoTr01           17860       3108         7
#> 2820   LippTo00           16916       2459         7
#> 2821       <NA>           19625       4717         5
#> 2822   ScanOr99            6687        266        14
#> 2823   CarrBr99            2760        105        14
#> 2824       <NA>           18563       3751         6
#> 2825       <NA>           21509       6497         3
#> 2826   HursDe00           15105       1504         7
#> 2827   WillTr05           18202       3438         6
#> 2828   KingAk00           17008       2548         7
#> 2829       <NA>           19451       4567         5
#> 2830       <NA>           18546       3735         6
#> 2831   DorlMa00           18526       3718         6
#> 2832       <NA>           21479       6431         3
#> 2833   DunbQu00           17113       2645         7
#> 2834       <NA>           20918       6073         3
#> 2835       <NA>           18629       3813         6
#> 2836       <NA>           21251       6344         3
#> 2837   BarnAd01           18515       3709         6
#> 2838       <NA>           20397       5350         4
#> 2839   AckeKe00           16660       2253         6
#> 2840       <NA>           16214       1960         8
#> 2841   BurtDe00           19140       4294         5
#> 2842   HillJa01           19585       4684         5
#> 2843   ClaiMo00           14144       1145        10
#> 2844       <NA>           19743       4840         3
#> 2845   StroGr00           20080       5368         4
#> 2846   BrocTr00           11579        633        12
#> 2847       <NA>           21500       6624         3
#> 2848       <NA>           20216       5518         4
#> 2849   MaxwBy00           13472        993         9
#> 2850   McKiJe01           18511       3705         6
#> 2851   HolsJo01           19133       4287         5
#> 2852       <NA>           17495       2988         7
#> 2853   WhitD.00           18095       3334         6
#> 2854       <NA>           20365       5435         4
#> 2855       <NA>           19532       4637         5
#> 2856   NewmTe20            5916        235        17
#> 2857   SmitC.00           18594       3781         6
#> 2858       <NA>           21374       6630         3
#> 2859   TaylJa01           14878       1359         9
#> 2860   DecoTr00           19047       4201         5
#> 2861   TaylSh00           21346       6579         3
#> 2862       <NA>           21058       6042         3
#> 2863       <NA>           19696       4820         5
#> 2864   MoorSt00           13070        888         9
#> 2865       <NA>           20446       5400         4
#> 2866   BealSa00           20673       5766         4
#> 2867   CalhTa01           18294       3528         6
#> 2868       <NA>           18340       3565         6
#> 2869       <NA>           20324       5604         4
#> 2870   DurdKe00           18657       3837         6
#> 2871   MyriJa00           19092       4246         5
#> 2872       <NA>           21594       6695         3
#> 2873       <NA>           20593       5595         4
#> 2874       <NA>           19007       4161         5
#> 2875       <NA>           19284       4424         5
#> 2876   PipkLe00           19243       4386         5
#> 2877       <NA>           19607       4702         5
#> 2878   ElliJa01           18708       3886         6
#> 2879       <NA>           20531       5447         4
#> 2880   HillHo00           20164       5214         4
#> 2881       <NA>           19305       4444         5
#> 2882   SeamSa00           16098       1879         6
#> 2883       <NA>           20725       5832         3
#> 2884   ThorNe00           14730       1283        10
#> 2885       <NA>           21512       6499         3
#> 2886   WebbBW00           15086       1488         9
#> 2887   GoodDe00           16477       2138         8
#> 2888   BoykBr00           13718       1025         8
#> 2889       <NA>           21582       6683         3
#> 2890   WebsKa00           15041       1459         9
#> 2891   GayxWi99            4122        156        13
#> 2892       <NA>           20625       5713         4
#> 2893   GranDo00           16882       2426         5
#> 2894   ThomSi00           19971       5082         4
#> 2895   McDoDe00           16068       1858         8
#> 2896   ReavC.00           20461       5480         4
#> 2897   JohnLe03           14381       1194        10
#> 2898   HuntMi00           18578       3766         6
#> 2899   JoseJo20            4490        172        16
#> 2900   LewiRy01           19407       4529         5
#> 2901       <NA>           20530       5433         4
#> 2902       <NA>           19411       4532         5
#> 2903   WrigSh00           13104        897        11
#> 2904   RiceDe00           17229       2761         7
#> 2905       <NA>           18391       3604         6
#> 2906   RandDa00           16791       2335         7
#> 2907   McRaTo00           18661       3841         6
#> 2908   GainE.00           16620       2228         8
#> 2909       <NA>           19490       4601         5
#> 2910   TaliAq99            4701        180        14
#> 2911   DaniRo01           17353       2885         7
#> 2912   OlumDo00           20203       5492         4
#> 2913       <NA>           11731        657        17
#> 2914   RobeNi00           15469       1672         9
#> 2915   CollJa02           16803       2347         7
#> 2916       <NA>           19422       4543         5
#> 2917       <NA>           20022       5326         4
#> 2918   BurlMa00           15437       1662         7
#> 2919   PatmTy00           16372       2068         8
#> 2920   TankCo00           18980       4134         5
#> 2921   MageCr00           16844       2388         7
#> 2922       <NA>           21284       6614         3
#> 2923   MunnCa99            9169        441        13
#> 2924       <NA>           20427       5635         4
#> 2925       <NA>           20313       5421         4
#> 2926   ReedTr00           17281       2813         7
#> 2927       <NA>           18188       3424         6
#> 2928   RichJe02           18821       3986         5
#> 2929   JohnTr05           14414       1204        10
#> 2930       <NA>           21019       6054         3
#> 2931   HayeTa00           21210       6310         3
#> 2932       <NA>           20254       5679         4
#> 2933   MillHa00           18122       3361         6
#> 2934   KirkDr00           13871       1068        10
#> 2935   JoneCy00           17990       3229         6
#> 2936       <NA>           21121       6299         3
#> 2937   BenwBe00           16551       2183         8
#> 2938   NelsRo00           16137       1909         6
#> 2939       <NA>           21416       6620         3
#> 2940   WillTr99            3942        146        16
#> 2941   HallLe98            1650         56        15
#> 2942   BankJo00           15199       1557         7
#> 2943   NichDe00           20086       5159         4
#> 2944   JeanSt00           16577       2204         8
#> 2945   RodgDo99            2556         95        14
#> 2946   GainPh00           16297       2017         8
#> 2947       <NA>           19362       4492         5
#> 2948   JohnKe04           16777       2321         7
#> 2949   RollQu00           16823       2367         7
#> 2950       <NA>           20486       5694         4
#> 2951       <NA>           21148       6226         3
#> 2952   BadeJo00           13886       1076        10
#> 2953   DossLo00           16924       2467         7
#> 2954   CaldTr00           18090       3329         6
#> 2955       <NA>           20666       5758         4
#> 2956   RiosMa00           19474       4587         5
#> 2957       <NA>           20307       5579         4
#> 2958       <NA>           20558       5451         4
#> 2959   PhilDa00           16374       2070         6
#> 2960   GuntLa00           17247       2779         5
#> 2961       <NA>           18252       3487         6
#> 2962   LukeCo00           19216       4359         5
#> 2963   ShieSa00           11402        602        12
#> 2964       <NA>           19346       4478         5
#> 2965   HillDa02           18491       3691         6
#> 2966   SimsLe00           18074       3313         6
#> 2967       <NA>           19270       4410         5
#> 2968       <NA>           19697       4789         5
#> 2969   ReasKe00           16675       2264         6
#> 2970       <NA>           20132       5686         4
#> 2971   VernAl99           11096        540        10
#> 2972   ConlGa00           18903       4057         5
#> 2973       <NA>           20685       5783         4
#> 2974       <NA>           21189       6256         3
#> 2975   IlokGe00           13868       1066        10
#> 2976   HillDe02           18987       4141         5
#> 2977   GilcMa00           13085        893        11
#> 2978   AmukPr00           13135        908        11
#> 2979       <NA>           21522       6641         3
#> 2980       <NA>           20431       5578         4
#> 2981   GaulRa00           19869       5050         4
#> 2982   HassJT00           21476       6429         3
#> 2983   HoldAl01           20807       6104         3
#> 2984   MeliOb00           18966       4120         5
#> 2985       <NA>           21553       6582         3
#> 2986   BostTr00           16552       2184         8
#> 2987       <NA>           21002       6087         3
#> 2988   McMaSh99           11107        545        12
#> 2989       <NA>           21505       6521         3
#> 2990       <NA>           21557       6668         3
#> 2991   RileCu00           17488       2983         7
#> 2992       <NA>           18687       3865         6
#> 2993       <NA>           21229       6324         3
#> 2994       <NA>           20143       5229         4
#> 2995       <NA>           21583       6684         3
#> 2996   GreeRa02           20293       5545         4
#> 2997       <NA>           21625       6707         3
#> 2998       <NA>           20435       5417         4
#> 2999       <NA>           19259       4400         5
#> 3000   JackBe00           16396       2083         8
#> 3001   LucaJo00           18121       3360         6
#> 3002   HampSa00           20785       6013         3
#> 3003   HartMo01           20794       6090         3
#> 3004   HollNa00           20665       5759         4
#> 3005   VirgDe00           19511       4619         5
#> 3006   GeatCl00           16870       2414         7
#> 3007       <NA>           20962       6184         3
#> 3008       <NA>           21567       6672         3
#> 3009       <NA>           21437       6636         3
#> 3010   JenkJa01           13165        916        11
#> 3011       <NA>           20628       5701         4
#> 3012   BeasVi00           16769       2313         7
#> 3013       <NA>           19650       4735         5
#> 3014       <NA>           20130       5684         4
#> 3015   SmitAl04           13453        986        11
#> 3016   SpeaBr00           19858       5037         4
#> 3017       <NA>           18779       3946         6
#> 3018   DareMa00           12725        795        11
#> 3019   HolmTy01           18098       3337         6
#> 3020   LongCh99            7802        318        14
#> 3021   LaniAn00           18453       3659         6
#> 3022   ClarWi00           16105       1885         8
#> 3023       <NA>           21304       6346         3
#> 3024       <NA>           20651       5742         4
#> 3025   LangKe98            2158         75        12
#> 3026   JohnMi98            8435        354        13
#> 3027       <NA>           20410       5502         4
#> 3028   LawsSh00           17943       3182         6
#> 3029   RuckFr99            1214         42        16
#> 3030       <NA>           20683       5780         4
#> 3031       <NA>           20232       5504         4
#> 3032       <NA>           20084       5157         4
#> 3033       <NA>           16017       1823         8
#> 3034   ReyeKe00           14135       1143         8
#> 3035   HayeWi99            3808        139        14
#> 3036   TappCh00           18024       3263         6
#> 3037   HoodEv99            8507        361        13
#> 3038   DelaRy00           17054       2589         7
#> 3039   JohnGe00           12626        779        10
#> 3040       <NA>           20109       5627         4
#> 3041   RussRy00           16923       2466         5
#> 3042   MoorZa00           16050       1843         8
#> 3043       <NA>           21415       6518         3
#> 3044   JackBr04           18689       3867         6
#> 3045   WortJe00           14299       1179        10
#> 3046   ValoJe00           19492       4603         5
#> 3047       <NA>           20495       5446         4
#> 3048   CapiNo00           17204       2736         7
#> 3049   PhilCa00           19526       4632         5
#> 3050       <NA>           21314       6383         3
#> 3051   IrviDa00           17747       3040         7
#> 3052   WaltLe00           16959       2500         7
#> 3053       <NA>           19196       4340         5
#> 3054   CarrCo00           15233       1582         9
#> 3055   SmitMa03           15978       1803         8
#> 3056   GrisGe00           16858       2402         7
#> 3057   EalyKo00           16555       2187         8
#> 3058       <NA>           19384       4512         5
#> 3059       <NA>           20151       5200         4
#> 3060       <NA>           20676       5771         4
#> 3061       <NA>           20693       5794         4
#> 3062   PeppJu99           11977        684        20
#> 3063   ZettAn00           18119       3358         6
#> 3064   TasiPa00           19413       4534         5
#> 3065       <NA>           19167       4315         5
#> 3066   LoewMi00           18403       3616         6
#> 3067   KikaHa00           16805       2349         5
#> 3068   MataHe00           20162       5212         4
#> 3069   VaeaDe01           18597       3784         6
#> 3070       <NA>           21441       6543         3
#> 3071   ShelDe00           14645       1258        10
#> 3072       <NA>           19703       4793         5
#> 3073       <NA>           19239       4382         5
#> 3074       <NA>           18185       3421         6
#> 3075       <NA>           21099       6198         3
#> 3076   EdebKa00           16570       2199         8
#> 3077   McCaCh00           16023       1828         6
#> 3078   AnsaEz00           15122       1513         9
#> 3079       <NA>           20716       5825         3
#> 3080   CurrVi00           13722       1028        10
#> 3081   SmitJa01           15843       1773        10
#> 3082   WakeCa00            8343        342        17
#> 3083       <NA>           19549       4652         5
#> 3084   SheaJa00           12880        836        11
#> 3085       <NA>           14729       1282         8
#> 3086       <NA>           20035       5336         4
#> 3087       <NA>           20146       5186         4
#> 3088       <NA>           21212       6312         3
#> 3089   HortWe00            4175        161         9
#> 3090   VernOl00           14646       1259        10
#> 3091       <NA>           20101       5152         4
#> 3092       <NA>           21540       6649         3
#> 3093       <NA>           21303       6345         3
#> 3094   McCrRo00           20592       5591         4
#> 3095       <NA>           19476       4589         5
#> 3096       <NA>           19450       4566         5
#> 3097   BranCa00           19077       4231         5
#> 3098       <NA>           20497       5788         4
#> 3099       <NA>           21322       6377         3
#> 3100   DaviKe03           19727       4819         5
#> 3101       <NA>           18607       3793         6
#> 3102       <NA>           20455       5522         4
#> 3103   MurpTr00           16420       2099         8
#> 3104   JordDi00           14875       1356         9
#> 3105       <NA>            9994        495        13
#> 3106       <NA>           21570       6660         3
#> 3107   FedeTe00           16010       1820         6
#> 3108   McDoCl99           12460        757        13
#> 3109   SickGa00           19188       4332         5
#> 3110   WilkMu00           12806        819        11
#> 3111       <NA>           19170       4317         5
#> 3112   OstmJo00           20176       5179         4
#> 3113       <NA>           21432       6545         3
#> 3114   LeexEr00           18541       3731         6
#> 3115   ForrJo00           18107       3346         6
#> 3116       <NA>           21285       6447         3
#> 3117       <NA>           20235       5506         4
#> 3118   UnreMi00           13576       1006        10
#> 3119       <NA>           21458       6556         3
#> 3120   BryaAr00           14946       1402         7
#> 3121       <NA>           20627       5702         4
#> 3122       <NA>           20356       5422         4
#> 3123   MossAv00           19056       4210         5
#> 3124   GuntRo00           16877       2421         7
#> 3125       <NA>           20586       5568         4
#> 3126   KingDa00           15562       1697         7
#> 3127   ThomCh06           19874       5019         4
#> 3128   WynnKe00           16403       2089         8
#> 3129   JohnCa01           14827       1328         8
#> 3130       <NA>           19744       4841         5
#> 3131       <NA>           21525       6608         3
#> 3132   BailAl00           13029        875        11
#> 3133   WynnJo00           20448       5402         4
#> 3134   CrawTy00           14146       1146        10
#> 3135       <NA>           20371       5410         4
#> 3136   ClayAd00           13355        961        11
#> 3137   BrowFa00           19303       4442         5
#> 3138   RobiBr98            7202        285        13
#> 3139       <NA>           20322       5602         4
#> 3140       <NA>           21431       6604         3
#> 3141       <NA>           20190       5219         4
#> 3142       <NA>           21250       6369         3
#> 3143       <NA>           21428       6463         3
#> 3144       <NA>           20323       5603         4
#> 3145   JarvRi00           20442       5500         4
#> 3146       <NA>           21273       6575         3
#> 3147       <NA>           20140       5205         4
#> 3148       <NA>           21446       6422         3
#> 3149   ParrDa00           16911       2454         7
#> 3150       <NA>           19232       4375         5
#> 3151   BromJa00           16391       2080         8
#> 3152   SenaDe00           19899       5042         4
#> 3153   SizeDe00           21559       6584         3
#> 3154   CharSt00            2232         79         7
#> 3155       <NA>           20119       5778         4
#> 3156   JohnTo01           13664       1017        16
#> 3157   JoneDa03           15137       1526         9
#> 3158   PoexDo00           14081       1131        10
#> 3159       <NA>           19533       4638         5
#> 3160   NealLe00           19460       4573         5
#> 3161       <NA>           20278       5689         4
#> 3162   AtkiJo01           20330       5659         4
#> 3163       <NA>           20110       5628         4
#> 3164   MitcEa99           11108        546        12
#> 3165   MbuxJo01           17095       2627         5
#> 3166       <NA>           21626       6708         3
#> 3167   GlasRy00           19005       4159         5
#> 3168   SiliSe00           13451        985         9
#> 3169   WinnBi00           13911       1086        10
#> 3170   LambDa01           18380       3597         6
#> 3171   JeanRi99            9828        487        13
#> 3172   NgatHa20            7680        314        16
#> 3173       <NA>           20345       5589         4
#> 3174   WillXa00           17136       2668         7
#> 3175   BennMi01           16940       2482         7
#> 3176   JoneAb00           15441       1663         9
#> 3177   SmitGa01           16026       1830         8
#> 3178   LewiKa00           14902       1380         9
#> 3179       <NA>           19427       4547         5
#> 3180   JoneNa00           18988       4142         5
#> 3181   JohnTo02           17284       2816         7
#> 3182   WillKy20            2550         94        16
#> 3183   WillSy00           15042       1460         9
#> 3184   MedeJa00           16091       1874         8
#> 3185       <NA>           21561       6587         3
#> 3186   JernTi00           16088       1872         8
#> 3187   WarmJu00           16213       1959         8
#> 3188       <NA>           19713       4799         5
#> 3189   JoneCh04           14991       1430         9
#> 3190       <NA>           21398       6404         1
#> 3191   AtkiGe99           11021        528        12
#> 3192   PierOl00           17529       3000         7
#> 3193       <NA>           20617       5696         4
#> 3194       <NA>           20315       5426         4
#> 3195   WalkTy00           14369       1190        10
#> 3196       <NA>           20691       5789         4
#> 3197       <NA>           20408       5501         4
#> 3198   HallP.00           19889       5066         4
#> 3199   HatlRi00           19502       4612         5
#> 3200       <NA>           21350       6500         3
#> 3201   PittJa00           20321       5601         4
#> 3202       <NA>           20244       5458         4
#> 3203       <NA>           21313       6382         3
#> 3204       <NA>           17538       3005         7
#> 3205   HarrDa03           13816       1053        10
#> 3206       <NA>           21412       6534         3
#> 3207       <NA>           20105       5513         4
#> 3208   QualEl00           19114       4268         5
#> 3209   LiugCo00           13091        894        11
#> 3210   FranA.00           15389       1646         7
#> 3211       <NA>           20201       5491         4
#> 3212   MackDa00           20866       6048         3
#> 3213   SokoKr00           16974       2515         5
#> 3214   MaxeJo00           18325       3553         6
#> 3215       <NA>           21028       5925         3
#> 3216       <NA>           18277       3511         6
#> 3217   LawrDe02           19373       4501         5
#> 3218   PekoDo20            5929        236        16
#> 3219   HenrWi00           18053       3292         6
#> 3220   RossDa02           19508       4617         5
#> 3221   RubiAh99            4096        153        12
#> 3222       <NA>           16896       2439         5
#> 3223   WashAd00           18010       3249         6
#> 3224       <NA>           20181       5184         4
#> 3225       <NA>           20522       5497         4
#> 3226   HageRa00           16526       2170         6
#> 3227   ThorCe00           12716        791         9
#> 3228   TaylJu00           20045       5373         4
#> 3229       <NA>           19389       4517         5
#> 3230       <NA>           20358       5563         4
#> 3231       <NA>           17298       2830         5
#> 3232   IvieJo00           19082       4236         5
#> 3233   McClTe00           13319        953        11
#> 3234   ShorKa00           15189       1549         9
#> 3235       <NA>           18537       3728         6
#> 3236   CoopXa00           16857       2401         5
#> 3237   McGeSt01           15069       1474         9
#> 3238       <NA>           21184       6251         3
#> 3239       <NA>           16425       2102         8
#> 3240   EullKa00           17319       2851         5
#> 3241   PalmWa01           21242       6335         3
#> 3242   SuttWi00           16444       2115         6
#> 3243   KilgDa01           16963       2504         7
#> 3244   BarnT.00           15435       1661         7
#> 3245       <NA>           21487       6488         3
#> 3246   CaseJu00           12912        846        11
#> 3247   HestTr00           19110       4264         5
#> 3248       <NA>           20312       5420         4
#> 3249       <NA>           21231       6325         3
#> 3250       <NA>           21532       6599         3
#> 3251   BohaTo00           14891       1369         9
#> 3252       <NA>           18713       3891         6
#> 3253   OrtiRi00           19206       4350         5
#> 3254   SmitSh02           19541       4646         5
#> 3255   KerrJo00           18452       3658         6
#> 3256   GronGl01           18275       3509         6
#> 3257       <NA>           19573       4673         5
#> 3258       <NA>           20568       5560         4
#> 3259   OlawJa00           14789       1308        10
#> 3260   ProsJa00           16210       1956         6
#> 3261       <NA>           19096       4250         5
#> 3262   FowlJa00           16869       2413         7
#> 3263   ColeDe00           15631       1716        10
#> 3264   DeveJa00           14783       1303        11
#> 3265       <NA>           21365       6435         3
#> 3266   CrosAl00           18376       3595         6
#> 3267       <NA>           20587       5586         4
#> 3268   LineZa01           15555       1693         9
#> 3269       <NA>           15191       1551         7
#> 3270   VitaDa00           18114       3353         6
#> 3271   RipkAa00           16966       2507         5
#> 3272       <NA>           20405       5353         4
#> 3273   NixxRo01           16534       2174         8
#> 3274   DiMaPa00           14786       1305        11
#> 3275       <NA>           20389       5296         4
#> 3276   CoxxCh01           21132       6298         3
#> 3277   JohnMa06           16955       2496         7
#> 3278       <NA>           20223       5240         4
#> 3279       <NA>           20092       5145         4
#> 3280   TupoTa01           18636       3819         6
#> 3281   HalxAn00           16203       1952         8
#> 3282   TandKe00           14391       1196        10
#> 3283       <NA>           19283       4423         5
#> 3284       <NA>           19525       4631         5
#> 3285   ContCh00           13188        923        11
#> 3286       <NA>           21546       6654         3
#> 3287   ScotTi00           17260       2792         7
#> 3288       <NA>           20470       5394         4
#> 3289   BricKe00           18524       3716         6
#> 3290       <NA>           19103       4257         5
#> 3291   ThomDy01           19478       4591         5
#> 3292       <NA>           17093       2625         7
#> 3293   EvanMa00           18647       3828         6
#> 3294   BerhNa00           16390       2079         8
#> 3295   WhitJe02           17565       3016         7
#> 3296   LewiKe00           12212        713        12
#> 3297       <NA>           20612       5650         4
#> 3298       <NA>           18372       3592         6
#> 3299   JoneCo01           13442        979        11
#> 3300   ClarJe04           19107       4261         5
#> 3301       <NA>           21574       6675         3
#> 3302       <NA>           17165       2697         7
#> 3303   ColeKu99           11311        581        12
#> 3304   HuffMa00           16168       1930         6
#> 3305   GrahCo99            6853        273        15
#> 3306   ThomEa99           11612        643        12
#> 3307   BlacWi20           12453        755        14
#> 3308       <NA>            2104         74        18
#> 3309       <NA>           21091       6189         3
#> 3310       <NA>           20272       5535         4
#> 3311       <NA>           21066       5897         3
#> 3312   StewDa00           11548        625        12
#> 3313   TrawBr00           15433       1660         9
#> 3314   KindDe00           18050       3289         6
#> 3315   SmitFi00           19197       4341         5
#> 3316   MileRo00           15280       1608         9
#> 3317   JeroLo00           19327       4461         5
#> 3318       <NA>           20532       5434         4
#> 3319   TerrSt00           15453       1667         7
#> 3320   BethAn20            2379         88        16
#> 3321   CromMa01           15311       1623         7
#> 3322   CareDo00           11154        555        13
#> 3323   QuinGl99            8593        375        13
#> 3324       <NA>           20165       5215         4
#> 3325       <NA>           17108       2640         7
#> 3326       <NA>           21069       5999         3
#> 3327       <NA>           21236       6330         3
#> 3328   NelsRe99           12167        704        15
#> 3329   MitcMi99            8776        395        13
#> 3330       <NA>           19151       4303         5
#> 3331       <NA>           19366       4496         5
#> 3332       <NA>           20638       5712         4
#> 3333   JoneRe99           12215        714        12
#> 3334       <NA>           21334       6355         3
#> 3335       <NA>           21209       6309         3
#> 3336   MoorKa01           19991       5083         4
#> 3337   BlanRo00           14440       1209         8
#> 3338   KellKa02           20127       5489         4
#> 3339       <NA>           21499       6512         3
#> 3340       <NA>           20348       5594         4
#> 3341   ParkRo01           13476        995        11
#> 3342   LadlKe00           16000       1815         8
#> 3343   McQuLe01           19094       4248         5
#> 3344       <NA>           20608       5681         4
#> 3345       <NA>           20509       5739         4
#> 3346       <NA>           21518       6527         3
#> 3347       <NA>           21552       6667         3
#> 3348   GettAd00           14256       1168        10
#> 3349       <NA>           20344       5469         4
#> 3350       <NA>           16677       2266         8
#> 3351       <NA>           19321       4457         5
#> 3352       <NA>           19285       4425         5
#> 3353       <NA>           21047       6113         3
#> 3354   LeexCa01           19374       4502         5
#> 3355   PersMi00           13448        983        11
#> 3356       <NA>           21265       6537         3
#> 3357       <NA>           19462       4575         5
#> 3358   BaldAl01           18287       3521         6
#> 3359   WestLe00           18386       3601         6
#> 3360   WichCo00           16975       2516         5
#> 3361   LeRiJo00           14605       1248        10
#> 3362       <NA>           19002       4156         5
#> 3363       <NA>           19088       4242         5
#> 3364   LearRo00           14826       1327        10
#> 3365   HearTa00           20257       5510         4
#> 3366   IupaMi20           11585        635        12
#> 3367       <NA>           16590       2212         8
#> 3368   WarmCh00           14981       1421         9
#> 3369       <NA>           19418       4539         5
#> 3370   BushJe20            7098        280        15
#> 3371   FostRa21            8504        360        13
#> 3372       <NA>           19521       4627         5
#> 3373       <NA>           21565       6671         3
#> 3374   BeadZa20           11178        556        12
#> 3375   WitzBr00           16215       1961         8
#> 3376       <NA>           21433       6516         3
#> 3377   CataTy00           19171       4318         5
#> 3378   WatsMe00           15073       1478         9
#> 3379       <NA>           20485       5693         4
#> 3380   CrosCo00           19277       4417         5
#> 3381       <NA>           18531       3723         6
#> 3382   BellBy00           13310        951        11
#> 3383       <NA>           19040       4194         5
#> 3384   MahoBr00           20104       5512         4
#> 3385       <NA>            9042        422        13
#> 3386   MarzTy01           18436       3645         6
#> 3387   BoliCl00           12838        828        11
#> 3388   GroyRy00           16433       2109         8
#> 3389   SilaAm00           14345       1184        10
#> 3390       <NA>           19470       4583         5
#> 3391       <NA>           19363       4493         5
#> 3392   JohnKa02           17458       2967         5
#> 3393       <NA>           20208       5599         4
#> 3394   DucaVl20           10994        522        12
#> 3395       <NA>           21648       6725         3
#> 3396   TillAn01           14367       1188         8
#> 3397   CoopJo01           15223       1574         9
#> 3398       <NA>           21477       6520         3
#> 3399       <NA>           19000       4154         5
#> 3400       <NA>           21180       6561         3
#> 3401       <NA>           21461       6478         3
#> 3402   LeviAn20            8296        334        13
#> 3403   SlauMa20            8419        351        13
#> 3404   SirlJe00           16349       2053         8
#> 3405   KirkDe00           18672       3851         6
#> 3406       <NA>           18169       3408         6
#> 3407       <NA>           21170       6486         3
#> 3408   LiedMi00           17451       2964         7
#> 3409   SilbIa00           16950       2491         7
#> 3410       <NA>           16483       6718         8
#> 3411   WagnRi00           14905       1382         9
#> 3412   BrowJa04           16833       2377         7
#> 3413       <NA>           21544       6652         3
#> 3414   WestCh02           18078       3317         6
#> 3415   DranSp00           18085       3324         6
#> 3416       <NA>           16596       2215         8
#> 3417   FuscBr00           13261        939        11
#> 3418       <NA>           21664       6747         3
#> 3419   AsiaIs00           19052       4206         5
#> 3420       <NA>           20407       5553         4
#> 3421   PampKe00           16604       2220         8
#> 3422       <NA>           21321       6418         3
#> 3423   KlinJo01           15410       1653         9
#> 3424       <NA>           19210       4354         5
#> 3425   TurnLa00           18273       3507         6
#> 3426       <NA>           20276       5688         4
#> 3427       <NA>           18591       3778         6
#> 3428   KeriZa00           16507       2160         8
#> 3429       <NA>           20571       5538         4
#> 3430   PricGi00           18397       3610         6
#> 3431   EhinPa00           18028       3267         6
#> 3432       <NA>           20543       5656         4
#> 3433       <NA>           20058       5309         4
#> 3434   WarfLa00           15128       1519         9
#> 3435       <NA>           17756       3044         7
#> 3436       <NA>           20259       5631         4
#> 3437       <NA>           19039       4193         5
#> 3438   GoldZa00           20425       5412         4
#> 3439       <NA>           19334       4467         5
#> 3440       <NA>           20615       5731         4
#> 3441       <NA>           21339       6525         3
#> 3442   DahlJo00           18068       3307         6
#> 3443       <NA>           20843       6062         3
#> 3444   KaliKy00           19195       4339         5
#> 3445   KouaAr00           16873       2417         5
#> 3446   TobiMa00           14852       1335         9
#> 3447       <NA>           18196       3432         6
#> 3448       <NA>           17496       2989         7
#> 3449   PaszAu00           14813       1318        10
#> 3450       <NA>           21430       6513         3
#> 3451       <NA>           20062       5621         4
#> 3452   LangT.20            9050        424        13
#> 3453       <NA>           21572       6673         3
#> 3454   WiggKe00           15672       1730        11
#> 3455   JoneSa00           19974       5093         4
#> 3456       <NA>           21628       6709         3
#> 3457   YandMa20            7459        301        15
#> 3458       <NA>           20439       5499         4
#> 3459       <NA>           20267       5782         4
#> 3460       <NA>           18579       3767         6
#> 3461   GrecJo20            7815        319        14
#> 3462       <NA>           20483       5440         4
#> 3463   WalkJo00           16241       1977         8
#> 3464   SittJo20            3339        124        14
#> 3465   LauvSh20           11046        532        12
#> 3466   BarcDo00           14273       1172         8
#> 3467       <NA>           19722       4809         5
#> 3468   JerrJo20           10956        509        12
#> 3469       <NA>           15430       1659         9
#> 3470       <NA>           19678       4760         5
#> 3471       <NA>           20465       5523         4
#> 3472       <NA>           20256       5509         4
#> 3473   VujnJe00           16494       2149         8
#> 3474   ThorHu00           15008       1439         7
#> 3475   AlleJe01           14061       1129        10
#> 3476   ToraNa00           20523       5438         4
#> 3477       <NA>           20590       5584         5
#> 3478       <NA>           19227       4370         5
#> 3479   EastNi00           17457       2966         7
#> 3480   GarnJo00           17940       3179         6
#> 3481       <NA>           20454       5404         4
#> 3482       <NA>           21471       6471         1
#> 3483   ScotCh23           12490        759        10
#> 3484   TauaJo00           20958       6160         3
#> 3485   WrigSc00           18166       3405         6
#> 3486       <NA>           20459       5478         4
#> 3487   BradBa00           19201       4345         5
#> 3488       <NA>           20205       5676         4
#> 3489       <NA>           20720       5826         3
#> 3490       <NA>           20657       5748         4
#> 3491   GarcJe01           19468       4581         5
#> 3492       <NA>           20287       5542         4
#> 3493       <NA>           20197       5172         4
#> 3494   AndeZa01           17158       2690         7
#> 3495   WorlCh00           20115       5641         4
#> 3496       <NA>           20291       5544         4
#> 3497       <NA>           21305       6347         3
#> 3498   PeteOt00           19576       4675         5
#> 3499   BellBr01           19218       4361         5
#> 3500       <NA>           20575       5574         4
#> 3501       <NA>           20855       6061         3
#> 3502   ThomAh00           19312       4859         5
#> 3503   BradCa01           16471       2134         8
#> 3504       <NA>           20832       6079         3
#> 3505   BighAd00           18827       3990         5
#> 3506       <NA>           20114       5640         4
#> 3507   SankDa00           18738       3912         6
#> 3508       <NA>           20739       6085         3
#> 3509   BullRi00           19338       4470         5
#> 3510       <NA>           20261       5633         4
#> 3511       <NA>           20851       5896         3
#> 3512   BeckKe00           18989       4143         5
#> 3513       <NA>           20630       5735         4
#> 3514   FlowMa00           16109       1889         8
#> 3515       <NA>           19634       4724         5
#> 3516   WintAn00           20579       5581         4
#> 3517       <NA>           21288       6533         3
#> 3518   HarrNi00           19563       4664         5
#> 3519       <NA>           21034       6099         3
#> 3520   BateTr00           18155       3394         6
#> 3521       <NA>           21267       6571         3
#> 3522       <NA>           21068       6046         3
#> 3523       <NA>           20260       5632         4
#> 3524       <NA>           20548       5557         4
#> 3525   MorrAn01           18046       3285         6
#> 3526   BrotKe00           18077       3316         6
#> 3527   BierKe00           20017       5338         4
#> 3528       <NA>           19385       4513         5
#> 3529 janikseb01            3253        118        22
#> 3530   RoseNi00           18473       3673         6
#> 3531   BailDa00           13109        899        11
#> 3532 dawsophi01            5714        229        24
#> 3533   CoonTr00           16164       1929         6
#> 3534 nugenmik01           11735        658        17
#> 3535   HausSt00           12594        775        14
#> 3536   McCrMa00           20466       5386         4
#> 3537       <NA>           20238       5247         4
#> 3538       <NA>           18619       3805         6
#> 3539       <NA>           21508       6496         3
#> 3540   TaveGi00           15758       1750        10
#> 3541   LambJo00           17139       2671         7
#> 3542   SturCa00           14877       1358         9
#> 3543   KoehMa00           18255       3490         6
#> 3544   ForbKa00           14740       1287        11
#> 3545   AguaRo00           17962       3201         6
#> 3546 vinatada01            3258        120        26
#> 3547   CataCh00           16644       2242         8
#> 3548  barthco01           10092        499        12
#> 3549   ParkCo03           16236       1974         8
#> 3550   WalsBl00           14463       1214        10
#> 3551   GostSt20            2982        110        16
#> 3552       <NA>           18231       3467         6
#> 3553 bryanmat01            3388        127        20
#> 3554 novaknic01            4354        168        15
#> 3555   VedvKa00           20248       5460         4
#> 3556   HerzMa00           13140        909         9
#> 3557   AndeRy00           18943       4097         5
#> 3558   GeorJe01           16065       1856         6
#> 3559   ShelBr01           19679       4761         5
#> 3560   LyncCa00           17274       2806         7
#> 3561   CichJa00           20046       5376         4
#> 3562   KuecLu00           14338       1181        10
#> 3563   WhitTa00           14225       1160        10
#> 3564   SmitCa01           20944       6176         3
#> 3565   CoylBr00           16682       2271         8
#> 3566   WorrPa00           15176       1539         9
#> 3567   CartBr00           13112        901        11
#> 3568   BarrLa00           16272       2000         6
#> 3569   FostMa00           13358        962        11
#> 3570   AnthSt00           16792       2336         7
#> 3571   ZombFr00           12195        708        12
#> 3572   WoodWe20            5334        210        14
#> 3573       <NA>           20258       5511         4
#> 3574   WilsRa00           16879       2423         7
#> 3575   BarrSa00           15132       1522         7
#> 3576   StupNa01           15669       1729        10
#> 3577   PeteBr00           17188       2720         7
#> 3578   HarvJo01           19132       4286         5
#> 3579       <NA>           21219       6316         3
#> 3580   ArmbTh00           17203       2735         7
#> 3581   MartJo02           15301       1616         9
#> 3582   LamuEm00           14750       1291        10
#> 3583   BrowJa05           18092       3331         6
#> 3584       <NA>           20458       5477         4
#> 3585   HumbRa00           12562        772        13
#> 3586   WaldEr99           12424        750        12
#> 3587   BrowZa00           13941       1093        10
#> 3588   BarrMa00           14635       1255        10
#> 3589   ToomKo00            8003        325        10
#> 3590   FreeJo01           12753        803         9
#> 3591   AlonKi00           14864       1345         9
#> 3592   BrowPr00           15986       1808         8
#> 3593   BassDa00           15065       1470         7
#> 3594       <NA>           21659       6741         3
#> 3595   AlexLo99           11940        678        17
#> 3596   KeyeJo00           17301       2833         7
#> 3597   GarvTe00           15530       1688         9
#> 3598   ChicAn00           16972       2513         7
#> 3599   CompWi00           15327       1626         9
#> 3600   MoatAr00           12157        702        10
#> 3601   SmitTe01           16266       1995         8
#> 3602   McClAl00           13520       1000        12
#> 3603   BucaDe00           16642       2240         8
#> 3604   EaslDo00           16037       1835         8
#> 3605       <NA>            1248         44        14
#> 3606   HarrTr01           20516       5664         4
#> 3607   JacoBe00           15703       1740        11
#> 3608   AlakOt01           21482       6432         3
#> 3609       <NA>           21357       6743         3
#> 3610   FostRe00           18873       4030         5
#> 3611   GrifSh01           19923       5003         4
#> 3612   MingBa00           14949       1405         9
#> 3613   PinkEr00           16691       2278         6
#> 3614   HullMi01           17044       2579         7
#> 3615   HollJe01           20129       5443         4
#> 3616   RayxSh00           16784       2328         7
#> 3617   LeexDa00           17951       3190         6
#> 3618   TaumPi00           19125       4279         5
#> 3619   MorgDe99           12305        732        12
#> 3620   MarsBr01           14032       1118        10
#> 3621   PalmNa01           15139       1528         7
#> 3622   WatsDe99           12063        690        12
#> 3623   ReyxVi00           12581        774        12
#> 3624   WillVi01           14975       1415         9
#> 3625   GilbRe01           18528       3720         6
#> 3626       <NA>           20215       5517         4
#> 3627   ArmsRa01           15827       1770         9
#> 3628       <NA>           20489       5496         4
#> 3629   NelsCo00           16280       2005         8
#> 3630   BranAn00           14021       1116        10
#> 3631   GoodNa00           14377       1193        10
#> 3632   PullHa00           16978       2518         7
#> 3633   MaulLo00           16843       2387         5
#> 3634       <NA>           20765       6096         3
#> 3635   AdeoAa00           21515       6544         3
#> 3636   BurfVo00           13860       1064        10
#> 3637   GerrNa00           19059       4213         5
#> 3638   GoodAh00           21361       6398         3
#> 3639   CorrKa00           17977       3216         6
#> 3640   BarwCo99            8565        371        13
#> 3641   WalkDA02           20972       6135         3
#> 3642       <NA>           21010       6020         3
#> 3643   VigiZa00           17144       2676         7
#> 3644   MillCh04           20877       5986         3
#> 3645   MillSh00           20879       5900         3
#> 3646   YounTr00           20029       5305         4
#> 3647   GedeBe00           19018       4172         5
#> 3648   SmitEm01           20096       5149         4
#> 3649   RyanJa00           16890       2434         7
#> 3650   JohnDe25            8231        329        17
#> 3651   AlexMa00           16613       2224         8
#> 3652   SuggTe99            7383        296        19
#> 3653   SpaiMa00           16901       2444         7
#> 3654   ThomCa02           17162       2694         5
#> 3655   TimuJo00           17175       2707         5
#> 3656   DownDe00           20036       5337         4
#> 3657   PerrNi00           14294       1177        10
#> 3658       <NA>           20677       5769         4
#> 3659   IrviIs00           19433       4552         5
#> 3660       <NA>           21186       6253         3
#> 3661       <NA>           20297       5673         4
#> 3662   ShepKe00           12742        799        11
#> 3663   MartKa00           16647       2244         8
#> 3664   WillAv00           16182       1940         8
#> 3665   BradNi00           13756       1040        10
#> 3666   MattCl99            9051        425        13
#> 3667   JacoLe00           20026       5315         4
#> 3668   SmitTe04           18180       3417         6
#> 3669       <NA>           21454       6530         3
#> 3670   PhilJu00           21450       6472         3
#> 3671   HodgGe00           15147       1532         9
#> 3672   HeenBe00           16900       2443         5
#> 3673   GoodB.00           18031       3270         6
#> 3674   KendMy00           13731       1032        10
#> 3675   DaviTh20            4895        187        17
#> 3676   LeexSe99           11276        576        12
#> 3677   CrawJa01           20099       5141         4
#> 3678   AlexD.00           16932       2475         7
#> 3679   RobeCr00           14711       1272        10
#> 3680   WillJo05           17098       2630         5
#> 3681   ReedBr00           12951        855        11
#> 3682   BurgJa01           18208       3444         6
#> 3683   WillTi00           18946       4100         5
#> 3684       <NA>           20583       5582         4
#> 3685       <NA>           21247       6340         3
#> 3686   PaynDo00           19208       4352         5
#> 3687   GracJe00           19160       4311         5
#> 3688   CoviCh01           20015       5331         4
#> 3689   HageBr00           16983       2523         7
#> 3690   AndeJo01           17172       2704         7
#> 3691   GwacOb00           16969       2510         5
#> 3692   TeoxMa00           15079       1482         9
#> 3693   OrakBr99            8950        414        13
#> 3694       <NA>           20687       5784         4
#> 3695       <NA>           21457       6531         3
#> 3696       <NA>           21592       6693         3
#> 3697   HaroEl00           16840       2384         7
#> 3698   AchoSa00           13400        969        11
#> 3699   DaviTo01           17157       2689         8
#> 3700   MounDe00           16937       2479         5
#> 3701   EligUk00           19051       4205         5
#> 3702   LongMa00           17279       2811         7
#> 3703   AyerAk00           12910        844         9
#> 3704   ElliJa02           19805       4903         8
#> 3705   LaceDe00           15855       1774         9
#> 3706   EmanKy00           16913       2456         7
#> 3707   OnwuJa00           19567       4668         5
#> 3708   ShazRy00           16157       1924         6
#> 3709   LyncAa00           16670       2259         8
#> 3710   CondJo20            5083        199        17
#> 3711       <NA>            5668        225        17
#> 3712   DennJo20            5377        212        17
#> 3713       <NA>           21308       6411         3
#> 3714   WindMi00           12383        744        12
#> 3715   DeOsZa99            2194         77        15
#> 3716   SundNi00           11963        681        13
#> 3717   BradHu00           20061       5321         4
#> 3718       <NA>           21396       6632         3
#> 3719   CuttAu00           21144       6305         3
#> 3720   MazzCo01           21102       6204         3
#> 3721   McDeKe00           15372       1637         9
#> 3722       <NA>           20186       5227         4
#> 3723       <NA>           17913       4899         6
#> 3724       <NA>           21469       6464         3
#> 3725       <NA>           21262       6597         3
#> 3726   OverJe00           18723       3899         6
#> 3727   CanaKa00           18388       3603         6
#> 3728   NelsKy00           14776       1301        11
#> 3729   MuhlDo20            6300        252        18
#> 3730   ValeVi00           18021       3260         6
#> 3731       <NA>           21245       6338         3
#> 3732   SimoDe00           16982       2522         5
#> 3733       <NA>           20076       5364         4
#> 3734   TaylPh00           12885        838        11
#> 3735   WillGe02           20992       6134         3
#> 3736       <NA>           20147       5187         4
#> 3737       <NA>           20564       5485         4
#> 3738       <NA>           21587       6689         3
#> 3739       <NA>           21465       6466         3
#> 3740       <NA>           21244       6337         3
#> 3741       <NA>           21485       6616         3
#> 3742       <NA>           20381       5616         4
#> 3743       <NA>           19262       4403         5
#> 3744       <NA>           19126       4280         5
#> 3745       <NA>           21153       6230         3
#> 3746   JohnLy00           20304       5473         4
#> 3747       <NA>           20243       5457         4
#> 3748       <NA>           21495       6495         3
#> 3749   DunnBr00           16429       2105         8
#> 3750       <NA>           21566       6658         3
#> 3751   AlleBe00           15960       1788         8
#> 3752   ClemCh00           19684       4765         5
#> 3753       <NA>           19202       4346         5
#> 3754       <NA>           20596       5611         4
#> 3755   MebaBr99             292          6        15
#> 3756       <NA>           20432       5414         4
#> 3757   LoveKy00           10977        517        12
#> 3758   RussDo00           20928       5926         3
#> 3759       <NA>           20445       5399         4
#> 3760       <NA>           21232       6326         3
#> 3761   BrowMi01           21323       6378         3
#> 3762   LogaBe00           14859       1342         9
#> 3763       <NA>           20054       5339         4
#> 3764   SladCh01           17156       2688         7
#> 3765       <NA>           20643       5715         4
#> 3766   SweeJ.00           14585       1243        10
#> 3767   OsemKe00           13848       1058        10
#> 3768   GarlBe00           15666       1728        12
#> 3769       <NA>           21353       6609         3
#> 3770   WisnSt01           13073        890        11
#> 3771   WetzJo00           15063       1469         9
#> 3772   LoonJo01           14505       1227        10
#> 3773   DeCaDa00           14650       1261        10
#> 3774   LarsTe20           12298        731        12
#> 3775       <NA>           20847       6082         3
#> 3776   PattJa00           20908       6022         3
#> 3777   NewhMa20           11398        600        12
#> 3778       <NA>           18051       3290         6
#> 3779   OmamPa00           15374       1639         9
#> 3780   WintBr00           14896       1374         9
#> 3781   WatfEa00           15231       1580         9
#> 3782       <NA>           19485       4597         5
#> 3783       <NA>           19537       4642         5
#> 3784       <NA>           21475       6455         3
#> 3785   FultZa00           16295       2016         8
#> 3786   DeveJo00           15424       1658         9
#> 3787   KushEr00           15049       1467         9
#> 3788   CrosTy00           19975       5106         4
#> 3789   DonaDy00           19057       4211         5
#> 3790       <NA>           20609       5682         4
#> 3791       <NA>           18840       4001         5
#> 3792       <NA>           20645       5725         4
#> 3793   LongSt00           18338       3563         6
#> 3794   BrowBl00           19050       4204         5
#> 3795   CowsJa00           18656       3836         6
#> 3796   DaniKa00           21147       6225         3
#> 3797       <NA>           19990       5085         4
#> 3798       <NA>           21488       6483         3
#> 3799   PeacCh00           21185       6252         3
#> 3800   McKiCa01           18233       3469         6
#> 3801       <NA>           20623       5717         4
#> 3802   KamaUf00           18432       3642         6
#> 3803   PresGi00           19507       4616         5
#> 3804       <NA>           21483       6433         3
#> 3805       <NA>           21152       6229         3
#> 3806   WoodXa01           19315       4452         5
#> 3807       <NA>           20131       5685         4
#> 3808   AlbrBr00           18352       3575         6
#> 3809       <NA>           20214       5516         4
#> 3810       <NA>           19405       4527         5
#> 3811   RushMa00           17266       2798         7
#> 3812   CarrJo00           19127       4281         5
#> 3813   CashJe00           18200       3436         6
#> 3814       <NA>           20641       5719         4
#> 3815       <NA>           21324       6356         3
#> 3816       <NA>           21529       6644         3
#> 3817       <NA>           20650       5711         4
#> 3818   LewiLa01           19383       4511         5
#> 3819       <NA>           20048       5411         4
#> 3820       <NA>           19337       4469         5
#> 3821   ThomMa00           20347       5605         4
#> 3822       <NA>           19144       4296         0
#> 3823   PricEj00           19095       4249         5
#> 3824   OdomCh00           19152       4304         5
#> 3825       <NA>           20751       6064         3
#> 3826   KingDe00           18509       3703         6
#> 3827       <NA>           19456       4570         5
#> 3828       <NA>           21550       6670         3
#> 3829       <NA>           20334       5453         4
#> 3830       <NA>           21243       6336         3
#> 3831       <NA>           21233       6327         3
#> 3832       <NA>           20735       6066         3
#> 3833       <NA>           20163       5213         4
#> 3834       <NA>           20705       5807         4
#> 3835       <NA>           21665       6748         3
#> 3836       <NA>           21237       6331         3
#> 3837       <NA>           18554       3742         6
#> 3838       <NA>           21075       5940         3
#> 3839       <NA>           20177       5180         4
#> 3840       <NA>           21182       6249         3
#> 3841       <NA>           21489       6484         3
#> 3842   MartGa00           17311       2843         7
#> 3843   WallAa00           18138       3377         6
#> 3844       <NA>           20647       5720         4
#> 3845   HineDJ00           20436       5418         4
#> 3846       <NA>           21502       6508         3
#> 3847       <NA>           20658       5749         4
#> 3848       <NA>           19519       4625         5
#> 3849       <NA>           20580       5573         4
#> 3850       <NA>           20574       5559         4
#> 3851       <NA>           21579       6680         3
#> 3852       <NA>           20041       5380         4
#> 3853       <NA>           21624       6706         3
#> 3854   BishFr00           17910       3154         9
#> 3855   NicoDa00           18120       3359         6
#> 3856       <NA>           20545       5657         4
#> 3857   WillAn01           18086       3325         6
#> 3858       <NA>           19580       4679         5
#> 3859       <NA>           20786       5939         3
#> 3860       <NA>           18572       3760         6
#> 3861       <NA>           16908       2451         7
#> 3862       <NA>           16971       2512         7
#> 3863   AlleCh02           19248       4389         5
#> 3864       <NA>           21059       6015         3
#> 3865       <NA>           20846       5907         3
#> 3866   ThomCo02           20605       5680         4
#> 3867       <NA>           20394       5387         4
#> 3868   RobePe01           18635       3818         6
#> 3869       <NA>           19651       4736         5
#> 3870   DoraVo00           18410       3623         6
#> 3871   LandCh00           18304       3537         6
#> 3872       <NA>           19115       4269         5
#> 3873       <NA>           18828       3991         5
#> 3874       <NA>           17027       2563         7
#> 3875   GrigNi01           18557       3745         6
#> 3876       <NA>           20547       5556         4
#> 3877       <NA>           20359       5564         4
#> 3878       <NA>           20126       5488         4
#> 3879       <NA>           18962       4116         5
#> 3880   QvalBr01           16071       1860         8
#> 3881       <NA>           20572       5546         4
#> 3882       <NA>           20603       5643         4
#> 3883       <NA>           19586       4685         5
#> 3884       <NA>           21375       6550         3
#> 3885   McGhGa01           21573       6674         3
#> 3886   GordDi01           18590       3777         6
#> 3887       <NA>           20622       5716         4
#> 3888       <NA>           20251       5677         4
#> 3889       <NA>           21155       6415         3
#> 3890       <NA>           20207       5419         4
#> 3891       <NA>           20125       5487         4
#> 3892       <NA>           16176       1936         8
#> 3893       <NA>           18485       3685         6
#> 3894       <NA>           19121       4275         5
#> 3895       <NA>           20430       5521         4
#> 3896       <NA>           21654       6732         3
#> 3897   WareJy00           19113       4267         5
#> 3898       <NA>           20417       5651         4
#> 3899   ClauBl01           17738       3034         7
#> 3900       <NA>           20613       5666         4
#> 3901       <NA>           17517       5729         7
#> 3902       <NA>           18406       3619         6
#> 3903       <NA>           20242       5456         4
#> 3904       <NA>           20913       6067         3
#> 3905   SterZa00           18651       3831         6
#> 3906       <NA>           21506       6638         3
#> 3907       <NA>           21580       6681         3
#> 3908   PainVi00           15039       1457         9
#> 3909       <NA>           19147       4299         5
#> 3910       <NA>           17002       2542         7
#> 3911       <NA>           21359       6580         3
#> 3912       <NA>           20569       5525         4
#> 3913       <NA>           21371       6410         3
#> 3914       <NA>           21539       6648         3
#> 3915       <NA>           20363       5390         4
#> 3916       <NA>           21280       6532         3
#> 3917       <NA>           19130       4284         5
#> 3918   BisnAd00           19106       4260         5
#> 3919       <NA>           20916       6038         3
#> 3920       <NA>           21076       6112         3
#> 3921   PerkKe00           19226       4369         5
#> 3922       <NA>           19372       4500         5
#> 3923       <NA>           20639       5728         4
#> 3924       <NA>           21402       6406         3
#> 3925   GilbMa00           12897        842        11
#> 3926       <NA>           19340       4472         5
#> 3927   RankMa00           19877       5034         4
#> 3928       <NA>           20668       5763         4
#> 3929       <NA>           20640       5732         4
#> 3930   BoykBr01           17429       2953         7
#> 3931       <NA>           21135       6297         3
#> 3932       <NA>           20732       5949         3
#> 3933       <NA>           21447       6473         3
#> 3934   OkunRu20           11604        641        12
#> 3935       <NA>           21181       6562         3
#> 3936       <NA>           20896       6010         3
#> 3937   DotsDe00            9223        447        13
#> 3938       <NA>           19616       4709         5
#> 3939       <NA>           21271       6456         3
#> 3940       <NA>           21300       6412         3
#> 3941   PennDo20            5274        207        16
#> 3942       <NA>           20433       5415         4
#> 3943       <NA>           21501       6603         3
#> 3944       <NA>           20927       6086         3
#> 3945   KaskMa00           21407       6424         3
#> 3946       <NA>           21504       6613         3
#> 3947   MurpPa00           18560       3748         6
#> 3948   StLoTy01           21162       6458         3
#> 3949   YounSa21           11289        578        12
#> 3950   WebbJM20           11369        589        12
#> 3951   HarrDe05           20118       5529         4
#> 3952       <NA>           19434       4553         5
#> 3953       <NA>           20100       5151         4
#> 3954   OdhiRe00           18022       3261         6
#> 3955       <NA>           18610       3796         6
#> 3956       <NA>           21460       6509         3
#> 3957       <NA>           19190       4334         5
#> 3958   MihaBr00           16996       2536         7
#> 3959   VeldJa20           11241        569        12
#> 3960       <NA>           21331       6474         3
#> 3961   TownJo01           19995       5381         4
#> 3962   KaseDr00           18096       3335         6
#> 3963       <NA>           18836       4918         5
#> 3964       <NA>           20386       5617         4
#> 3965   LechSh20            7606        307        20
#> 3966       <NA>           20426       5413         4
#> 3967   DaniTr00           20141       5206         4
#> 3968       <NA>           18908       4062         5
#> 3969   SchmCo00           15625       1713         9
#> 3970   ColqBr00            8679        385        13
#> 3971   VogeJu00           19245       4387         5
#> 3972   JoneDo21           14710       1271        18
#> 3973       <NA>           21191       6563         3
#> 3974   RyanJo21            3764        135        14
#> 3975   RedfKa00           17501       2990         8
#> 3976       <NA>           18815       3980         5
#> 3977   KingMa00           14628       1253        10
#> 3978   QuigRy00           14192       1151         8
#> 3979   DarrMa00           17450       2963         7
#> 3980   BoshMa00           13281        944        11
#> 3981       <NA>           20718       5824         3
#> 3982   WadmCo00           19818       4954         4
#> 3983       <NA>           13119        903        11
#> 3984   WileMa01           17550       3008         7
#> 3985       <NA>           21204       6403         3
#> 3986   LockJe00           15148       1533         7
#> 3987   AlleRy01           15559       1694         9
#> 3988       <NA>           21260       6343         3
#> 3989   JoneCa01           17971       3210         6
#> 3990       <NA>           21143       6269         3
#> 3991       <NA>           20704       5808         4
#> 3992       <NA>           14404       1200        10
#> 3993   OsweBr00           14053       1126        10
#> 3994   PettBr01           16864       2408         5
#> 3995   JoneLa02           14971       1411         9
#> 3996   RudoJa00           18108       3347         6
#> 3997   HodgDe00           21562       6595         3
#> 3998       <NA>           20113       5165         4
#> 3999       <NA>           20542       6205         3
#>                                                                            headshot_url
#> 1    https://static.www.nfl.com/image/private/f_auto,q_auto/league/kd2eu8ugfgnv98qm88x6
#> 2    https://static.www.nfl.com/image/private/f_auto,q_auto/league/uajgaowhpexewjakamce
#> 3    https://static.www.nfl.com/image/private/f_auto,q_auto/league/ed99pz29nayfa4nbi8ob
#> 4    https://static.www.nfl.com/image/private/f_auto,q_auto/league/zuggew2orqnkxkrrytxs
#> 5    https://static.www.nfl.com/image/private/f_auto,q_auto/league/wc7lhp4kgbjfcojfe2pi
#> 6    https://static.www.nfl.com/image/private/f_auto,q_auto/league/zxah6cxxtk8knftopqym
#> 7                                                                                  <NA>
#> 8    https://static.www.nfl.com/image/private/f_auto,q_auto/league/wbev0tvoeyqqhatigwgp
#> 9    https://static.www.nfl.com/image/private/f_auto,q_auto/league/iufv0wsujqf6sbvpr7qd
#> 10   https://static.www.nfl.com/image/private/f_auto,q_auto/league/w6qaip4eq1alfqlslztv
#> 11   https://static.www.nfl.com/image/private/f_auto,q_auto/league/ldeja3lkrjadp11cz1jo
#> 12   https://static.www.nfl.com/image/private/f_auto,q_auto/league/ngulbwqmqlrkarvyvhqs
#> 13   https://static.www.nfl.com/image/private/f_auto,q_auto/league/s2vs6tgopxphfyms4wmd
#> 14   https://static.www.nfl.com/image/private/f_auto,q_auto/league/icddsdkmmzg6ecyjwbzz
#> 15   https://static.www.nfl.com/image/private/f_auto,q_auto/league/ibqowvcvkzurwo95ukg9
#> 16   https://static.www.nfl.com/image/private/f_auto,q_auto/league/vjnvbbuuyocheang9bs7
#> 17   https://static.www.nfl.com/image/private/f_auto,q_auto/league/et8cdmbhezv5wtvhcaae
#> 18   https://static.www.nfl.com/image/private/f_auto,q_auto/league/ed1aulasdtwnbrhhwsfp
#> 19   https://static.www.nfl.com/image/private/f_auto,q_auto/league/g0jdwpajz08yavwlrcem
#> 20   https://static.www.nfl.com/image/private/f_auto,q_auto/league/g82sj6lvh3nolr9w4bdd
#> 21   https://static.www.nfl.com/image/private/f_auto,q_auto/league/qjno4vv9ldmwjm29q1c7
#> 22   https://static.www.nfl.com/image/private/f_auto,q_auto/league/ghbwrdzqhjpvdvohurw6
#> 23   https://static.www.nfl.com/image/private/f_auto,q_auto/league/dsnqho672kqis1vajzhq
#> 24   https://static.www.nfl.com/image/private/f_auto,q_auto/league/at7kcfpewow4ufsgi6wj
#> 25   https://static.www.nfl.com/image/private/f_auto,q_auto/league/zutvrtzwir9awk4zh7yn
#> 26   https://static.www.nfl.com/image/private/f_auto,q_auto/league/ork9ota77doj6oaixzjy
#> 27   https://static.www.nfl.com/image/private/f_auto,q_auto/league/hkxmfn0cqy0ewikfzoja
#> 28   https://static.www.nfl.com/image/private/f_auto,q_auto/league/y5hjl6vr71qzqjxgimdo
#> 29   https://static.www.nfl.com/image/private/f_auto,q_auto/league/wgkvdhqq950yzf14xnnb
#> 30   https://static.www.nfl.com/image/private/f_auto,q_auto/league/f4fstnrgtkcxyqycfejs
#> 31   https://static.www.nfl.com/image/private/f_auto,q_auto/league/ycoucw09mfkoywlukpkl
#> 32   https://static.www.nfl.com/image/private/f_auto,q_auto/league/xvtwdaj6iezbbfm9pikb
#> 33                                                                                 <NA>
#> 34   https://static.www.nfl.com/image/private/f_auto,q_auto/league/adqckkqriptgvu0qfs8s
#> 35   https://static.www.nfl.com/image/private/f_auto,q_auto/league/gzdj219b8zedrwdkxnzc
#> 36       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928847.png
#> 37   https://static.www.nfl.com/image/private/f_auto,q_auto/league/fsrulo5ourwvmwrj2wrj
#> 38   https://static.www.nfl.com/image/private/f_auto,q_auto/league/jao1rsr66uychiz4i2gb
#> 39   https://static.www.nfl.com/image/private/f_auto,q_auto/league/ltig9evwpll5gqeh9cza
#> 40   https://static.www.nfl.com/image/private/f_auto,q_auto/league/dquv31sqodc4adfzqs13
#> 41   https://static.www.nfl.com/image/private/f_auto,q_auto/league/rrdkwvqvkpxc8flfhz03
#> 42   https://static.www.nfl.com/image/private/f_auto,q_auto/league/o0xgwhoevo1fpjrowgpq
#> 43   https://static.www.nfl.com/image/private/f_auto,q_auto/league/xkqdranqre1opb1m4crn
#> 44   https://static.www.nfl.com/image/private/f_auto,q_auto/league/wis4mf5zhlerwiwxjpid
#> 45   https://static.www.nfl.com/image/private/f_auto,q_auto/league/hfefeudyf0tsaw3xuhux
#> 46   https://static.www.nfl.com/image/private/f_auto,q_auto/league/wlopjs0c2vaepskhjegj
#> 47   https://static.www.nfl.com/image/private/f_auto,q_auto/league/ep8usi9oeooni8u2nkg2
#> 48   https://static.www.nfl.com/image/private/f_auto,q_auto/league/oai3lusck14d6vwsft8v
#> 49   https://static.www.nfl.com/image/private/f_auto,q_auto/league/g07zd2yv3k7hiforushp
#> 50   https://static.www.nfl.com/image/private/f_auto,q_auto/league/x8jk9auuzlw8gfoq4ud8
#> 51   https://static.www.nfl.com/image/private/f_auto,q_auto/league/lu9ibbta8xxrt9pe3i4s
#> 52   https://static.www.nfl.com/image/private/f_auto,q_auto/league/bkhulmgbsse8pqbmqq8o
#> 53   https://static.www.nfl.com/image/private/f_auto,q_auto/league/gnr0itknbzjpxvumexx8
#> 54   https://static.www.nfl.com/image/private/f_auto,q_auto/league/jgyogn8mzp7igevahqaa
#> 55   https://static.www.nfl.com/image/private/f_auto,q_auto/league/c4cqr1mqscolp3q0ufcx
#> 56                                                                                 <NA>
#> 57   https://static.www.nfl.com/image/private/f_auto,q_auto/league/tlzghdps4wmxukbapq6o
#> 58   https://static.www.nfl.com/image/private/f_auto,q_auto/league/anp7vkwvnmysxdq12kd6
#> 59   https://static.www.nfl.com/image/private/f_auto,q_auto/league/lu27xcnywfgzjq9vhvdl
#> 60   https://static.www.nfl.com/image/private/f_auto,q_auto/league/qrq8gt8pirsy5dkc3hi6
#> 61   https://static.www.nfl.com/image/private/f_auto,q_auto/league/stceem3dtyjhdlqlaqxn
#> 62   https://static.www.nfl.com/image/private/f_auto,q_auto/league/piq7mvpfdh7ybggohlt9
#> 63   https://static.www.nfl.com/image/private/f_auto,q_auto/league/w7mijnbndcfyrrzykuwt
#> 64   https://static.www.nfl.com/image/private/f_auto,q_auto/league/nq7mtvvxmgc2vukwwcpo
#> 65   https://static.www.nfl.com/image/private/f_auto,q_auto/league/gkfzrh3buaacdnbqwbbl
#> 66   https://static.www.nfl.com/image/private/f_auto,q_auto/league/ez73cnyh2ru4cib6ondx
#> 67   https://static.www.nfl.com/image/private/f_auto,q_auto/league/esx5vf8sutdomyox7thp
#> 68   https://static.www.nfl.com/image/private/f_auto,q_auto/league/y4cua1auc75ybocf2ijz
#> 69   https://static.www.nfl.com/image/private/f_auto,q_auto/league/xqve4sypzeskek4dwzjr
#> 70   https://static.www.nfl.com/image/private/f_auto,q_auto/league/uite1keyl09qsvofsqzf
#> 71   https://static.www.nfl.com/image/private/f_auto,q_auto/league/rooccxaalvy2xxoztwij
#> 72                                                                                 <NA>
#> 73   https://static.www.nfl.com/image/private/f_auto,q_auto/league/njqxudmwe409p1fcg7if
#> 74   https://static.www.nfl.com/image/private/f_auto,q_auto/league/cnnffo0p74ph8slvtasw
#> 75   https://static.www.nfl.com/image/private/f_auto,q_auto/league/nlajcnjlosuajmqswxvl
#> 76   https://static.www.nfl.com/image/private/f_auto,q_auto/league/ibugzfv4xaeq9y4xurmj
#> 77   https://static.www.nfl.com/image/private/f_auto,q_auto/league/amguunwoi0t2witqj95b
#> 78   https://static.www.nfl.com/image/private/f_auto,q_auto/league/of7qshvgovrbc20wflca
#> 79   https://static.www.nfl.com/image/private/f_auto,q_auto/league/qovzmwpzbha2d7x4r4ek
#> 80   https://static.www.nfl.com/image/private/f_auto,q_auto/league/ufzmjdca2npvtir7usbo
#> 81   https://static.www.nfl.com/image/private/f_auto,q_auto/league/qwcd3lglkknslsavcvr7
#> 82   https://static.www.nfl.com/image/private/f_auto,q_auto/league/gfqzau9eqixvofvzj0qx
#> 83   https://static.www.nfl.com/image/private/f_auto,q_auto/league/atxihl8g9xi6wextxbkw
#> 84   https://static.www.nfl.com/image/private/f_auto,q_auto/league/y1uvf0zoqcmhdnnm9zpt
#> 85                                                                                 <NA>
#> 86   https://static.www.nfl.com/image/private/f_auto,q_auto/league/rgzishasi7pqimvjwsat
#> 87   https://static.www.nfl.com/image/private/f_auto,q_auto/league/vyufkvcmykialbow0nk7
#> 88   https://static.www.nfl.com/image/private/f_auto,q_auto/league/yma8ygeji2fcucpbo5i7
#> 89   https://static.www.nfl.com/image/private/f_auto,q_auto/league/kutrcxylkhvanrsbwhox
#> 90       https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052477.png
#> 91   https://static.www.nfl.com/image/private/f_auto,q_auto/league/eb8u2ml8s1dfduscttff
#> 92   https://static.www.nfl.com/image/private/f_auto,q_auto/league/dfahldf8jdam6sgpvxkt
#> 93   https://static.www.nfl.com/image/private/f_auto,q_auto/league/u7zsz08yuvqdhvogcvni
#> 94   https://static.www.nfl.com/image/private/f_auto,q_auto/league/ybe0ixvgoqmc749ukmly
#> 95   https://static.www.nfl.com/image/private/f_auto,q_auto/league/ycpfgnqr303mgbv6kqmp
#> 96   https://static.www.nfl.com/image/private/f_auto,q_auto/league/itwadnav0rwaqupj5lws
#> 97   https://static.www.nfl.com/image/private/f_auto,q_auto/league/ode1fssbveivwzpzstf1
#> 98   https://static.www.nfl.com/image/private/f_auto,q_auto/league/ng8azjiqz0aoatrp5kbs
#> 99   https://static.www.nfl.com/image/private/f_auto,q_auto/league/gmnalrh9rl4qy369jhw1
#> 100  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wrzn1wwfvnzipalnm9rh
#> 101                                                                                <NA>
#> 102  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cilckttcbrhms71garxx
#> 103  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ygpkzebsmlb0leqhl61u
#> 104  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ppusneqoobcg85h9wqd0
#> 105  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dg4o5binqy5sdnrhaimg
#> 106  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qqu8uacy10emvmwjhsxg
#> 107  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kwkybt5crujc15ygwxon
#> 108  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yvyh1geebqh7km1uzhsc
#> 109  https://static.www.nfl.com/image/private/f_auto,q_auto/league/b6md3txjaggsbwrurprh
#> 110  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ggbufioaykmpjgjddj6s
#> 111  https://static.www.nfl.com/image/private/f_auto,q_auto/league/sayuipn5ul8bvjr4rc1y
#> 112  https://static.www.nfl.com/image/private/f_auto,q_auto/league/y7dbzgm1c6kjs7dnrgkb
#> 113  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fxgmwwswqz4vdfhft43r
#> 114  https://static.www.nfl.com/image/private/f_auto,q_auto/league/aaodb4vx0itn3qqfkb9x
#> 115  https://static.www.nfl.com/image/private/f_auto,q_auto/league/uewzudc2og55y1lqup0j
#> 116  https://static.www.nfl.com/image/private/f_auto,q_auto/league/oj7q5kgawa1uswqvti2r
#> 117  https://static.www.nfl.com/image/private/f_auto,q_auto/league/nyimjrausboqe9edgkfx
#> 118  https://static.www.nfl.com/image/private/f_auto,q_auto/league/iukrm0je8nnrtyfzyp29
#> 119  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wy5b0di6lxdvbm3zjjdz
#> 120  https://static.www.nfl.com/image/private/f_auto,q_auto/league/m6uvlacnba8ck0xvhlj8
#> 121  https://static.www.nfl.com/image/private/f_auto,q_auto/league/t02qjocjy7ybfupmhze8
#> 122  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kovtdtv8oy1loablf0pg
#> 123  https://static.www.nfl.com/image/private/f_auto,q_auto/league/q1gccecrdi8ycbs9cq7v
#> 124  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mj5z3knorwvmtfiyya1z
#> 125  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dzaim5yyul9cv08lzeeu
#> 126  https://static.www.nfl.com/image/private/f_auto,q_auto/league/boo5avqkxfelmekrc3tt
#> 127  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rasokmsh9oquh86l6dzt
#> 128  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ofg9i0rqidaqee1qrqha
#> 129  https://static.www.nfl.com/image/private/f_auto,q_auto/league/safhjtb3oqt3uonjmw2r
#> 130  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xp2g7lnnvmlmchbccpp0
#> 131  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jji7bmkwulgjsjdyjpts
#> 132  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gnordisqpk4tsspznw50
#> 133  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vv57egvcnsvqvmaeg9qj
#> 134  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qds8oiiybnr1lgcajtob
#> 135  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fcanyt5e3lukzuoim5bf
#> 136  https://static.www.nfl.com/image/private/f_auto,q_auto/league/szwt5fvl2atq9kayyfuo
#> 137  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jalyp06jjgv1t7k2tdvu
#> 138  https://static.www.nfl.com/image/private/f_auto,q_auto/league/iehexq2thonk3eqcnkd0
#> 139  https://static.www.nfl.com/image/private/f_auto,q_auto/league/f4egbjq6xyiuac6cffys
#> 140  https://static.www.nfl.com/image/private/f_auto,q_auto/league/utkrhlnhfaulhogyncah
#> 141  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gopmxlzrfz1ax0bokqnd
#> 142                                                                                <NA>
#> 143  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zid4pdkeagcqz9z6cblm
#> 144  https://static.www.nfl.com/image/private/f_auto,q_auto/league/q4u0bidfo1oi2tfirlc8
#> 145  https://static.www.nfl.com/image/private/f_auto,q_auto/league/srnpz85kxnfcgztfv7wy
#> 146                                                                                <NA>
#> 147  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fvakqnmsg35llkcme11h
#> 148  https://static.www.nfl.com/image/private/f_auto,q_auto/league/nqycxzi8tkcyauk55mj8
#> 149  https://static.www.nfl.com/image/private/f_auto,q_auto/league/b9turwvs94tzjpw7xpzo
#> 150  https://static.www.nfl.com/image/private/f_auto,q_auto/league/a12intlc15po42xebdxv
#> 151  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jnj4vueqtpbhjuqjrakr
#> 152  https://static.www.nfl.com/image/private/f_auto,q_auto/league/w1pihpngfp8jwnb5y0xg
#> 153  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lpnnnjuzbucn0nx1gdvk
#> 154  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tpd7thacqndp9t6oyw73
#> 155  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rglymp2m5g90tvlpxhef
#> 156  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ck6bpvk71ancovvtomdg
#> 157  https://static.www.nfl.com/image/private/f_auto,q_auto/league/aevwno51rzt28qzgkm3v
#> 158  https://static.www.nfl.com/image/private/f_auto,q_auto/league/sihprxfal0bvmx3eepj6
#> 159                                                                                <NA>
#> 160  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fz6elkcn8kxdksqgeulj
#> 161  https://static.www.nfl.com/image/private/f_auto,q_auto/league/nw2bhvpo1dj4bnmuq9ej
#> 162  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fybmurkbrd7waa35tpc8
#> 163  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gcaqwhzrinlqicrljwlr
#> 164  https://static.www.nfl.com/image/private/f_auto,q_auto/league/nrjs4cm8bpr9v9ktiqe2
#> 165  https://static.www.nfl.com/image/private/f_auto,q_auto/league/pjhk3vxzcmeywvsvhsr7
#> 166  https://static.www.nfl.com/image/private/f_auto,q_auto/league/alumkphxkkcwbqiahmgj
#> 167  https://static.www.nfl.com/image/private/f_auto,q_auto/league/f8y8q0fxuqnb6zdqwwd3
#> 168                                                                                <NA>
#> 169  https://static.www.nfl.com/image/private/f_auto,q_auto/league/s4ihtoxjcfdnfsz4o7bs
#> 170  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rmcz9n6zmmpqmovo8cug
#> 171  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yvgvukodrs3aabp4qty7
#> 172  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hljfjpcyscrhkyca58b0
#> 173  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cq0pdsuvyiskvlyfdhit
#> 174  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wwcp3oalaswq3i8jdzsd
#> 175  https://static.www.nfl.com/image/private/f_auto,q_auto/league/pounxxpc2w4e54z17xjv
#> 176  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yvkxdsec757gjivq83iq
#> 177  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wnhyuxeoxbmtxzfyxrgd
#> 178  https://static.www.nfl.com/image/private/f_auto,q_auto/league/uycb0wytmroih8dz8rag
#> 179  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ywyvelzjll4cayisww3p
#> 180  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jlp4jqvqi1nmdtllwe9y
#> 181  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ikru9kmgfgwao7nhe3oq
#> 182  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cofpr5qnyf3dqqryvvwm
#> 183  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gmhd5nscky9vrwgvqc3d
#> 184  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fljxuj5kg1mcidkytxgw
#> 185  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vxwgxg00way4alzjurmi
#> 186  https://static.www.nfl.com/image/private/f_auto,q_auto/league/voro7f8kru6evjpmctet
#> 187  https://static.www.nfl.com/image/private/f_auto,q_auto/league/id2riwyadfiwpyqhwb4g
#> 188  https://static.www.nfl.com/image/private/f_auto,q_auto/league/o3dfrabtbcmfcnygi5sc
#> 189  https://static.www.nfl.com/image/private/f_auto,q_auto/league/x9i0fpydcq0xmt3duipb
#> 190  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ifctswrcgmxumsj9aunk
#> 191  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kspb3jtyvcn5oe9iarkr
#> 192  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gew5y4jtrh2jd7guowwk
#> 193  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kxlvxns8cc2vmdp4icg3
#> 194  https://static.www.nfl.com/image/private/f_auto,q_auto/league/sm3qjfby2inwtk2xdi1z
#> 195  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ghhbqw66c4ulq5tdr8da
#> 196  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jzrxkjnu1o5ykzrjelrp
#> 197  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vw63rdpjpc1rh3az3zme
#> 198  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vvdfidvbj3jwf0r4vznn
#> 199  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jjicfttnmfs27bykjsax
#> 200  https://static.www.nfl.com/image/private/f_auto,q_auto/league/a29vnoeadrm3xsdsfvib
#> 201  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fx6xoquojixiiofsmpln
#> 202                                                                                <NA>
#> 203  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fsifllhqsfavihjfs6eu
#> 204  https://static.www.nfl.com/image/private/f_auto,q_auto/league/stvj9fyzen62sshjr232
#> 205  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lvxhz9lwwhdt4mxdl7qt
#> 206  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ccnetuenpry8y2pojxoc
#> 207      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986883.png
#> 208  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vz2rwcngxr3e32sypr1r
#> 209  https://static.www.nfl.com/image/private/f_auto,q_auto/league/i99vgskaiholrm5vttpv
#> 210  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lzd8vwbiofb5rfkj3ic1
#> 211  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kybpv6vmawn4zqgkuzmr
#> 212  https://static.www.nfl.com/image/private/f_auto,q_auto/league/apghoumbtqhzcd8pwfti
#> 213  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kho6ffsxqn6xk86z9onn
#> 214  https://static.www.nfl.com/image/private/f_auto,q_auto/league/q4hk4tlxghuynlpiqhek
#> 215  https://static.www.nfl.com/image/private/f_auto,q_auto/league/neqyitdx4f7lpj4pvzfd
#> 216  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ybkcgchf6dxet313tmji
#> 217  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zrblrwo3qyqb4cmyzax9
#> 218  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lavjggkddwcip1axjtyq
#> 219  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fvcor8jkuak7kepezrjm
#> 220  https://static.www.nfl.com/image/private/f_auto,q_auto/league/un3gtkku0prkvucz8hg8
#> 221  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qjke0q2esfgb0cp2vb0o
#> 222  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ejubrhm5zgonw4p6xjde
#> 223  https://static.www.nfl.com/image/private/f_auto,q_auto/league/z3x0kdm8pc6wo4luvel1
#> 224  https://static.www.nfl.com/image/private/f_auto,q_auto/league/pjsiuje7aftbl5wegzst
#> 225  https://static.www.nfl.com/image/private/f_auto,q_auto/league/a4fpovdr5kz6wbhash9q
#> 226  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mlxupmvndm7g7g05hbio
#> 227  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mjoaip3gl5bafszeabez
#> 228  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cpipevl0gipudcakzihg
#> 229  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yrnmv4q0ajtiabni5oka
#> 230  https://static.www.nfl.com/image/private/f_auto,q_auto/league/u0iqbfj30q64ngrmwdvr
#> 231  https://static.www.nfl.com/image/private/f_auto,q_auto/league/v2n47jtsvtk4bykrr6os
#> 232  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dw34lcf6qit1i1knjhpv
#> 233                                                                                <NA>
#> 234  https://static.www.nfl.com/image/private/f_auto,q_auto/league/joqk6e9qhsg7n6jej2ya
#> 235  https://static.www.nfl.com/image/private/f_auto,q_auto/league/o75lst87can47rzetd1p
#> 236  https://static.www.nfl.com/image/private/f_auto,q_auto/league/w4jihnnp4yrlber0uxk5
#> 237      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042451.png
#> 238  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vjhvfwypu1byxfo2uvki
#> 239  https://static.www.nfl.com/image/private/f_auto,q_auto/league/c7akgryuyuxz7wok2qcf
#> 240  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ucxy1zbyppgm62iyvrdr
#> 241  https://static.www.nfl.com/image/private/f_auto,q_auto/league/d5swjwa1qdbj5iszkzmb
#> 242  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rbp5kcbx7xqlqwqjvfrw
#> 243  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vr6u1wduuoi52ixzu8vi
#> 244  https://static.www.nfl.com/image/private/f_auto,q_auto/league/keywk7kutzxmshe8xzx9
#> 245  https://static.www.nfl.com/image/private/f_auto,q_auto/league/e0c55kmyf6le5v6jmmrm
#> 246  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rmvkhgkudwh7pzeh5qcc
#> 247  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ykbkhi6vxs8yaoejs4tz
#> 248  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hsxg3lt74z7mwkbjwqxw
#> 249  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jl7a95vyxownvkevbcr8
#> 250  https://static.www.nfl.com/image/private/f_auto,q_auto/league/laj6xcr4hn62aw2wrr32
#> 251  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kq4zguiyfob0ktj2fhk0
#> 252  https://static.www.nfl.com/image/private/f_auto,q_auto/league/swiwooxium4wmas8wq4c
#> 253  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ezhws8qbjhti1p3gcn2h
#> 254                                                                                <NA>
#> 255  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yrvkhtd013c5nsv8az6w
#> 256  https://static.www.nfl.com/image/private/f_auto,q_auto/league/uulusc1rbfhi3k0yhcch
#> 257  https://static.www.nfl.com/image/private/f_auto,q_auto/league/esjpio5c0exxgppw2i05
#> 258  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fihs5hshnjghcpimjjtw
#> 259  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vjyxib6nia644yvjsapm
#> 260  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ikx9h3tpo7pvn8vxsrml
#> 261  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vhykrf0b2rnwektufqjw
#> 262  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vpcmsc93xuzhv4bupbzu
#> 263  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kcfjuebtxvkg9kapy71o
#> 264  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kpqp8cggrjbam26zv4m1
#> 265  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hsoot8dz6r6kaiiezlcr
#> 266  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yo3qek8qmmnbokiyutqw
#> 267  https://static.www.nfl.com/image/private/f_auto,q_auto/league/eh2k2uepsyji65kazwiz
#> 268  https://static.www.nfl.com/image/private/f_auto,q_auto/league/n2pv9nadvjo5lhkhqqxd
#> 269  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ct0wpogjz62j6gv5na7n
#> 270  https://static.www.nfl.com/image/private/f_auto,q_auto/league/b5xcql2lzwwwhf5jeq1e
#> 271  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lqqb0j5ofne7eokkle9u
#> 272  https://static.www.nfl.com/image/private/f_auto,q_auto/league/twoulrna3niq8e77meuw
#> 273  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cvyovdgv0qccuogbaifk
#> 274  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qcbus6alc2viwjkpjdum
#> 275  https://static.www.nfl.com/image/private/f_auto,q_auto/league/puqw8cmdosdtizuj5aqp
#> 276  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ojkxyzmbyxz3sobfktfp
#> 277  https://static.www.nfl.com/image/private/f_auto,q_auto/league/niddyx2mei2sjvjdcetd
#> 278  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fmjnon8kbobehi5ckkm6
#> 279  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ajt4fu8umsqvvi6nv9lg
#> 280  https://static.www.nfl.com/image/private/f_auto,q_auto/league/iwtcfkm7ldoiuzgc9emo
#> 281  https://static.www.nfl.com/image/private/f_auto,q_auto/league/bi8yw8javglu9q3fgl0k
#> 282  https://static.www.nfl.com/image/private/f_auto,q_auto/league/heqaukojcbueb01jzenm
#> 283  https://static.www.nfl.com/image/private/f_auto,q_auto/league/g7sv3k1i0m1nz5holpsa
#> 284  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ovuqq48qxqhuul9wdoih
#> 285  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zxgfupgdi3ahviuehis6
#> 286  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ivakioyg4bzwgaspvnf6
#> 287  https://static.www.nfl.com/image/private/f_auto,q_auto/league/aa76o5lnybfm9chig7g5
#> 288  https://static.www.nfl.com/image/private/f_auto,q_auto/league/oamegwkv6drr8plrp1qg
#> 289  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vhlulkftositc2l41nkz
#> 290  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wfpjmpvptyi0lvqnltye
#> 291  https://static.www.nfl.com/image/private/f_auto,q_auto/league/k7el8bi9tpp8ostlzgtj
#> 292  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xgh3lgbrh0csrfynjpq6
#> 293  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lqzyknfsj6k46qukxkev
#> 294  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rkn01wpun5cvnj63d1jo
#> 295  https://static.www.nfl.com/image/private/f_auto,q_auto/league/b8glxifd5fzhskgmjgge
#> 296  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qzkj83lejip1wljisrsx
#> 297  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mg2vvt30rzpufa4j1vbj
#> 298  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hnq5hu4caeq4itugcemp
#> 299  https://static.www.nfl.com/image/private/f_auto,q_auto/league/axbnd0uxqyxgmtmkten8
#> 300  https://static.www.nfl.com/image/private/f_auto,q_auto/league/u8glt8o1ugdzymmbkafr
#> 301  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ihiwpmm0tensrbgjv7bs
#> 302  https://static.www.nfl.com/image/private/f_auto,q_auto/league/n6orgjbgjnepvk8itle0
#> 303  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wd7azc5bbzuer7m6wmqq
#> 304  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mmfkpkmwxm9jqf1feh58
#> 305  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wvqxml5ggdymjuz08qxa
#> 306  https://static.www.nfl.com/image/private/f_auto,q_auto/league/bjlzjyr95mxnfpv5khmr
#> 307  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qfjhhrqxj6iemhqpbdqp
#> 308  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qmxazajbgoagqzflp7sh
#> 309  https://static.www.nfl.com/image/private/f_auto,q_auto/league/nuqia8ocyup7gtn0mhy4
#> 310  https://static.www.nfl.com/image/private/f_auto,q_auto/league/aaycnauhsie8eikyqzab
#> 311  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wzce8w4ehyr1e33ir5js
#> 312  https://static.www.nfl.com/image/private/f_auto,q_auto/league/geg1crs1tim8kjw6lr7a
#> 313  https://static.www.nfl.com/image/private/f_auto,q_auto/league/j7grdumiur6myividckv
#> 314  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wtiyro1pue9turhynxjv
#> 315  https://static.www.nfl.com/image/private/f_auto,q_auto/league/uq45fzmoanzoypqrs5df
#> 316  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tllerqpaxoqygxsfo0qo
#> 317  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mbtglu8hlaj2uaztgscv
#> 318  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gvidkdvfipoehupzghgj
#> 319  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tezgpqewrijsjjbqflij
#> 320  https://static.www.nfl.com/image/private/f_auto,q_auto/league/p6ctkdyvfwi8a7cwln0h
#> 321  https://static.www.nfl.com/image/private/f_auto,q_auto/league/bpfuqyyzhbvmxj1zrvpj
#> 322  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ud6ifpmkntqowvg7s0vy
#> 323  https://static.www.nfl.com/image/private/f_auto,q_auto/league/udpftq2zj6k8tmieabck
#> 324  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vngi1vxe8cmzirk67vpi
#> 325  https://static.www.nfl.com/image/private/f_auto,q_auto/league/q85fyisrpc6o3ve1je1u
#> 326  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xspwslxp9a2spvufhhrd
#> 327  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hcvd2avk0kufoli80veb
#> 328  https://static.www.nfl.com/image/private/f_auto,q_auto/league/bytjxharvepxap4ykjhm
#> 329  https://static.www.nfl.com/image/private/f_auto,q_auto/league/uye63womjukgaprbi7rj
#> 330  https://static.www.nfl.com/image/private/f_auto,q_auto/league/y5r0fhwctl6ljwvmktvu
#> 331  https://static.www.nfl.com/image/private/f_auto,q_auto/league/potkibjtm855tsawozs0
#> 332  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ebtshr6tcwatrt1mptvb
#> 333  https://static.www.nfl.com/image/private/f_auto,q_auto/league/s2yhtlyejvkxjcgjaxza
#> 334  https://static.www.nfl.com/image/private/f_auto,q_auto/league/d9eoibz52yzsvc0knnj1
#> 335  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qh7kz3ktwv7po6qen9z3
#> 336  https://static.www.nfl.com/image/private/f_auto,q_auto/league/so0leuhta93epoelvjoy
#> 337  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cdmp3fvgs1dewnntjof4
#> 338  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ppqnt1ryi9qrc3os8c37
#> 339  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ded8x9b7yr7bd2imu0fv
#> 340                                                                                <NA>
#> 341      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038440.png
#> 342  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yuomyy3ldhxz9xuaecvo
#> 343  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ojaldunm4wsqio8ecyzl
#> 344  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cnak0gxk3gfpwbljlgty
#> 345  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cpgi2hbhnmvs1oczkzas
#> 346  https://static.www.nfl.com/image/private/f_auto,q_auto/league/adurdjwn3nb9mjditegf
#> 347  https://static.www.nfl.com/image/private/f_auto,q_auto/league/iwguvz99djdndazudvk8
#> 348  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jfec3gix9dui5nyxavh6
#> 349  https://static.www.nfl.com/image/private/f_auto,q_auto/league/txmoykonqliorciozzz0
#> 350  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tpcicjvkxcispybcyhfl
#> 351                                                                                <NA>
#> 352  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xorncebkhgwt6c3oglf5
#> 353  https://static.www.nfl.com/image/private/f_auto,q_auto/league/bni02hv6ulebnnco5gww
#> 354  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qunb2unbest8oldcidu7
#> 355  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rqoqlrbajzk3zlqv9ibl
#> 356  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qbakizxt0yidv17crxrc
#> 357  https://static.www.nfl.com/image/private/f_auto,q_auto/league/u24qqjqcd9zqlvbjhsan
#> 358  https://static.www.nfl.com/image/private/f_auto,q_auto/league/obzg5x2cnzkp7m7v4d9o
#> 359  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kh02cthgn4zauryssblp
#> 360  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jhvvzb6v9fjvhrnemiqp
#> 361  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hh5tbvh9zfiy2rpau6ic
#> 362  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fe5je8kk0ld6fe06qow1
#> 363  https://static.www.nfl.com/image/private/f_auto,q_auto/league/u2uxdnegox5cqoaffiti
#> 364  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cuedie2sqvlbvrwm0gzx
#> 365  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hi5x3cx8daqf6bwpjwjh
#> 366  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rwmpua3a6i8ptn6vlu9y
#> 367  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xw2eamhfqwkkqcfej06c
#> 368  https://static.www.nfl.com/image/private/f_auto,q_auto/league/g18mk4u8qjwpktt8a3sz
#> 369                                                                                <NA>
#> 370  https://static.www.nfl.com/image/private/f_auto,q_auto/league/elxmbm6zscnjixuoxs5a
#> 371  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vqcaskdb2gwn4guqjjfe
#> 372  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xcpmm6e3x1l6ghlptqta
#> 373  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cachqtvnqdbjpru2adij
#> 374  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jpudou1hjdpwy5fdweec
#> 375  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ov0vz34uauloyveslvvw
#> 376  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wsuz3ryphrybdyaibo5s
#> 377      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4682912.png
#> 378  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mdokiapjr7z9j0haogbu
#> 379                                                                                <NA>
#> 380  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ug4cbgz6sttovqkzqgkm
#> 381  https://static.www.nfl.com/image/private/f_auto,q_auto/league/bjqooiuyjv95hokkzdqk
#> 382  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rxt5ztgxf1nhyfp3w8np
#> 383  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lqrmecpafdqcn7npwvd8
#> 384  https://static.www.nfl.com/image/private/f_auto,q_auto/league/p22ykarwnmm3eglqayur
#> 385  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ldxwkghkgkg0m33glh2l
#> 386  https://static.www.nfl.com/image/private/f_auto,q_auto/league/sadwjxcngg45gnfx9hnu
#> 387  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ugmw3fc7mdwii0yduihz
#> 388  https://static.www.nfl.com/image/private/f_auto,q_auto/league/a9pt1kgtrwsa0gaggyyq
#> 389  https://static.www.nfl.com/image/private/f_auto,q_auto/league/iujctae4bettoljd90zn
#> 390  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wkdnx1rnn9bfsvdwgdwi
#> 391  https://static.www.nfl.com/image/private/f_auto,q_auto/league/a5k94hwnr5wayvwnkdbj
#> 392  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zwmgw2gmnn2kch4nquft
#> 393  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kfrldn7zoysrwgpmaqwq
#> 394  https://static.www.nfl.com/image/private/f_auto,q_auto/league/izcmywlqedam7djfuayc
#> 395  https://static.www.nfl.com/image/private/f_auto,q_auto/league/nkitu0vqly1r1vreldfn
#> 396  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rdnyt8rtgggzetl9udfu
#> 397  https://static.www.nfl.com/image/private/f_auto,q_auto/league/w5otea9c6r0jzkaetcoj
#> 398                                                                                <NA>
#> 399  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rmrohuw9tgfqlolewzvx
#> 400  https://static.www.nfl.com/image/private/f_auto,q_auto/league/p2nr77tdscvdric1wmub
#> 401  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ae67els2vdzcdgz1jzsh
#> 402  https://static.www.nfl.com/image/private/f_auto,q_auto/league/r77ej4rj3wthfriow4rp
#> 403  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hebku8h9mzzcnc1zc7ik
#> 404  https://static.www.nfl.com/image/private/f_auto,q_auto/league/muexy83vlyemrbzbd5vg
#> 405  https://static.www.nfl.com/image/private/f_auto,q_auto/league/noiblye19jg2vd5dlqcz
#> 406  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wcy0cghssxmp1bvvg7sx
#> 407      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053039.png
#> 408  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tvqixry9ad1tnsy9xdor
#> 409                                                                                <NA>
#> 410                                                                                <NA>
#> 411  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hytdypbhcu9ouryoqlou
#> 412  https://static.www.nfl.com/image/private/f_auto,q_auto/league/y2mmjzsfwbfw4vkexjle
#> 413  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tg6j3ea9tquznoaffm1d
#> 414  https://static.www.nfl.com/image/private/f_auto,q_auto/league/macmamgqffndxbtklzk6
#> 415  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yy6o0pkengsmm6dox1wy
#> 416  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lpinw5giijn5y4lailxz
#> 417  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wmcebtf43duano7ziqda
#> 418  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fr5xckiwhguuaishnbju
#> 419                                                                                <NA>
#> 420  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fhqemstx92otqckdvfbz
#> 421      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4034849.png
#> 422  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ac9nvctibuljwl2dlw5n
#> 423  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mdakanfi46eg6wk7nysj
#> 424  https://static.www.nfl.com/image/private/f_auto,q_auto/league/nfkchuuklqixospgfyqi
#> 425  https://static.www.nfl.com/image/private/f_auto,q_auto/league/aqwneslgs9rsvnmjzvcd
#> 426  https://static.www.nfl.com/image/private/f_auto,q_auto/league/n3qcfqbr1bswzclr7erl
#> 427  https://static.www.nfl.com/image/private/f_auto,q_auto/league/uvl8djpmsoxtoeeej3dv
#> 428  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kss031jlwxyuce8deusw
#> 429  https://static.www.nfl.com/image/private/f_auto,q_auto/league/nv7fd9vtup3w5vvnwald
#> 430  https://static.www.nfl.com/image/private/f_auto,q_auto/league/bk79sr1yjbieayejzi9a
#> 431  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mehsbayxyhrgowjphofr
#> 432  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fmexwewlqibs3xfareaf
#> 433  https://static.www.nfl.com/image/private/f_auto,q_auto/league/iubetljokajk6rmracua
#> 434                                                                                <NA>
#> 435  https://static.www.nfl.com/image/private/f_auto,q_auto/league/p1p9sai3frvvqempjl8m
#> 436  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ssfu9gtxv9bxkywckqrr
#> 437  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kcgvs6jecijrj3884z2v
#> 438  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yt6oezmoco3fdjqzv8nu
#> 439  https://static.www.nfl.com/image/private/f_auto,q_auto/league/s0v3yfn7fneecpchvws3
#> 440  https://static.www.nfl.com/image/private/f_auto,q_auto/league/u1rxlyea01e4s8ddtecn
#> 441  https://static.www.nfl.com/image/private/f_auto,q_auto/league/agqtrnz62ojx3bmjc3y7
#> 442  https://static.www.nfl.com/image/private/f_auto,q_auto/league/nw6m9k5akbyy0dbbkwft
#> 443  https://static.www.nfl.com/image/private/f_auto,q_auto/league/u5lzptcsyubdgwf3nr1j
#> 444  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tt7dandayjxvuxrqqoda
#> 445  https://static.www.nfl.com/image/private/f_auto,q_auto/league/q4daldhsiq91qyo7yn5o
#> 446  https://static.www.nfl.com/image/private/f_auto,q_auto/league/n2iknv0oqq5nqbbzjjrn
#> 447  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jdekdspqixqdeeawftcr
#> 448  https://static.www.nfl.com/image/private/f_auto,q_auto/league/uz4jg9hcexi2tckhkunn
#> 449  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cikgig7wakqqu11rjdzq
#> 450  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fh1nvpsrokyeajv7asa9
#> 451                                                                                <NA>
#> 452  https://static.www.nfl.com/image/private/f_auto,q_auto/league/iywxb7hesnhkz8z7bnke
#> 453  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jukojjsqqppqju4worol
#> 454  https://static.www.nfl.com/image/private/f_auto,q_auto/league/klh8odutygenqrt3tklk
#> 455  https://static.www.nfl.com/image/private/f_auto,q_auto/league/acswdvnrgsy7sefdkbre
#> 456  https://static.www.nfl.com/image/private/f_auto,q_auto/league/q0m2yxg6gyh0uxbiynit
#> 457  https://static.www.nfl.com/image/private/f_auto,q_auto/league/khyutvq4m9scyyzbkoic
#> 458  https://static.www.nfl.com/image/private/f_auto,q_auto/league/etelpx3pxstl6ungqb7k
#> 459  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ug768dhff0jq7n6ziyip
#> 460  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jxsrulnbvfvmls7u6w7s
#> 461  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ticxxagivnhichqz26xp
#> 462  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kq5oj1tyzkf4wrytkvry
#> 463  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rhhosn7hauo4kcknauyf
#> 464  https://static.www.nfl.com/image/private/f_auto,q_auto/league/pagmyx9zifixawzoiuyr
#> 465  https://static.www.nfl.com/image/private/f_auto,q_auto/league/e6ysx4agadfy6a75cqp7
#> 466  https://static.www.nfl.com/image/private/f_auto,q_auto/league/n4vgljsacifunp0fojcj
#> 467  https://static.www.nfl.com/image/private/f_auto,q_auto/league/idi0osrnlzlvrwcuoxjl
#> 468  https://static.www.nfl.com/image/private/f_auto,q_auto/league/d51esgsexmc54z8qxcuo
#> 469  https://static.www.nfl.com/image/private/f_auto,q_auto/league/w88wlragv2ktsnxr6dsq
#> 470  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ma7bkdymewzelolhydoc
#> 471  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yniv8nmjifyg0bylwser
#> 472  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vtx71qlko8sifzrk8fns
#> 473  https://static.www.nfl.com/image/private/f_auto,q_auto/league/b3gmpbk4klxgo2hccbln
#> 474  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cfoe1uqb2wfbuywwgx08
#> 475  https://static.www.nfl.com/image/private/f_auto,q_auto/league/prw2syis0wctb62lyvs4
#> 476  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yptxtdj5wzfzrmqh4hsz
#> 477  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ejcbwk2yijkswrmzscbk
#> 478  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cl5f9jocw6sug2tclb79
#> 479                                                                                <NA>
#> 480  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ohjocm3hzbdvvycmm3yf
#> 481  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rizznfdrp0vllfa6eukl
#> 482  https://static.www.nfl.com/image/private/f_auto,q_auto/league/q3joomqliqwvrqs9vkmj
#> 483  https://static.www.nfl.com/image/private/f_auto,q_auto/league/n8s6juvkggzwt8ejry63
#> 484  https://static.www.nfl.com/image/private/f_auto,q_auto/league/pm0uewrl0ugotlc5wbpc
#> 485  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gpt7rscbkoi9r5jgnwi8
#> 486                                                                                <NA>
#> 487  https://static.www.nfl.com/image/private/f_auto,q_auto/league/v0lfmzjhnv5yrmbvhsit
#> 488  https://static.www.nfl.com/image/private/f_auto,q_auto/league/paqmqdfdbzhs6lqyqyck
#> 489  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jqlaite1e6jmuaix5hoc
#> 490  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gygsbp4t2adxymvojcgs
#> 491  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qjigzfy77ggztpmdczkk
#> 492      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2978744.png
#> 493  https://static.www.nfl.com/image/private/f_auto,q_auto/league/pmssb3pyiripkxwqmnqp
#> 494  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rzponjcvpyltdkwb0q67
#> 495  https://static.www.nfl.com/image/private/f_auto,q_auto/league/sot1ixufvhaujvpymkws
#> 496  https://static.www.nfl.com/image/private/f_auto,q_auto/league/oroebifwkpzeyvna7khw
#> 497  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dax89kaaa4us5hl7q5xr
#> 498  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ft2awuh3upfh4nflsvhq
#> 499  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qlsh3mbi7snbrkrmntun
#> 500  https://static.www.nfl.com/image/private/f_auto,q_auto/league/bfqusbplqk3lgnkgcnlb
#> 501  https://static.www.nfl.com/image/private/f_auto,q_auto/league/pph9jgnrnnlilxz8xhd9
#> 502  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xbpthatg7ednche6tfm5
#> 503  https://static.www.nfl.com/image/private/f_auto,q_auto/league/acknfodtk4xk4zqda3ws
#> 504  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xvej86ehszk3m1axhaga
#> 505  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zuymxrsnjsyejxakdk7s
#> 506  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wgmhrutvwjj1bubhzggo
#> 507  https://static.www.nfl.com/image/private/f_auto,q_auto/league/icygqo8vtrno20jo6ud4
#> 508  https://static.www.nfl.com/image/private/f_auto,q_auto/league/aqmk83v3pzsfsdvxlevx
#> 509  https://static.www.nfl.com/image/private/f_auto,q_auto/league/aq3jt3pg3l7duipymcvj
#> 510  https://static.www.nfl.com/image/private/f_auto,q_auto/league/n2rx4ofuatiddziyb4lb
#> 511  https://static.www.nfl.com/image/private/f_auto,q_auto/league/sll6ajvknoixlk3ilgag
#> 512  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qnftecggpaflwuz4u7is
#> 513  https://static.www.nfl.com/image/private/f_auto,q_auto/league/nhwpihyskd5hl0wnoxe9
#> 514  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fp5olqsgdbv5malqazzu
#> 515  https://static.www.nfl.com/image/private/f_auto,q_auto/league/oj54w5tjsim9prrsrwew
#> 516  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ztrl4dvbz64z5tkmsqod
#> 517  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xamcdivgeq7wbmmypeyl
#> 518  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zuiqxtecxqgtcflqaqne
#> 519  https://static.www.nfl.com/image/private/f_auto,q_auto/league/pjdiyojbnf8ywt3jg36u
#> 520  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rgl76qmfbpeqeq4jpuxt
#> 521  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rtuyukygeyfajygw1qwx
#> 522  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ekkomzqo2rrcm2z9drzb
#> 523  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lmymezpoqqoilijhe8z2
#> 524  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lbgusliinlqxlnd06gdt
#> 525  https://static.www.nfl.com/image/private/f_auto,q_auto/league/q3i6q1f4ph8b0nmlc31z
#> 526  https://static.www.nfl.com/image/private/f_auto,q_auto/league/s7ikeebwayb82lrugcvh
#> 527  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dromcxfbe6rb51ywc5w4
#> 528  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jrgjtvg35mtst6xfdm8p
#> 529  https://static.www.nfl.com/image/private/f_auto,q_auto/league/sbzljtflwciwxy4zr1nm
#> 530  https://static.www.nfl.com/image/private/f_auto,q_auto/league/z5pa49elohf2kxbd9iow
#> 531  https://static.www.nfl.com/image/private/f_auto,q_auto/league/f7lv8volfgwuuwjyvaji
#> 532  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qyvpu9j05il8dncustlp
#> 533  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ie9xzzuhytbb2oim91di
#> 534  https://static.www.nfl.com/image/private/f_auto,q_auto/league/nuvpbrdsrhlsjymuqjf9
#> 535  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ay7xu6je0iiizc0hifex
#> 536  https://static.www.nfl.com/image/private/f_auto,q_auto/league/t7c6ancmlyevcuyyybzg
#> 537  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mvclppna34mfpbvttdke
#> 538  https://static.www.nfl.com/image/private/f_auto,q_auto/league/x2vijibc7plpk4zb8idi
#> 539  https://static.www.nfl.com/image/private/f_auto,q_auto/league/aydbgbzesfhtthjsp5sa
#> 540  https://static.www.nfl.com/image/private/f_auto,q_auto/league/drfkuhsb7qqfdni2fywl
#> 541  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mistptbvdyav2tonc6jj
#> 542  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xr5asmkmibznsugs3icr
#> 543  https://static.www.nfl.com/image/private/f_auto,q_auto/league/e7kbibmanmsokutk0b0h
#> 544  https://static.www.nfl.com/image/private/f_auto,q_auto/league/awcd8f6kknbxr9dochdl
#> 545  https://static.www.nfl.com/image/private/f_auto,q_auto/league/r1mfdipevfntd5wqh0jj
#> 546  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rmuodgserlpix2rd7bmz
#> 547  https://static.www.nfl.com/image/private/f_auto,q_auto/league/heeegd3jswxvohosprpg
#> 548  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vtyiif99grti8avwoumz
#> 549  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kgiqm9wqj1gurqewpwxg
#> 550  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jrrg7l7cjqtnf7remjm2
#> 551  https://static.www.nfl.com/image/private/f_auto,q_auto/league/aemtussu71w2bxnsvo8g
#> 552  https://static.www.nfl.com/image/private/f_auto,q_auto/league/sdwmyjq2gzpwetuwut61
#> 553  https://static.www.nfl.com/image/private/f_auto,q_auto/league/s3g0kgjmwhvw69jewwyr
#> 554  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wieuqziklihqgtfcpxyh
#> 555  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ihrvxtjgkuxosczbbges
#> 556                                                                                <NA>
#> 557  https://static.www.nfl.com/image/private/f_auto,q_auto/league/olhw14pjioguxn8fgxvd
#> 558  https://static.www.nfl.com/image/private/f_auto,q_auto/league/htju3x2fvdzoduaqu2nx
#> 559  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fhvbn2cstui3nchv8vil
#> 560  https://static.www.nfl.com/image/private/f_auto,q_auto/league/k8tscnhd2iogsxqiefjs
#> 561                                                                                <NA>
#> 562  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lszj5sru2ar8viiupmfg
#> 563  https://static.www.nfl.com/image/private/f_auto,q_auto/league/r0fzveuohc8pxomjaknr
#> 564  https://static.www.nfl.com/image/private/f_auto,q_auto/league/iuu3wj8ijzzthdv6n6uw
#> 565  https://static.www.nfl.com/image/private/f_auto,q_auto/league/pucb3gqsidpxzivdp9hd
#> 566  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zy1arcaxeerecvvoz0if
#> 567  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ylpxwpfslvivpjeei4n2
#> 568  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kgobumruizuhdlec25yl
#> 569  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hbwkodg7y7fq7mf55tdb
#> 570  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tfsuhfqhkqtqbtaky7ug
#> 571  https://static.www.nfl.com/image/private/f_auto,q_auto/league/a0r7ddldn9pvbxpxhlle
#> 572  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cccuia3v6wict8w9ukbq
#> 573  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mx5gvpkq84jphclpkvux
#> 574  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qzyhfqljjhckv5ltvez2
#> 575  https://static.www.nfl.com/image/private/f_auto,q_auto/league/b258pzqp2nlfwwzori3c
#> 576  https://static.www.nfl.com/image/private/f_auto,q_auto/league/bxgw74r70ceehcdzxjkg
#> 577  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rhbi7ytncuiwshnywcgl
#> 578  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kriiu42m14not0pusw1a
#> 579      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919557.png
#> 580  https://static.www.nfl.com/image/private/f_auto,q_auto/league/bhghlnepvrsmsztx0wzh
#> 581  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fxclfdx8fz5cbuep6ngd
#> 582  https://static.www.nfl.com/image/private/f_auto,q_auto/league/p4khoqwg4cbtvkyxnyop
#> 583  https://static.www.nfl.com/image/private/f_auto,q_auto/league/sytj4awk8kseyootqzec
#> 584  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ahto29vlbqjktsnwad8h
#> 585  https://static.www.nfl.com/image/private/f_auto,q_auto/league/usajarypcyafoxvvkbqo
#> 586  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cv9mmzgmqr6jsaemerxi
#> 587  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vnzji51ny0rycaa1aqii
#> 588  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xf9bdi2cwdscblwc8xmf
#> 589  https://static.www.nfl.com/image/private/f_auto,q_auto/league/i5wquvyxjcerfijjikni
#> 590  https://static.www.nfl.com/image/private/f_auto,q_auto/league/co2kv5csfudl7jo2z4hz
#> 591  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gza7tbye4fcr4itbdkbl
#> 592  https://static.www.nfl.com/image/private/f_auto,q_auto/league/oo1xhyvqkk8qpbdvt0la
#> 593  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hbbvoa32ngbcisawtnul
#> 594  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ralcosywbuchbwjlrevs
#> 595  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jrezabzuqxsscfdmqm6z
#> 596  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kqtl4vkehiqfq7cvwi1a
#> 597  https://static.www.nfl.com/image/private/f_auto,q_auto/league/n1uiwlodqdwfrrvqyppb
#> 598  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zk6hcterqp7lpw0ffskz
#> 599  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cuci9w8pzqjqgneph8eh
#> 600  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mjuizsmqe51fedivwuh3
#> 601  https://static.www.nfl.com/image/private/f_auto,q_auto/league/pnkq1w3v797oefeqynfa
#> 602  https://static.www.nfl.com/image/private/f_auto,q_auto/league/x9lbcp0y9zchvstyy6of
#> 603  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jsfwgcqjqczgm0vqqjan
#> 604  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rmuagbaye1s4hfevcqov
#> 605  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jqmukfvyyzxlbzecxx1l
#> 606  https://static.www.nfl.com/image/private/f_auto,q_auto/league/z6tblkd9yjki0cthhogj
#> 607  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xpqaczsbl1kl7cjfyx9a
#> 608  https://static.www.nfl.com/image/private/f_auto,q_auto/league/uvomgvvyznh7vtvow3es
#> 609  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dua02qnpak2bkgj8ubdo
#> 610  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dlfvjrovpa1nzikbb6cf
#> 611  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gakfws2ki3j7zuvdllnh
#> 612  https://static.www.nfl.com/image/private/f_auto,q_auto/league/go13hdfp4ckq8cpit909
#> 613  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mo4jkdbhwgp3fcczc7kq
#> 614  https://static.www.nfl.com/image/private/f_auto,q_auto/league/w4nnz0yrfilgpexcseqy
#> 615  https://static.www.nfl.com/image/private/f_auto,q_auto/league/pnxqszmthyhqapoqaamj
#> 616  https://static.www.nfl.com/image/private/f_auto,q_auto/league/v2pjejpkwyokm363mciu
#> 617                                                                                <NA>
#> 618  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kehs9z6fpllcdqzdkvmo
#> 619      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045141.png
#> 620                                                                                <NA>
#> 621  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yxc7wd2wjemdizdmgktv
#> 622  https://static.www.nfl.com/image/private/f_auto,q_auto/league/uelur2x665hhkdopr9qb
#> 623  https://static.www.nfl.com/image/private/f_auto,q_auto/league/l0haqlbdizyxx5884uoe
#> 624  https://static.www.nfl.com/image/private/f_auto,q_auto/league/i6ra0ij27gmufagzugs9
#> 625  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mmvadusclf0hfx2ugomv
#> 626  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jrv3gfshg5muvgdr771h
#> 627  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mccexwewe7bcanfellg6
#> 628  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gx46ib9vgv9n12p240ji
#> 629  https://static.www.nfl.com/image/private/f_auto,q_auto/league/c54hv4azczae1vmfd4jg
#> 630  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rljeqg8eczqcywrgvx3y
#> 631  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vxnftbydcijsevgosh4l
#> 632  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zcpppyffdjhk4zgiyvwp
#> 633  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qihxt2ktwjan2xi2p6vk
#> 634  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jhfs1zx0b4rgzwpp9ocm
#> 635  https://static.www.nfl.com/image/private/f_auto,q_auto/league/aarbjpe3reauxnuo48ka
#> 636                                                                                <NA>
#> 637  https://static.www.nfl.com/image/private/f_auto,q_auto/league/nr3ig2afsm26uy5atgxt
#> 638  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tg2hruqbauvko19mhttj
#> 639  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rfkwyjmsjc28dm2oosbe
#> 640  https://static.www.nfl.com/image/private/f_auto,q_auto/league/v1aymd6o0vpg73ytxzhu
#> 641  https://static.www.nfl.com/image/private/f_auto,q_auto/league/pjmiuwbl35c1wetjcszr
#> 642  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zgqgouo8be09qvnrqdnr
#> 643  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dlewtpgr9e04k092p3k0
#> 644  https://static.www.nfl.com/image/private/f_auto,q_auto/league/n1rwkkcuaq90iv8bhqj9
#> 645  https://static.www.nfl.com/image/private/f_auto,q_auto/league/bzxdybo7yboaqo4ciepk
#> 646  https://static.www.nfl.com/image/private/f_auto,q_auto/league/j13nyurtcej8pa7jg494
#> 647  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yyb62mnfyphbutq3hpy7
#> 648  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hbswjnny5t9ytgdhybss
#> 649  https://static.www.nfl.com/image/private/f_auto,q_auto/league/m10y1skypqxyvigftdle
#> 650  https://static.www.nfl.com/image/private/f_auto,q_auto/league/htlt0h1p8gmpgrrbjyyj
#> 651      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4045702.png
#> 652  https://static.www.nfl.com/image/private/f_auto,q_auto/league/soaqewfl8xjea2lpzfth
#> 653  https://static.www.nfl.com/image/private/f_auto,q_auto/league/efvd9atmof0h8rg7xaqh
#> 654  https://static.www.nfl.com/image/private/f_auto,q_auto/league/afo3kftuqrvtkokmrnsi
#> 655                                                                                <NA>
#> 656  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dxtherbqeeqm21shpweo
#> 657  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yeobojameg9dram1qiqo
#> 658  https://static.www.nfl.com/image/private/f_auto,q_auto/league/e2rc5cshox75gjo3fqvu
#> 659  https://static.www.nfl.com/image/private/f_auto,q_auto/league/snw7popnt8cr1vwsk86q
#> 660  https://static.www.nfl.com/image/private/f_auto,q_auto/league/py4aiavlwbittnjjwfi9
#> 661  https://static.www.nfl.com/image/private/f_auto,q_auto/league/s7w7b3uxhppii72mttcu
#> 662  https://static.www.nfl.com/image/private/f_auto,q_auto/league/munogq6pr4gicsicbyhh
#> 663  https://static.www.nfl.com/image/private/f_auto,q_auto/league/z2clh7yjqbdklh5wsde6
#> 664  https://static.www.nfl.com/image/private/f_auto,q_auto/league/j74zpzosjgeqpb0ponif
#> 665  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ipvvq2xasootlkeco3ne
#> 666  https://static.www.nfl.com/image/private/f_auto,q_auto/league/iseh84hl26di8vkyeufs
#> 667  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yhwvont4oxflq3zrmorl
#> 668  https://static.www.nfl.com/image/private/f_auto,q_auto/league/aegvibrkoc45fnolwm4o
#> 669  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fekmzwjvfcejwze0ytwp
#> 670  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qu7p1a0kadgsllyj6efe
#> 671  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rbkf7jhc8u9qxmnjv8r6
#> 672  https://static.www.nfl.com/image/private/f_auto,q_auto/league/b9imtxv80jdlx3qujprs
#> 673  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vdkwablro0yjjghu5s0u
#> 674  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cpcmnzz4iimdwunoempf
#> 675  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ssorwzasqlx3sdajvegd
#> 676  https://static.www.nfl.com/image/private/f_auto,q_auto/league/d4dvirnzpho7qcg1grv7
#> 677                                                                                <NA>
#> 678  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mlpa1aiadnpxrrtebmrq
#> 679  https://static.www.nfl.com/image/private/f_auto,q_auto/league/k3tbwbsxrmaqoeim75gh
#> 680  https://static.www.nfl.com/image/private/f_auto,q_auto/league/uzwax3figcrcchmy9kls
#> 681  https://static.www.nfl.com/image/private/f_auto,q_auto/league/uagkszbjtcur2pacq9ws
#> 682  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gu2ra1qaamxxjxfikder
#> 683  https://static.www.nfl.com/image/private/f_auto,q_auto/league/nfzpwopmrdccg8or1hj4
#> 684  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ue1j0ljye0kejde3trpd
#> 685  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ecatteui73zaqdaclwpk
#> 686  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wupftkv7avwwwn3zpgw5
#> 687  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lxtfd4inknmj0b7t18qo
#> 688  https://static.www.nfl.com/image/private/f_auto,q_auto/league/sjm6u712fje7cfshc0fz
#> 689  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rnu8wochjear20qztilj
#> 690  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jief6zedctkh8mwrldid
#> 691  https://static.www.nfl.com/image/private/f_auto,q_auto/league/w1creporzpacssws48hc
#> 692  https://static.www.nfl.com/image/private/f_auto,q_auto/league/snecgvyjw6vnybty9h2n
#> 693                                                                                <NA>
#> 694  https://static.www.nfl.com/image/private/f_auto,q_auto/league/f4bgdcgcqskruujkwj3h
#> 695                                                                                <NA>
#> 696  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xsgsds82gsuwncvorohn
#> 697  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xiyiilew3pvfw5ooljop
#> 698  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ggbbhaplrwbit6f95kfg
#> 699  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wpvzh1otaplenuoadzdd
#> 700  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qpsvzsqxyy28ek9p4ajv
#> 701  https://static.www.nfl.com/image/private/f_auto,q_auto/league/eu3apwokras6idyebgm2
#> 702  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ggecgobgjaqe4kfc5xbx
#> 703  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dedxyda4r2q3bch7wxdb
#> 704                                                                                <NA>
#> 705  https://static.www.nfl.com/image/private/f_auto,q_auto/league/oxbcpkbddjlpjob9eang
#> 706  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kf5nafi8lfjagmu34puw
#> 707  https://static.www.nfl.com/image/private/f_auto,q_auto/league/i5ololaabbt2vegdcmiz
#> 708  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gi4h9bf097paru2rn1gm
#> 709  https://static.www.nfl.com/image/private/f_auto,q_auto/league/u6uanv3mp0skqysqv5wx
#> 710  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ycy7ozkprztdtbdh2qcx
#> 711  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ddolzdxiquvzxjgeqpnv
#> 712  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cpi7a8kxnsgooq1znl2f
#> 713  https://static.www.nfl.com/image/private/f_auto,q_auto/league/z49lxftvfwxy4iapefcl
#> 714  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qwqpjyjwxbexutq5obr9
#> 715                                                                                <NA>
#> 716  https://static.www.nfl.com/image/private/f_auto,q_auto/league/u31z5yjapsnu4tdltjk4
#> 717                                                                                <NA>
#> 718  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ctqiowlertpzlq7rzbri
#> 719  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yattccumaadclrl5nyo9
#> 720  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tuubv6qzpnz0ftralvzq
#> 721  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yazkcmz5ke0rz11p3vbo
#> 722  https://static.www.nfl.com/image/private/f_auto,q_auto/league/df6mgwpqvmrqo2rmles0
#> 723  https://static.www.nfl.com/image/private/f_auto,q_auto/league/oqfnlprsjpr6pziqzfoi
#> 724  https://static.www.nfl.com/image/private/f_auto,q_auto/league/c6mxeetitkc77hijys5y
#> 725  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mgwe4bpzdc7wvox8razh
#> 726  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xaxgjhlqbv3rwupmirmc
#> 727  https://static.www.nfl.com/image/private/f_auto,q_auto/league/n8wmfstlhnieqa8fll7l
#> 728  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dh6fxo1jdenrkgcwdpib
#> 729  https://static.www.nfl.com/image/private/f_auto,q_auto/league/d0whg6ebm1wtgknelxb0
#> 730  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wr6qpebx1gae91fqvxd2
#> 731  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mtzhc6otmzqlethc7rx5
#> 732  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fq01wtpj9pm8jxfahkre
#> 733  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dhxphqapdfou8dteqr6t
#> 734  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qo6hsquatehof76coedl
#> 735  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dednf5lb89gqlnqfk6lm
#> 736  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xid7htgxtc9nkfy32hyc
#> 737  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fsn8rvgup22r5e53mu7i
#> 738  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mbqinxum5qovm6p8xgkc
#> 739  https://static.www.nfl.com/image/private/f_auto,q_auto/league/pj1jwpbibtbpiu5zqh9t
#> 740  https://static.www.nfl.com/image/private/f_auto,q_auto/league/syek8itqtkh8ojh2bybi
#> 741  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mqx2ue8p1i49rsft8lrx
#> 742  https://static.www.nfl.com/image/private/f_auto,q_auto/league/bkkavfank2qmhnhuglcw
#> 743  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gr04vdf3sfnunemciftn
#> 744  https://static.www.nfl.com/image/private/f_auto,q_auto/league/myvfqoc15csgpbk6a26w
#> 745  https://static.www.nfl.com/image/private/f_auto,q_auto/league/drbkvw2aexgwiscjbazu
#> 746                                                                                <NA>
#> 747  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fe4iwsyp8kiiqjigeooo
#> 748  https://static.www.nfl.com/image/private/f_auto,q_auto/league/om2yhkg9dhplfjqdtfry
#> 749                                                                                <NA>
#> 750  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hhj7rcbewdora6whpicm
#> 751  https://static.www.nfl.com/image/private/f_auto,q_auto/league/s22rstrz8bboffen1sgp
#> 752  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mqexk15n5v8ddaq4mbhs
#> 753  https://static.www.nfl.com/image/private/f_auto,q_auto/league/s6caycurnpr25kauqfa4
#> 754  https://static.www.nfl.com/image/private/f_auto,q_auto/league/p4hvpndrktxbfgtuxcf5
#> 755  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ocvlkgngtzoooutrmbd0
#> 756  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wtyhkqrx12cgwqalzljq
#> 757  https://static.www.nfl.com/image/private/f_auto,q_auto/league/e47qktrkq3vm7y08m6rm
#> 758  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fbqce7fvmkukkbeqbfxs
#> 759  https://static.www.nfl.com/image/private/f_auto,q_auto/league/czcggxcju3wpskihqdlq
#> 760  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mknxfkbm4xuzsn9g17qf
#> 761  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xt6lcyhy8ooptwtn3ytw
#> 762  https://static.www.nfl.com/image/private/f_auto,q_auto/league/o0rf2qmuqeb5a74a91u2
#> 763                                                                                <NA>
#> 764  https://static.www.nfl.com/image/private/f_auto,q_auto/league/anloygiamgekdueiopwv
#> 765  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xpwo4ogsz25oq0h5ulpi
#> 766  https://static.www.nfl.com/image/private/f_auto,q_auto/league/eqyfoo5mcvkmys8xcuih
#> 767  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yixu3kh0ttqjsyjjgxc9
#> 768  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yissucgrb0yrtnssec8b
#> 769                                                                                <NA>
#> 770  https://static.www.nfl.com/image/private/f_auto,q_auto/league/oynpdpcko2vzw0cadcbs
#> 771  https://static.www.nfl.com/image/private/f_auto,q_auto/league/o9cvgns7rrmj58ekeftp
#> 772  https://static.www.nfl.com/image/private/f_auto,q_auto/league/u92ckywmylhd5j60lbgw
#> 773      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035166.png
#> 774  https://static.www.nfl.com/image/private/f_auto,q_auto/league/z6mo1djrlpdiqgsn8jn8
#> 775  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ulu5xaedamqifqhvtrcv
#> 776  https://static.www.nfl.com/image/private/f_auto,q_auto/league/diiumwnd8fvolhamlrkc
#> 777  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ez6bfwbler7mvwxbmlw7
#> 778  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qtyh6dv78h5dxhgdhscg
#> 779  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yqixlq7cxshjzxokzcn1
#> 780  https://static.www.nfl.com/image/private/f_auto,q_auto/league/abjcfi8hqapvflzbtupy
#> 781  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ewaslotogz7zffhbssum
#> 782  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kzoziuouhfl09iwoedpk
#> 783  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zjxdil3cup5gh9kbapzb
#> 784  https://static.www.nfl.com/image/private/f_auto,q_auto/league/flqlqvut6qzqezh4kdc8
#> 785  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qfhjyhvflvz6nkpkcxh5
#> 786  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jap5ckkanl826zn6bqoh
#> 787  https://static.www.nfl.com/image/private/f_auto,q_auto/league/on6pq7viowspr2alp60i
#> 788  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cic0gnrzwbzjzgl3xs09
#> 789  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ilkmbzjx0zedkey746gd
#> 790  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ixtrjzvzu8wiwis0xa8a
#> 791  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lw2t4etbroxjvovczyly
#> 792  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hezfhsyuvypsn0pvrlgt
#> 793  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kxcrmx8tkbwqzwfpkh8y
#> 794  https://static.www.nfl.com/image/private/f_auto,q_auto/league/h0c6k1ppnhf6qqonxdex
#> 795  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vyme2sblu5gthmewupqr
#> 796  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tdwiozlw6g5ddqp2dn1l
#> 797  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zhxgdtykdx17uj1kp4kl
#> 798                                                                                <NA>
#> 799  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zish1d1wbrhziswhsssd
#> 800  https://static.www.nfl.com/image/private/f_auto,q_auto/league/bno54l2ynmcbx6vnenmc
#> 801  https://static.www.nfl.com/image/private/f_auto,q_auto/league/awdbdlmagkg8cbtm99pc
#> 802  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wxqs7pygdfmjh5ldqov8
#> 803  https://static.www.nfl.com/image/private/f_auto,q_auto/league/s0xbom8sd6hvas6tsbus
#> 804  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cnh1gtyahehqjdgurazd
#> 805  https://static.www.nfl.com/image/private/f_auto,q_auto/league/bj80ocv0txmuhlinhis8
#> 806      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040468.png
#> 807                                                                                <NA>
#> 808  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xfwiwmk2qwmgaonmrha8
#> 809  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tqltdezz1nzpvkibcyha
#> 810  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wnpqokdzoydpgw1uptjv
#> 811  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wdovcclcrrlur2fqsrl1
#> 812      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4055171.png
#> 813  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mrc7qcxxzctrdpvnvhbh
#> 814  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fynx0mirag2uzhzxaz7k
#> 815  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zipmqilsk2sdlzcaroze
#> 816  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fmyveiekuvj5n7wkyykg
#> 817  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ip1zbhwbowhy8zkqzmng
#> 818  https://static.www.nfl.com/image/private/f_auto,q_auto/league/en0ul7l1m9aqf7wffufg
#> 819  https://static.www.nfl.com/image/private/f_auto,q_auto/league/i00p0fbwvrap6lq1hojw
#> 820  https://static.www.nfl.com/image/private/f_auto,q_auto/league/acgoty8ku9jlmxnhebgf
#> 821  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vn7amu5kcbujvp4bqqkt
#> 822  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kgcna4dcqcklfl0wra3k
#> 823  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hfjtsmseahvvdllps7eg
#> 824  https://static.www.nfl.com/image/private/f_auto,q_auto/league/l00otvibvkkskpk9pyxx
#> 825  https://static.www.nfl.com/image/private/f_auto,q_auto/league/byxkdxmivmsslupdbakb
#> 826                                                                                <NA>
#> 827  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mzdt60x8wmllrtjpxfsr
#> 828  https://static.www.nfl.com/image/private/f_auto,q_auto/league/z2ncjdeuvzbgi6yzzqf3
#> 829  https://static.www.nfl.com/image/private/f_auto,q_auto/league/imvhc7aufvkt5ny14c9n
#> 830  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rw4nc7qnvnqpzpfcrqzk
#> 831  https://static.www.nfl.com/image/private/f_auto,q_auto/league/unhcnjpbwzbykujxhcqe
#> 832  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mav5so7otgpdxr4p7vbm
#> 833  https://static.www.nfl.com/image/private/f_auto,q_auto/league/thfspx6c8befeosbsj1b
#> 834  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hun9pdqwtwz76tiac5d3
#> 835  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fvwbj7bxsq92xfcaqcqm
#> 836  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mhrcpjt2f5nrzhlosumc
#> 837  https://static.www.nfl.com/image/private/f_auto,q_auto/league/w2zhcr5cconyonvyhhbo
#> 838  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tyi7wsh7qizgfm8eca0v
#> 839  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lf3axvxomg2ktozc1rei
#> 840  https://static.www.nfl.com/image/private/f_auto,q_auto/league/uovzqufau5csdvcwazxp
#> 841  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ywapzyxj62nq8yyowlgs
#> 842  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jme0ggd6cybih66oodf3
#> 843  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fdpcxifdyxhdk35itti4
#> 844  https://static.www.nfl.com/image/private/f_auto,q_auto/league/imoayt0zuwudnhurbhs7
#> 845  https://static.www.nfl.com/image/private/f_auto,q_auto/league/pt80fu6d3vbvf1ihw3yw
#> 846  https://static.www.nfl.com/image/private/f_auto,q_auto/league/u5tzjk8jchiwmxc7ymad
#> 847  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tsgua6lcqdb7nobidicc
#> 848  https://static.www.nfl.com/image/private/f_auto,q_auto/league/eb3x24egzcsx5hba4e0d
#> 849                                                                                <NA>
#> 850  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dq5xdepvd9epndtffqpw
#> 851  https://static.www.nfl.com/image/private/f_auto,q_auto/league/uitmcndjoigwj54xi4ui
#> 852  https://static.www.nfl.com/image/private/f_auto,q_auto/league/h7egzj5ckzhn72mjbgot
#> 853  https://static.www.nfl.com/image/private/f_auto,q_auto/league/agrte01q8ilarobbl4tk
#> 854                                                                                <NA>
#> 855  https://static.www.nfl.com/image/private/f_auto,q_auto/league/x7povxl1crhw3z3g3i0e
#> 856  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mumqttrbtro2rdunk2aw
#> 857  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mkrswihwpxuk9sf4yblg
#> 858  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rzsic1fa4e7tnk1ylkpb
#> 859  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wkpxyg4gdbpos9sklnnu
#> 860  https://static.www.nfl.com/image/private/f_auto,q_auto/league/x4ry9gch7zg1aqmqg3y3
#> 861  https://static.www.nfl.com/image/private/f_auto,q_auto/league/voi5lunyluqcnshu6w0l
#> 862  https://static.www.nfl.com/image/private/f_auto,q_auto/league/h0dfvmm9ovjlvqzfx7qk
#> 863  https://static.www.nfl.com/image/private/f_auto,q_auto/league/khmytaut8cuoak8qytu7
#> 864  https://static.www.nfl.com/image/private/f_auto,q_auto/league/srzkn92ts9yojvu7erpz
#> 865  https://static.www.nfl.com/image/private/f_auto,q_auto/league/eihy0cpfpth9rwjymm3u
#> 866  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dnzuw6tcojowantso53c
#> 867  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dqsljajnfjlsmownudcd
#> 868  https://static.www.nfl.com/image/private/f_auto,q_auto/league/q8czqebbs7zyhbov9x5n
#> 869  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wvjn2xymkyjlgibmpghu
#> 870  https://static.www.nfl.com/image/private/f_auto,q_auto/league/feeih9gzlfmhopahafjx
#> 871  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cjmdczczyehbse8flhji
#> 872  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fnnlwnogehdndgjcczgc
#> 873  https://static.www.nfl.com/image/private/f_auto,q_auto/league/c5tlx2tkfrvgnoprqpxp
#> 874  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jyjstniyvbv82ihgml4w
#> 875  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zbifotpru1diyps8ro10
#> 876  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tx5jovbyswo3z4vnkmrt
#> 877  https://static.www.nfl.com/image/private/f_auto,q_auto/league/aregyiug8bzqf2a6nxz0
#> 878  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lhzazrddfwnoium4ctew
#> 879  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tzztlujo5qljcddtjqlz
#> 880  https://static.www.nfl.com/image/private/f_auto,q_auto/league/eadzze3cabrilg0sif1i
#> 881  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fnb16egqxsczb8qykv2i
#> 882  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yr3jfevbnetvxgebpn2n
#> 883  https://static.www.nfl.com/image/private/f_auto,q_auto/league/n1jltjcxvqyvtlm9pnqq
#> 884  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kvhkk7qctn43efsbhjlw
#> 885  https://static.www.nfl.com/image/private/f_auto,q_auto/league/rotgzgnky2lzltfcw1tk
#> 886  https://static.www.nfl.com/image/private/f_auto,q_auto/league/nhjoafscsbmruroqbshb
#> 887  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fcsmqw0nq4mw1wvji2z4
#> 888  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jxfkoekid7f3z5l3qxbx
#> 889  https://static.www.nfl.com/image/private/f_auto,q_auto/league/clqsy5kipa8z3ji4bytv
#> 890  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gaapguduyup4pkchpzbw
#> 891  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jglctwfw9gvj3hahtifm
#> 892  https://static.www.nfl.com/image/private/f_auto,q_auto/league/r8sjcujkhyb0hy093ru6
#> 893  https://static.www.nfl.com/image/private/f_auto,q_auto/league/pmowf95dk1dregucgmga
#> 894  https://static.www.nfl.com/image/private/f_auto,q_auto/league/bzzq8cwpttjtatcclfea
#> 895  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tbupgx2dwrivv4xghgik
#> 896  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zqpotuputftwxs3qxx38
#> 897  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mxwxbwae3dsmth9dvta2
#> 898      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239083.png
#> 899  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lt7dpkcsisbq1txestzs
#> 900  https://static.www.nfl.com/image/private/f_auto,q_auto/league/pkhucpae1jyvzuy1jrjl
#> 901  https://static.www.nfl.com/image/private/f_auto,q_auto/league/bq3rri2votzpxxoqqkif
#> 902  https://static.www.nfl.com/image/private/f_auto,q_auto/league/snmaivk9ikcatxwexvku
#> 903  https://static.www.nfl.com/image/private/f_auto,q_auto/league/c2jrnovgxeywltfkdkxh
#> 904  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zejqewn5e1xqh1dtjtlg
#> 905  https://static.www.nfl.com/image/private/f_auto,q_auto/league/seig86b9m7mmrsax5wfv
#> 906  https://static.www.nfl.com/image/private/f_auto,q_auto/league/piu0pe2y9rrejygsifav
#> 907  https://static.www.nfl.com/image/private/f_auto,q_auto/league/a6yncnoyqgzhirqvmkz2
#> 908  https://static.www.nfl.com/image/private/f_auto,q_auto/league/p3bmsboyvddc9gdvv88h
#> 909  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dbziyf56xr9vj3i2gbk5
#> 910  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tugaoqqf0midy3xzfusm
#> 911  https://static.www.nfl.com/image/private/f_auto,q_auto/league/plvwo6gjxatnhqo4lyjb
#> 912  https://static.www.nfl.com/image/private/f_auto,q_auto/league/agkex6nzvopiv5he5eqi
#> 913  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dwogubvrxkhj1h4cbnfx
#> 914  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tc11m4flcqv0f2szxkxm
#> 915  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ad89lw2t6v9bywmbh2uu
#> 916                                                                                <NA>
#> 917  https://static.www.nfl.com/image/private/f_auto,q_auto/league/a7uo32gsiwzxb9k3eiir
#> 918  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wriyln01fppggo6jwvc0
#> 919  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zcwkpnyqldpd23dqhkwi
#> 920  https://static.www.nfl.com/image/private/f_auto,q_auto/league/i8qrouusz4vbkmhcg0ks
#> 921  https://static.www.nfl.com/image/private/f_auto,q_auto/league/t0hjodkylsdpfcu03f2g
#> 922  https://static.www.nfl.com/image/private/f_auto,q_auto/league/oirrwmc0z3x3oogdrnek
#> 923  https://static.www.nfl.com/image/private/f_auto,q_auto/league/v5tzzalsktjaeeepc59o
#> 924  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wocfedv5zwidyey827lp
#> 925  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ht3nufjbzds7m0kejwf0
#> 926  https://static.www.nfl.com/image/private/f_auto,q_auto/league/luezod4cak1omsjp9cao
#> 927  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lrueopc9i7pmef6mwqxm
#> 928  https://static.www.nfl.com/image/private/f_auto,q_auto/league/sepi8bgltbbffwdkmwll
#> 929  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gxvn3bgubuyil8nvllol
#> 930  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ygvany93jpeadov6bygm
#> 931  https://static.www.nfl.com/image/private/f_auto,q_auto/league/eimpl9edungticlxoebb
#> 932  https://static.www.nfl.com/image/private/f_auto,q_auto/league/daftb6heqrchg4z8ko4h
#> 933  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mjxlm1it3ahs58xmrfpq
#> 934                                                                                <NA>
#> 935  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zezo4lfcef8kmzy4g11p
#> 936  https://static.www.nfl.com/image/private/f_auto,q_auto/league/fj7d47edlbjkzlzw6fob
#> 937  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tlctzrzmhpxnpulei0yr
#> 938  https://static.www.nfl.com/image/private/f_auto,q_auto/league/droyhpqa6r7legrqnad8
#> 939  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mgy7bk4q9zkbxymy2ojd
#> 940  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kf86blaxyebz3bkwlsc5
#> 941  https://static.www.nfl.com/image/private/f_auto,q_auto/league/o4jhrq3ehusy883szm9w
#> 942  https://static.www.nfl.com/image/private/f_auto,q_auto/league/orujrkmrq1jdafjnewww
#> 943      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516897.png
#> 944  https://static.www.nfl.com/image/private/f_auto,q_auto/league/dzqzcm0hn8j8g34lid7x
#> 945  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lcnbhc5yqvplx7y9puda
#> 946  https://static.www.nfl.com/image/private/f_auto,q_auto/league/euvqvi342bianu2rl6pz
#> 947  https://static.www.nfl.com/image/private/f_auto,q_auto/league/eucz0vddhsi4rxsfohzs
#> 948  https://static.www.nfl.com/image/private/f_auto,q_auto/league/myydxybkqvixwws3dtku
#> 949  https://static.www.nfl.com/image/private/f_auto,q_auto/league/agdblckn3ngoggra4c1b
#> 950  https://static.www.nfl.com/image/private/f_auto,q_auto/league/icoaurqkn1dra9irsbpt
#> 951  https://static.www.nfl.com/image/private/f_auto,q_auto/league/j72lz2t0pimryhsolye5
#> 952  https://static.www.nfl.com/image/private/f_auto,q_auto/league/uescmbrai0qt442qamzb
#> 953  https://static.www.nfl.com/image/private/f_auto,q_auto/league/juguyajzda73hagdkln5
#> 954  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gngo5zzylhonf52jmye6
#> 955  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gglxkj3wrbnrpem6sdxv
#> 956  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ou0xbrhjy4y8uispmmtz
#> 957  https://static.www.nfl.com/image/private/f_auto,q_auto/league/pi3o8fqd4zz2bsbvvjhv
#> 958  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kgpisbawjbtlu6zgfa6k
#> 959  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xe9u8ydyjz30l5tdimfm
#> 960  https://static.www.nfl.com/image/private/f_auto,q_auto/league/sdbafyrhxv2vvff9y1aq
#> 961  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wn4cbj6k13qwkvx5iqsq
#> 962  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ppap8wfihhya2o1ekket
#> 963  https://static.www.nfl.com/image/private/f_auto,q_auto/league/zkqkg1hwznqrt5irswhf
#> 964  https://static.www.nfl.com/image/private/f_auto,q_auto/league/t0ish7r74rich6jtsvv9
#> 965  https://static.www.nfl.com/image/private/f_auto,q_auto/league/qo9mz0rsgze4ckdkkilc
#> 966  https://static.www.nfl.com/image/private/f_auto,q_auto/league/npvfbt8kl2bnvzfarqbw
#> 967  https://static.www.nfl.com/image/private/f_auto,q_auto/league/j14bowh2oq14frmkbxpb
#> 968  https://static.www.nfl.com/image/private/f_auto,q_auto/league/xyp7l8lzl9qiqlyaq7fk
#> 969  https://static.www.nfl.com/image/private/f_auto,q_auto/league/reertkarzxaguz8w1mux
#> 970  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gcsm3pugtannqqvxorcr
#> 971  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kj7juhxvfhrwuhwpchhh
#> 972                                                                                <NA>
#> 973  https://static.www.nfl.com/image/private/f_auto,q_auto/league/cwk09xn4alstkxyrowfg
#> 974  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lbgksyzry1eiw8uvort8
#> 975  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wuiw11qrmsrriqit2dr3
#> 976  https://static.www.nfl.com/image/private/f_auto,q_auto/league/lgw94eujfrtqtvjvjhfs
#> 977  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ahx6layjbghvi0aovzqh
#> 978  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hh8azxeqpydxofvo0suc
#> 979  https://static.www.nfl.com/image/private/f_auto,q_auto/league/tm8zrpwj62zkn2mqxef1
#> 980  https://static.www.nfl.com/image/private/f_auto,q_auto/league/eupgxctqwpyzysvgz29z
#> 981  https://static.www.nfl.com/image/private/f_auto,q_auto/league/mpwvanv7drzyrefqgenh
#> 982  https://static.www.nfl.com/image/private/f_auto,q_auto/league/u6p90ptskdrcfpzfzafw
#> 983  https://static.www.nfl.com/image/private/f_auto,q_auto/league/aspau9t4rjwirkedoz5o
#> 984  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jpowpgjn6nm6umrls2px
#> 985  https://static.www.nfl.com/image/private/f_auto,q_auto/league/wkjzrhylwknzyztlza5g
#> 986  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gxrbyvfiqgip3jyrraj0
#> 987  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jqxgzhgrqpopr5xperde
#> 988  https://static.www.nfl.com/image/private/f_auto,q_auto/league/gjy7rajtbatcv3b2l57g
#> 989  https://static.www.nfl.com/image/private/f_auto,q_auto/league/waiqrdmxxu0as9vmp93h
#> 990  https://static.www.nfl.com/image/private/f_auto,q_auto/league/vf7qexjmputzrfdjg84k
#> 991  https://static.www.nfl.com/image/private/f_auto,q_auto/league/jynlatjhodxmprbwdtpt
#> 992  https://static.www.nfl.com/image/private/f_auto,q_auto/league/yzw2xy9ibxvwfogeywcx
#> 993  https://static.www.nfl.com/image/private/f_auto,q_auto/league/kpw62er9irwn7sxayn0z
#> 994  https://static.www.nfl.com/image/private/f_auto,q_auto/league/e8azmhotxrq3msxluikm
#> 995  https://static.www.nfl.com/image/private/f_auto,q_auto/league/u65wow5psi79iegrpvck
#> 996  https://static.www.nfl.com/image/private/f_auto,q_auto/league/sz92gzueu4lezhvc6zgj
#> 997  https://static.www.nfl.com/image/private/f_auto,q_auto/league/ymvdhxjb4yvtpt8hvrfj
#> 998  https://static.www.nfl.com/image/private/f_auto,q_auto/league/hxerspgvszxel5frf2ez
#> 999      https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116182.png
#> 1000 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lvte1rnwzh7j5amqyfkh
#> 1001                                                                               <NA>
#> 1002 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xocz1xxst4wbh4cgfp9k
#> 1003 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fjhb4qyjvr5cljohmee6
#> 1004 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uxxbb3hkjzxmjuy06psh
#> 1005 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mcfdd6indtpjzydbmsbs
#> 1006 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y4msjj3juc7rg08twriq
#> 1007 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e4jcvzvikxhyja9xlyig
#> 1008 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qwo8cfufthus38xlarsk
#> 1009 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yzemuhsmmklzfbgjfjyd
#> 1010 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pkzepgh0u1nvnfmages8
#> 1011 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jqn4j0lbcpcqaatxlicg
#> 1012 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lkzsgjqf6oqrlflhedml
#> 1013 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e8qg2lwzsvr5qwshfvmz
#> 1014 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xlab3zv5zsx18dor6vu2
#> 1015 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hvoaj4axkg8dh1mgkoaq
#> 1016 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q2n2vw6urnyy4sh3mt1b
#> 1017 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ljlpj1j8njbpnb2qubcn
#> 1018 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dc5qjoqdkt4craiuem8k
#> 1019 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a72rvkhlnwvavlnkddtd
#> 1020 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ccdzxzupthdhvf91o9qb
#> 1021 https://static.www.nfl.com/image/private/f_auto,q_auto/league/c2yt5xre09eimjcomg6y
#> 1022 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cvwavgiresxpauduv0z6
#> 1023 https://static.www.nfl.com/image/private/f_auto,q_auto/league/anlrieol0pmf5pxfuzyq
#> 1024 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iikfm5jz08pwqqwlf8sz
#> 1025 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sgccdl7z98dgiyghfuyc
#> 1026 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t9zffott180l5gsmgcoc
#> 1027 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tkhzsyzoftwrsngkouo9
#> 1028 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gr3gd0bcwxcvs7ljlseb
#> 1029 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ktpmkhzkelaoolghpeks
#> 1030 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t6us6rwrgjx0bxehbfvb
#> 1031 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tsrxj7wwwmkjrn89pha6
#> 1032 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tfzw8nrbwviwn2saxhvi
#> 1033 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ilvpaewox8lirbss3lqd
#> 1034 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ju0rijizfm2egvlzygqy
#> 1035 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o7upnr0tycrzeedfilrd
#> 1036                                                                               <NA>
#> 1037 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qdcei3e9x1s9gdu87d8z
#> 1038 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yuwmge8t6anhuu1d9qwd
#> 1039 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w2uuz8nnm26wdpzs5e0d
#> 1040 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bqloy4fop2ydpkttntxu
#> 1041 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rdvlm7bp8dzs33gtjlsm
#> 1042 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cc5uuhuvtvkmi1q1ii83
#> 1043 https://static.www.nfl.com/image/private/f_auto,q_auto/league/idn6khivbm9hdd1ctr5n
#> 1044 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h1uyjqcly6xgykmhbdfn
#> 1045 https://static.www.nfl.com/image/private/f_auto,q_auto/league/d1rsygdspvaoobwgdiw9
#> 1046 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bloghh09cssnpiu8ilpv
#> 1047 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jacja3fzyxzj1fmumlrw
#> 1048 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hpobzktnk62maljcytbd
#> 1049                                                                               <NA>
#> 1050 https://static.www.nfl.com/image/private/f_auto,q_auto/league/l1ryam8nm1o7kiqokvn9
#> 1051 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ev2bsoznffgizbbgelmo
#> 1052 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kozishypg21m2xyks2id
#> 1053 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ccvhwtdbxzois92bzq6r
#> 1054 https://static.www.nfl.com/image/private/f_auto,q_auto/league/czoxlsivgbmnpvu9uvjv
#> 1055 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tzdrodjxzd0syr10hk59
#> 1056 https://static.www.nfl.com/image/private/f_auto,q_auto/league/afip2no4b12vehimigoc
#> 1057 https://static.www.nfl.com/image/private/f_auto,q_auto/league/knste0x5ilishvu8kbqz
#> 1058 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hxs3xnevfmnhdrghgfrk
#> 1059 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vg7jnihyyljkmncjir0k
#> 1060 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rwce2yi6lcykdletcuvk
#> 1061 https://static.www.nfl.com/image/private/f_auto,q_auto/league/n1ninvtq7apvrvo3m8ze
#> 1062 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w9iycoszneg2j0vhqfq0
#> 1063 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r2zg2yayyke2lsa8uwow
#> 1064 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xiki85k0wmbixnjmsjnx
#> 1065 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zzk8nhal2wi51xdbw7bm
#> 1066 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lgxdu1rlo4cdshjkaceq
#> 1067 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sc2pqxzxhd0stvbgo0u4
#> 1068 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ql25zd8ujbafzjnmu6he
#> 1069 https://static.www.nfl.com/image/private/f_auto,q_auto/league/im5izochiwh6qjrczd0f
#> 1070 https://static.www.nfl.com/image/private/f_auto,q_auto/league/drd7rnp52i21bsgiffpu
#> 1071 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y7dtsyyjnoafefkbylbb
#> 1072 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m8gb3zubjpt9i02plbul
#> 1073 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wa1jecqwos8s5mslgvqk
#> 1074 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jrgczv5kcjn4lu0y7lgt
#> 1075 https://static.www.nfl.com/image/private/f_auto,q_auto/league/smknhk5btcy440w4qegq
#> 1076 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kxfbhoxd0iqvufgqwnc3
#> 1077 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w4bjagx9z3mmt25mnng6
#> 1078 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wyr1xp4hjugbcwkyzucr
#> 1079 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uhiqijwwryizqe830g7m
#> 1080 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vc6iat2v5vv9nchd30ip
#> 1081 https://static.www.nfl.com/image/private/f_auto,q_auto/league/etz06w7s0ardf49mnayz
#> 1082 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lqzmpmihymmrkoiufbxc
#> 1083 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qls2a7h4ujxn7m4fj05y
#> 1084 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k8vc5hzdpnsrc0yl9epg
#> 1085 https://static.www.nfl.com/image/private/f_auto,q_auto/league/capkuyfgpghldch9dzl7
#> 1086 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f3z5yinzicnr0phuhewt
#> 1087 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sgkxjpz7oqrlcttuxl1p
#> 1088 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ftfx69g44leb47fivkrp
#> 1089                                                                               <NA>
#> 1090 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uenz2eslvz3xc76hsweb
#> 1091 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kezxowzth44qm6wo1fgt
#> 1092 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ayxtc9ahjmx8z881d993
#> 1093 https://static.www.nfl.com/image/private/f_auto,q_auto/league/i7qnnvfo48vs7supvhbh
#> 1094 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sbs2slso8tez89rwsk3v
#> 1095                                                                               <NA>
#> 1096 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vj7ythe0bue256xfeyhl
#> 1097 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t12hjdssquqoazcoygrs
#> 1098 https://static.www.nfl.com/image/private/f_auto,q_auto/league/clcb7mu29xsk9fkzl2he
#> 1099 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yylt71x42jptfculvsyy
#> 1100 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fdtez8gzdyagyhmmvfyp
#> 1101 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cakadc7rhtcx4k2kuwwl
#> 1102 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pgqksilohuni0rvinboo
#> 1103 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ybhysatv7kuwq1k6gfp1
#> 1104 https://static.www.nfl.com/image/private/f_auto,q_auto/league/orbwmzogmxytlb5rk4i4
#> 1105 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dpmg7d1adswrxeexktq7
#> 1106 https://static.www.nfl.com/image/private/f_auto,q_auto/league/b0wga3st7ii69fzzjd4o
#> 1107 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oeocnjnpr5pfug86s0lu
#> 1108 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xksopqkqffu0p5j0tu60
#> 1109 https://static.www.nfl.com/image/private/f_auto,q_auto/league/siupf4yvtt6m2vo8eed9
#> 1110 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ccwj8s59egpgmchmm3lq
#> 1111 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tkugwqqveabh5m7t7pps
#> 1112 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gjgbrpsowxdfv15rx6pz
#> 1113 https://static.www.nfl.com/image/private/f_auto,q_auto/league/glgyymq2am1i3hbpmhif
#> 1114 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gtoco7x2teb6eghdsorm
#> 1115 https://static.www.nfl.com/image/private/f_auto,q_auto/league/smhy7l9opfdmcul6edih
#> 1116 https://static.www.nfl.com/image/private/f_auto,q_auto/league/s2mka4eoek3v79p2i7rx
#> 1117 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ayced1avtwaetpot7asn
#> 1118 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r6oma0himdaye4zlrxr9
#> 1119 https://static.www.nfl.com/image/private/f_auto,q_auto/league/knrjjdgrvcwyn4e1ubgw
#> 1120 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pxpmvrtbavinff4wxs40
#> 1121 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qdd3dcj1cukyqvxzn1zx
#> 1122 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lmidycwxnt5cdn7vczlv
#> 1123 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ijub5gtqtlsdkxt8liqy
#> 1124 https://static.www.nfl.com/image/private/f_auto,q_auto/league/puict1fkrbk0kefqbje5
#> 1125 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tjndg2fbyiab4voukxbh
#> 1126 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pxuuinvmerui6z68eqku
#> 1127                                                                               <NA>
#> 1128 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pqpcbrgkil4or9n6m5uj
#> 1129 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hdhsrdzx56sg5gvsojcv
#> 1130 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k98hfxesnnlimeebjsfx
#> 1131 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vd3bpx6fhrx6thicas7c
#> 1132 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fw7bssrk9y8dxdrvr0d7
#> 1133 https://static.www.nfl.com/image/private/f_auto,q_auto/league/scli6hnc1hhn1plthmxl
#> 1134 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dr91vzzovl55abcgffzp
#> 1135 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dua1w1wtqhfxcmzdvkqr
#> 1136 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tvxbme0mc4uijfrbgmtm
#> 1137 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f2mqlmg48z606cxwqpg0
#> 1138 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hlsrgpdfng7ya7yz583c
#> 1139 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ixb0ikr4y6lzkfrh8hp0
#> 1140 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kr0mgxrdzlyyd2df9tfo
#> 1141 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a40sp2qa1pdmwg3tcvpr
#> 1142 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iqzsvrlor4qbqtfgrslj
#> 1143 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zghk3vzfeltwtxw4exqx
#> 1144 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jm4v9amvyif39x6lovtl
#> 1145 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ztwpjz1jdxa9w67ll6h4
#> 1146 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jwmyzmga2uqmrn2eif58
#> 1147 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a0grkhwg2x05h0i9nwyv
#> 1148 https://static.www.nfl.com/image/private/f_auto,q_auto/league/b1cfqpc20cdd9jubfmqu
#> 1149 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rp3euc21iwidtifjb08z
#> 1150 https://static.www.nfl.com/image/private/f_auto,q_auto/league/stdtqk45pl36yustnrnr
#> 1151                                                                               <NA>
#> 1152 https://static.www.nfl.com/image/private/f_auto,q_auto/league/komdw34m3vpzadqftxzh
#> 1153 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m9cb8rixmnsvjtpfw914
#> 1154 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t1foexzq6kbx6ndgl3nf
#> 1155 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vrssfndxep2hftp5l9qa
#> 1156 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jwawldmqzentojoszile
#> 1157 https://static.www.nfl.com/image/private/f_auto,q_auto/league/egrn6zaouo2iuvijgewj
#> 1158 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fonf62yul2nrrg6j8qbi
#> 1159 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hfnbhmqjltuwkcj2yqmh
#> 1160                                                                               <NA>
#> 1161                                                                               <NA>
#> 1162                                                                               <NA>
#> 1163 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h6abyvmg2g93llboizi6
#> 1164 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oy2q51ipxv9x0pbxvave
#> 1165 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yi44j4tdyluo1i8uhi1h
#> 1166                                                                               <NA>
#> 1167 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ggnmyx9xcoktbroccpfn
#> 1168 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wuvsns7v50wuqzlxqcik
#> 1169 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m7ccuvmvbmlvsifgolts
#> 1170 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mrren8m5euy8x1amvqus
#> 1171 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e20uw7isxeiwznp91tol
#> 1172 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nl0neg5wgelkv3x0a4gc
#> 1173 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jaln01tmvjtwyr3q2en7
#> 1174 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rdpp1eiaqse92yvujbs0
#> 1175     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980808.png
#> 1176 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mzmnlq7h25nsless0hvr
#> 1177 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rnqfuvudqkxumzde9wl8
#> 1178 https://static.www.nfl.com/image/private/f_auto,q_auto/league/b8kor0sgeynyd8u8cush
#> 1179 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jhiv3hec1nnxwg4ok46w
#> 1180 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qvw5wc7kmcnage2enras
#> 1181 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jvo3op0nwyl8mwdxcnof
#> 1182                                                                               <NA>
#> 1183 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ijn15b9ccehktt8meecb
#> 1184 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uyu9kvg7jgtt1mkgeksc
#> 1185 https://static.www.nfl.com/image/private/f_auto,q_auto/league/otx6wc3yflbde6uwbsws
#> 1186 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gsomles3hbydur7n29tu
#> 1187 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gtefwibkuf3tduasogmk
#> 1188 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wgfdyqesc3nx0wlwz6w8
#> 1189 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vywkfhxwsffnnnjlzyys
#> 1190 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lrfcdqj1kn2gbcjjaycd
#> 1191 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y0wvutgow5rcldezmrsz
#> 1192 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ezvm4cnie3ywsd0utfaz
#> 1193 https://static.www.nfl.com/image/private/f_auto,q_auto/league/g76gtua5fautqaqnv3ce
#> 1194 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ut9kjunhvy0d4fagofti
#> 1195 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kfdj7qwtuacwzkfyidsu
#> 1196 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bxgihzeaxlssykspjgej
#> 1197 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zlpgdrd2lcmf4vtrfczs
#> 1198 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m10jhmhduafuigbbtxbq
#> 1199 https://static.www.nfl.com/image/private/f_auto,q_auto/league/toi3pm7v7crijy6fthnj
#> 1200 https://static.www.nfl.com/image/private/f_auto,q_auto/league/i6bzrc6jonrb9fdpxyzg
#> 1201 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mz4af10ts76jiny3evtj
#> 1202 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xszgkajjvzqoczqlpkhb
#> 1203 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gxdywrmbpniiijpodwi1
#> 1204 https://static.www.nfl.com/image/private/f_auto,q_auto/league/c6xpx3mn0vdr6cpcaoqg
#> 1205 https://static.www.nfl.com/image/private/f_auto,q_auto/league/joi0vr3u12zuuqvbbmus
#> 1206 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rnt7iht5ffvreozswjsx
#> 1207                                                                               <NA>
#> 1208 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nmyqelmqbzi3llftotxn
#> 1209 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kvcgtssid8olzwbv3jd9
#> 1210 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tfof0p2mquk80e2brctu
#> 1211 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xhuzrphb7os0a065r2qm
#> 1212 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vxifdafccawoaasdl3cu
#> 1213 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t0tnv71zmj8w0webceq6
#> 1214 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wtuzng09z4afot9to3ii
#> 1215 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f5wku16ni4o2mafug0nf
#> 1216 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ukhajdt3spraz4mgqdos
#> 1217 https://static.www.nfl.com/image/private/f_auto,q_auto/league/byfz0pxbrv5ixjofijjl
#> 1218 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gsqwvgmsmkcyt6nl3wfj
#> 1219 https://static.www.nfl.com/image/private/f_auto,q_auto/league/da0vdjakiywqnzg9hxyg
#> 1220 https://static.www.nfl.com/image/private/f_auto,q_auto/league/svyakmkqg0upervnd2vt
#> 1221 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xnpejxpkdlidxx52psla
#> 1222 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lcese6umic2dgfnn2tsx
#> 1223 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uirmmjm9beujcumcueu9
#> 1224 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hv5hw11b417jpoqdbc8m
#> 1225 https://static.www.nfl.com/image/private/f_auto,q_auto/league/c8bxdmnu7tt1mzrwu8xy
#> 1226 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lgln5s2tsk9prf32khyu
#> 1227 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x89qwtgw3sypzgxhcuzi
#> 1228 https://static.www.nfl.com/image/private/f_auto,q_auto/league/v8xsxgzmsw0qvmzbiv1r
#> 1229 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uze19svkuxg09c05x5sw
#> 1230 https://static.www.nfl.com/image/private/f_auto,q_auto/league/psjnyaiusm7zv7bxl9yp
#> 1231 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w8j5kizyezlvoukxmunf
#> 1232 https://static.www.nfl.com/image/private/f_auto,q_auto/league/unlcob2cwhlkbhcqxqpa
#> 1233 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nyagacdtgj26vf4evn7w
#> 1234 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xiz9rvkn1eigusmdfc4s
#> 1235 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ypki87zzvmjyus9ncktq
#> 1236 https://static.www.nfl.com/image/private/f_auto,q_auto/league/p87tgkwcrzbzwdvzbjfn
#> 1237 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qpmv42ldpkpdf1gpgeua
#> 1238 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nfjjpwabak6dxoy93rei
#> 1239 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jgpqcnw0pdx9hic7ifia
#> 1240 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bsfir2mdioneudbffkgt
#> 1241 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mztfclgp3wjubbrv4dk5
#> 1242 https://static.www.nfl.com/image/private/f_auto,q_auto/league/twzibxumn3i7qz3geatg
#> 1243 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hlkfbgquvlxs4qchahhd
#> 1244 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cqf4phwjndfzlju35ax5
#> 1245 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nnohihcreufslwixt92x
#> 1246 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nfuvxexlyqkcfr4ug9ng
#> 1247 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gnnwpzveo1efn8a6u1ut
#> 1248 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rotbubimax9ynluqflao
#> 1249 https://static.www.nfl.com/image/private/f_auto,q_auto/league/adrvlvekklnb2zratimi
#> 1250 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fmsyu4gzo9yvrgw8gzre
#> 1251 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hjpk7acwmiflpfs0zop8
#> 1252 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ekqayurhdocxuvimyjy1
#> 1253 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gjydumzkxelrd5rziupn
#> 1254 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x09ruarqlcrdsjqq5mpg
#> 1255 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m3mjzca8dvzntezgnuvl
#> 1256 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o2dsxwygen2iqfheouio
#> 1257 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zl4di9nvfm85r7kgpusk
#> 1258 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zlldmz6p1kcwhrdvy5ob
#> 1259 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zkrdtuid0lmeopve1c7e
#> 1260 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hbngdzf66ssvjgbjd9oz
#> 1261 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cey4dkuhkbiiznsfoij1
#> 1262 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ohydfhzyltb4qbnqz1ti
#> 1263 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ocqf9pfsebewksnzokrg
#> 1264 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h8ikckvb7buucfvgteep
#> 1265 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nyuib9puw6erjti40seu
#> 1266 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w7gtl1dtwfq9b8xhszlu
#> 1267 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nhs9n1ocfes6azgxoikw
#> 1268 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pwe5lz4ceke5qikfi1nq
#> 1269 https://static.www.nfl.com/image/private/f_auto,q_auto/league/thhdisnnjrpbars1gwmb
#> 1270 https://static.www.nfl.com/image/private/f_auto,q_auto/league/meudkgbxwvhem60pvbj5
#> 1271                                                                               <NA>
#> 1272 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oh0w011tokgu6uxsx1ff
#> 1273 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gzefiualywwpg8kiot8g
#> 1274 https://static.www.nfl.com/image/private/f_auto,q_auto/league/upgcvre5h83rid4j1tlk
#> 1275 https://static.www.nfl.com/image/private/f_auto,q_auto/league/phnmwvaekzhjo4xbd11z
#> 1276 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jai3pabgdseboo9pnk2w
#> 1277 https://static.www.nfl.com/image/private/f_auto,q_auto/league/haacftqavtvq7dnvph1g
#> 1278 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zrgwnzdzua8n1rwte14q
#> 1279 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vvuddxyxmf3olzuat78r
#> 1280 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lccpwxdqcyc4iznxdxw0
#> 1281 https://static.www.nfl.com/image/private/f_auto,q_auto/league/i9dtwf5hiej9myqtyxzo
#> 1282 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q82lvlwkcijt1lzoa7ux
#> 1283 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wtgrfvcwtkinvvzycba5
#> 1284 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bhcvmzoh122jhyi8vwqg
#> 1285 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dea5d9nci7doege3worz
#> 1286 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e03ninsuccuishyezubp
#> 1287 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kzoq6eu8rrysenxehaq9
#> 1288 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pwsqcjlasthhkhocbgve
#> 1289 https://static.www.nfl.com/image/private/f_auto,q_auto/league/c77wk6vvspzdvzalanml
#> 1290 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rmuulbfxmlwkqb07qfwm
#> 1291 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vsa0egebclbkccj7uzwp
#> 1292 https://static.www.nfl.com/image/private/f_auto,q_auto/league/knamkmfbcuah7oqiqhfz
#> 1293 https://static.www.nfl.com/image/private/f_auto,q_auto/league/roxpfvldz3p4w6xtlmao
#> 1294 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jucgp7oauvmcw3879afu
#> 1295 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mpzmyvgjzjl4n6rtn1wg
#> 1296 https://static.www.nfl.com/image/private/f_auto,q_auto/league/izc67q2zazfdr3hpkrez
#> 1297 https://static.www.nfl.com/image/private/f_auto,q_auto/league/seaj34aw44jmekiyvspw
#> 1298 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kb13aouzr49c8l3j9ere
#> 1299 https://static.www.nfl.com/image/private/f_auto,q_auto/league/imetresqtxpqaqwu4iyv
#> 1300 https://static.www.nfl.com/image/private/f_auto,q_auto/league/s2axqnddrcjnl2c3h4xp
#> 1301 https://static.www.nfl.com/image/private/f_auto,q_auto/league/umz3gmpfjc4ehtjpejgr
#> 1302 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q2jqgcnnnv3d7zdd3u0v
#> 1303 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q0u1eucz4oiuebjdehqf
#> 1304     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052422.png
#> 1305 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nzhbqhrtqaw6kg3ffzvr
#> 1306 https://static.www.nfl.com/image/private/f_auto,q_auto/league/c2sw2gr32ni3y8rqzsgk
#> 1307 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ovyaew2xcj8ksg1qbskx
#> 1308 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gzekuotycohnme4bgqbj
#> 1309 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qmm49v91qv9ghgruhbac
#> 1310 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xvuhkihzmd2zygo4m4ph
#> 1311 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rhlscpiy7nxrkennikxy
#> 1312 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ygozowtuqdounmiqgnfk
#> 1313 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tlg2oo5yrk6mins3nxxe
#> 1314 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tdf5tpwxekg03cujr5q5
#> 1315 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xli7ksdowuxbp9fxydnt
#> 1316 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ccukshhoancicaw7j0nh
#> 1317 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hf6svwovhi83xfee214j
#> 1318 https://static.www.nfl.com/image/private/f_auto,q_auto/league/p00rdx54lyoiefnpipi3
#> 1319 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xg74gjuqnd9e03fqplot
#> 1320 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bvb7x487fiolt7c3hlke
#> 1321 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qsp6ncqgwc9uyrgptyrc
#> 1322 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vhwynoou6ntywjxxdv6x
#> 1323 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dbicx1q8nfltn15m7oqg
#> 1324 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yjyjmyhi0vhh6p5atopj
#> 1325                                                                               <NA>
#> 1326 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ptrrzsvtzxyoae4uhvss
#> 1327 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dzjfasdzid8lfjwsbjfi
#> 1328 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bcm53707vuxzjyml1ujt
#> 1329 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hmhdj4zf7rv2fiffzpg0
#> 1330 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ou2xaaifjc9pnnheo5wa
#> 1331 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ntxr4nalgvk0hszuoggg
#> 1332                                                                               <NA>
#> 1333 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wtcqldbyzmcdvsmgez1e
#> 1334 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gq2eoy47emmufovspzgp
#> 1335 https://static.www.nfl.com/image/private/f_auto,q_auto/league/isxo1qciv0ikmo8urkpc
#> 1336 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xqtzdzijqm9hwzibtl4o
#> 1337                                                                               <NA>
#> 1338 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ex3zzzxojejpl5rqskmq
#> 1339 https://static.www.nfl.com/image/private/f_auto,q_auto/league/atwcq5nczzb5k85fince
#> 1340 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ciojowlm1oqc6onkec8u
#> 1341 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xw0jhb7zeobj4bkxfpwg
#> 1342 https://static.www.nfl.com/image/private/f_auto,q_auto/league/c2xg3yvhm3zw3i9hlil1
#> 1343 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sasgihbyjgfnkhfpaykm
#> 1344 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jguzrnumgssdolz4g9hl
#> 1345 https://static.www.nfl.com/image/private/f_auto,q_auto/league/v6br1z7iifzh2wjzwnx0
#> 1346 https://static.www.nfl.com/image/private/f_auto,q_auto/league/htswbo6n7zpm25g6kx04
#> 1347 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ppt4vfmrvdoqkenjwd36
#> 1348     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932348.png
#> 1349 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hine22qpkzn63kuakg6y
#> 1350                                                                               <NA>
#> 1351 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m4uyqdmyfv8hbu84iwgy
#> 1352 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cqch9saqrj3mbeclnlwr
#> 1353 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yut5typ5hmpbucewbnwd
#> 1354 https://static.www.nfl.com/image/private/f_auto,q_auto/league/v31nguuj9cggcpuyzzdh
#> 1355 https://static.www.nfl.com/image/private/f_auto,q_auto/league/htrwb6eztsrtm8a7j3sj
#> 1356 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wphqpvexhen7vk9kbiqt
#> 1357 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jaqyw8qskbtw9xayb9w5
#> 1358 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xgrvp91kglcuwlvhasim
#> 1359 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gtcvlfetdzz2sdsmqf7v
#> 1360 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wgektzgcaziyzxpsdxjb
#> 1361 https://static.www.nfl.com/image/private/f_auto,q_auto/league/i0emgafbvmyebeflmhhr
#> 1362 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jvlc8fiuzpmnykcmsjx7
#> 1363                                                                               <NA>
#> 1364 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lack1mjtnzhtguhqdrcl
#> 1365 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rndkjxv1yfj0v6ckps03
#> 1366 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aql93l9dhsmcmcka4hjv
#> 1367 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o2wld73e9qcbv4iylc4y
#> 1368 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pkubnsjwoiuwwwxa9bi3
#> 1369 https://static.www.nfl.com/image/private/f_auto,q_auto/league/n7o7cn3khsjxnsgc7adx
#> 1370 https://static.www.nfl.com/image/private/f_auto,q_auto/league/saxztyda2dmkueqidawh
#> 1371 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hygam7o9zk1fdvbsg5bj
#> 1372                                                                               <NA>
#> 1373 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iifjlwrnkdopawd1ve0e
#> 1374 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cpzqyguein6bc8hkyq57
#> 1375 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wkkgoudr7sddkurky8at
#> 1376 https://static.www.nfl.com/image/private/f_auto,q_auto/league/de216pi29xyrm5rgp245
#> 1377 https://static.www.nfl.com/image/private/f_auto,q_auto/league/px3lral5ho5zij8381s8
#> 1378 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qk8ojdevkkstoztuowm4
#> 1379 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cqp8c6qjj6zzyxrystam
#> 1380 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fagdiae7v7finbekhz3s
#> 1381 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ujah92trpz8jsk2satdh
#> 1382 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rl4p4out1yypbiyzczdi
#> 1383 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nvsrjtigt3zpjm77jb4v
#> 1384 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ttigwehfuxysgzenm4lj
#> 1385 https://static.www.nfl.com/image/private/f_auto,q_auto/league/opmknfp16aticvldcagz
#> 1386 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t4vtzubgobld6n726bdn
#> 1387 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bqbeehboqlfl6ehkeljx
#> 1388 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jskkiiw4tpcdf4qsfgv6
#> 1389 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hsmy1klcdl3zycvekxql
#> 1390 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w4y4ro65mzxu1y2usicx
#> 1391 https://static.www.nfl.com/image/private/f_auto,q_auto/league/diyvbstvgl6otvg5rahn
#> 1392 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mmlhx639gixh7eem37ti
#> 1393 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nqtxwiq4rr5sdutwid5o
#> 1394 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ufpoi6xszct4emb2ihcm
#> 1395 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pwdy58xhbiixq5crbb5u
#> 1396 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iapyxzbcazf3tlcj5xdx
#> 1397 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jcpd1mheqjofcqoy8bd5
#> 1398 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eukpzxoddxiwwonmmr3x
#> 1399 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oh0wpqdhwpz0syt5pql1
#> 1400 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q5e3ugtsc4nud7czwbyc
#> 1401 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uryunwmc02rxvivmqrdu
#> 1402                                                                               <NA>
#> 1403 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hcjlaxxqjv3cnz9xfgup
#> 1404 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wbnhfajgytmyrh7at8sp
#> 1405 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pxll35kun2cq2aeluaav
#> 1406 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qguy3qposgymokebelyq
#> 1407 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sge9qla3wyhfzemqaq5f
#> 1408 https://static.www.nfl.com/image/private/f_auto,q_auto/league/v4mc7guudoifyi2z1ag0
#> 1409 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iqoes3t0jkt62cpqmuvo
#> 1410 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ocsyhsupc4mh0mi6xtpg
#> 1411 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pqgj61p9sehk4htydfkm
#> 1412 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yjuje5ciobrhyexn7ljq
#> 1413 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dadnuulhjc8t6t3kcihg
#> 1414 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sgtyxbqoefos8kboqkun
#> 1415 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jssm2cz68wrnjadblwo4
#> 1416 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bu5gamvcta2q5smo17pb
#> 1417     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924367.png
#> 1418 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ubhnsnv67wdxc7qscclw
#> 1419 https://static.www.nfl.com/image/private/f_auto,q_auto/league/br01u1ptatofhlszlixw
#> 1420 https://static.www.nfl.com/image/private/f_auto,q_auto/league/reiacycshzdzlvjwdity
#> 1421 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a3htstn0d8p9s0wcndvy
#> 1422 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hf1x2vr8stnb27xlxplg
#> 1423 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dw6kneiq5flxfw0m6rf3
#> 1424                                                                               <NA>
#> 1425 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mpf79etf7jsptmu1ywv8
#> 1426 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bs9joz6ljl29xmpjimjg
#> 1427 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jiaeufv3lpbkhulrddjq
#> 1428 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nijdganexutr2yxkllar
#> 1429 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vcq55giocjwhiaaelmhd
#> 1430 https://static.www.nfl.com/image/private/f_auto,q_auto/league/v6j1p9rfihuuujrc8xct
#> 1431 https://static.www.nfl.com/image/private/f_auto,q_auto/league/z7rcyxzi7velwhwpf7zd
#> 1432 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wclnehjxxocsse8jv6ky
#> 1433 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rs95fpkrlktm3itwipx1
#> 1434 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rr2dson0ucuhmzizbjry
#> 1435 https://static.www.nfl.com/image/private/f_auto,q_auto/league/udhu04nmkn2rhujwpt2p
#> 1436 https://static.www.nfl.com/image/private/f_auto,q_auto/league/meiwjhft9ibbbob57hvv
#> 1437 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jil3vlqjybwg2tawnume
#> 1438 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ppsplrubt8scq2bjgt81
#> 1439 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yokvvax8w0lzldfgjqsm
#> 1440 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zo3yfygo3r2zfyhg82dk
#> 1441 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x7xi4osjtpuvgr8yfomd
#> 1442 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iq4tovps5aoyvmcuxvju
#> 1443 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xjzng6plzary99tekz7k
#> 1444 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ih8jnkbyflpmqgie9aki
#> 1445 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dzfoazhafmuuqg3gacfj
#> 1446 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f1axqbz4yjoghpblyli6
#> 1447 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uql234khiu9m7cmhcp6o
#> 1448 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oltjm5vntwmclml8uktj
#> 1449                                                                               <NA>
#> 1450 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cydjhl3giyk1dnptxeex
#> 1451 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r4168optswwg5xdpl15b
#> 1452 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hilzy0nedjzbmezx2ixw
#> 1453 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cxrdwl8t9hijeaj2cud8
#> 1454 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qayiwzp2hlziik6pueim
#> 1455 https://static.www.nfl.com/image/private/f_auto,q_auto/league/twcyvfxyipplcm6adexv
#> 1456 https://static.www.nfl.com/image/private/f_auto,q_auto/league/opurb8svvnuvmhavfrxu
#> 1457 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ih5bb1ouj7i9vkqzjkej
#> 1458 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y83uvbry0khjuocfhk41
#> 1459 https://static.www.nfl.com/image/private/f_auto,q_auto/league/swgqftflioht9bs0qddh
#> 1460 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dyop2nsf803magi1tsco
#> 1461 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hox89cljx6r7csniphep
#> 1462 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gamzwcphiqjvubnnxtor
#> 1463 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nzcgqimdhuupvt2uie23
#> 1464 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dfh0z6h7s3pkb4excc3k
#> 1465                                                                               <NA>
#> 1466 https://static.www.nfl.com/image/private/f_auto,q_auto/league/emt1jlotzomuzq10h6ss
#> 1467 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dmibyfdjmyk5ffe4r0bj
#> 1468 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wvksivhnrk0zulh8b5dz
#> 1469 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dq2zczybtp8nz4pfwnhm
#> 1470 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cx2ramt6ismrr0tsjvce
#> 1471 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yeulo5dieb6um5zajehr
#> 1472 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hqszjl0wc5hunhljicqr
#> 1473 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qbrmoatktrkwl55si9x1
#> 1474 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t9irjxooncg3zlidmyuk
#> 1475 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gtnvqnx7iorbcregvi2m
#> 1476 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qpn0xr42mkmkhmpd0nmd
#> 1477 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ipenmeg3nebxyedpxvkz
#> 1478 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zjdiv0obmowg0zo1ngvw
#> 1479 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jdvb4tvzxvfezif7kxlg
#> 1480 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hiv9gahn8zwch5mkdwt9
#> 1481 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qe96pmvovsmoq26f8pcr
#> 1482                                                                               <NA>
#> 1483 https://static.www.nfl.com/image/private/f_auto,q_auto/league/n7pvb1trbn9rtttlw7df
#> 1484 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lpnwtscsolcvp120r7gr
#> 1485 https://static.www.nfl.com/image/private/f_auto,q_auto/league/asomvuvpemxmbahykzxj
#> 1486 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vgbdsbro68nwziejvzh3
#> 1487 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tdhxhsoaglwxb4ktsly8
#> 1488 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hwbsruftotkdlthpwnp5
#> 1489 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nl2zsd7w5fybkgoccdpf
#> 1490 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vnsrcj849qy9ssdn7hvu
#> 1491 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pvfihapqm71l9cv6xc2x
#> 1492 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xajihq9qgtgmdxmdkbz1
#> 1493 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cthoenebptadlu4g928v
#> 1494 https://static.www.nfl.com/image/private/f_auto,q_auto/league/up0tv8pf8sqiwb3fnkr9
#> 1495 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uyhv8s8fjussx1idbxss
#> 1496 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vdilupmgv5etbtpk1oaa
#> 1497 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h3qhoqtyodmmympbw71k
#> 1498 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qd5p8nkgawauikftmkij
#> 1499 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x2gobzerrjxzgpxij4ac
#> 1500                                                                               <NA>
#> 1501 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bdnnx1t1uflb4drvhxma
#> 1502 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bbvqbvctga7wrtnt9b4h
#> 1503 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mjon6c2fwtnxbmdfoxcu
#> 1504 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o43lt0kbritqokqtm1mf
#> 1505 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ennmofb0juo0oebvgwro
#> 1506 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dnyqrpzfyoglzokgb84a
#> 1507                                                                               <NA>
#> 1508 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iglorh0axijbfxiuhlj4
#> 1509 https://static.www.nfl.com/image/private/f_auto,q_auto/league/omvwrqz9itg1rsbz0q24
#> 1510 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uktdyzpqubxzdq4a2lax
#> 1511 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ezy5ubblk1aysl7spvif
#> 1512 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vll66iycsuxzemyqrz0x
#> 1513 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hnrfpqhflgizombebfpc
#> 1514 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zduxwgxqrjxriigt0it6
#> 1515                                                                               <NA>
#> 1516 https://static.www.nfl.com/image/private/f_auto,q_auto/league/otxb20fr0wekc8pbz0lf
#> 1517 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nlbrpfkkzxpvne1qx2pn
#> 1518 https://static.www.nfl.com/image/private/f_auto,q_auto/league/viio7e0tkpegau5kk9uu
#> 1519 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gyjyctgnlbmso9tmv9rn
#> 1520 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ioq8x7t68rgx70pdya2p
#> 1521 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pk3wm92ibdbciytn60he
#> 1522 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kaqsqjshwqb3mftizo6c
#> 1523 https://static.www.nfl.com/image/private/f_auto,q_auto/league/v97hsv8skc0qye8fqo5v
#> 1524 https://static.www.nfl.com/image/private/f_auto,q_auto/league/khkbxnxzsuvknlofejuq
#> 1525 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uegb6evhk5tb0zz7mt8p
#> 1526 https://static.www.nfl.com/image/private/f_auto,q_auto/league/luelmcumocbaqvp20gyr
#> 1527 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hdajydltr2pkxt9ubsl4
#> 1528 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vxfu9vryshvquxgc1izm
#> 1529 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vfi7mgrxdu8ep5hvy1qu
#> 1530 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ls6d0zq8esvbbumfhjyz
#> 1531 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bizunegand8gibaxvrql
#> 1532 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hgtejerqswdm7ebhvsya
#> 1533 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aquyohsfhnpdi5nawxrk
#> 1534 https://static.www.nfl.com/image/private/f_auto,q_auto/league/thlaphu8f61qommm3xj3
#> 1535 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gryzow4eritmhhvoqhwz
#> 1536 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ptdrtkmr377sokuibuiw
#> 1537 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qnmcbuhv3hxqtwciq1oq
#> 1538 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vhs0wjwxebzlafjkuy0n
#> 1539 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bcmgbdrylurlh6qretce
#> 1540 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m7zhoorpgybfc5tjyrwi
#> 1541 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kqdrvnfnb1zsndipu97d
#> 1542 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bavsscoaohfhdywl4kas
#> 1543                                                                               <NA>
#> 1544 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dp4mjqbrnzbjgymabe0a
#> 1545 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rdgyg97rp7rztislmoln
#> 1546 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zkkui6zl6tfmk4ur3s5m
#> 1547 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vprsme1vl3regx8ztshb
#> 1548 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bsrng6k5iwmnb99asldj
#> 1549 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ksnvl4cxa0npyau61nic
#> 1550 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pjpe5lj9jsu7i01g09vj
#> 1551 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fy2subrcuff9d8fbbozl
#> 1552 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cmta0dibsyngixqyabnf
#> 1553 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jelo75cxsrwuvdfsh7k3
#> 1554 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jihvpjzchro8ggkx2gus
#> 1555 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rb9slt6rw3deac6uq7u5
#> 1556 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xqrtbzfbrskephnizwdk
#> 1557 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a205r7zclo8neshrwpbr
#> 1558 https://static.www.nfl.com/image/private/f_auto,q_auto/league/z1lt2ic9salihpdevh7p
#> 1559 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ediv7ssqbhxmzi5ejioj
#> 1560 https://static.www.nfl.com/image/private/f_auto,q_auto/league/b2rcfmpggfk1nrky6ulj
#> 1561 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fivgsovptgtx5kgmtlwo
#> 1562                                                                               <NA>
#> 1563 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uwewjre3icd3odwqbqzs
#> 1564 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gbaabslb07rnggag5j4y
#> 1565 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cpemtjsydoafw2dr5diz
#> 1566 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kynou7q9aaozspanbwzq
#> 1567 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nlc7pociyyzco248rptq
#> 1568 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rwphu9taxcurtoa2fynd
#> 1569 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lkjskraher3g67eydduz
#> 1570 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ziwgmqhkc97v5corfgh4
#> 1571 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zrdr9i5rjxr5z8xilqdd
#> 1572 https://static.www.nfl.com/image/private/f_auto,q_auto/league/evmn0ccnvk73tukpmk5f
#> 1573 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dxx9omigqswqm8irxgzh
#> 1574 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yjcjcrdiztmfwjgcfbux
#> 1575 https://static.www.nfl.com/image/private/f_auto,q_auto/league/txcuzwshba0tc8ikguqa
#> 1576 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iixjzz0q5ja25xwhbl7a
#> 1577 https://static.www.nfl.com/image/private/f_auto,q_auto/league/goneh1vljlhgq18mw0on
#> 1578 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nstaqis8vg1vf04564cn
#> 1579 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rmmq0ds7zrsjgl5uwvui
#> 1580 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zr239ya4yqyvi16jmoyh
#> 1581 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fohbnjxhixammxtonhnd
#> 1582 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ksoygx2sk5hvmfurwprn
#> 1583 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cmld6dcaqgsef0qnykbs
#> 1584 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qhpw7c8sr0nylk9iq6ne
#> 1585 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rqersf545ecj0ozqfkcs
#> 1586 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cbusqo5hvl7zlb25n9n0
#> 1587 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ei9rwrzfpwto9ktqc3mt
#> 1588 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pr5m864fqvnoozihylrh
#> 1589 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aqic7l7pnw9x5ukh6iqr
#> 1590                                                                               <NA>
#> 1591 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hvyebzfdomw94gdyce0g
#> 1592 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gyy4afpkfqlia3dxugin
#> 1593 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xbabvurdiqjrj1g0xtqw
#> 1594 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vsttmoy714la6ewlyt0y
#> 1595 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o1o9sqb0f56jervnr772
#> 1596 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lugtri8msr6qg64n0nin
#> 1597 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k7t65hv3byt0yt60udsc
#> 1598 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yhabxnu9xxye4vpamg0e
#> 1599 https://static.www.nfl.com/image/private/f_auto,q_auto/league/v0qfsoqpqkmedquubz9f
#> 1600 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ua39sw7eh90ko76sfqop
#> 1601 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uyyv7hga0zlzt36aj32y
#> 1602 https://static.www.nfl.com/image/private/f_auto,q_auto/league/j8lwlc8u0tuuoslurfkw
#> 1603 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ach1rcevrtpyjoeidq97
#> 1604 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vvkfokzqviw0axyk17wz
#> 1605 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qnngww3ac4x3dtuilix7
#> 1606 https://static.www.nfl.com/image/private/f_auto,q_auto/league/twrawyk5kl1bq4syikws
#> 1607 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tv6m4uwo0gqekfqtc21c
#> 1608 https://static.www.nfl.com/image/private/f_auto,q_auto/league/myk5ccdezt1lhjc8szbm
#> 1609 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tctrfit1kj76hzgt2dp0
#> 1610 https://static.www.nfl.com/image/private/f_auto,q_auto/league/crost50vaysguwczfvv8
#> 1611 https://static.www.nfl.com/image/private/f_auto,q_auto/league/s6zz6djpb9jmu2drgke3
#> 1612 https://static.www.nfl.com/image/private/f_auto,q_auto/league/avt5iz5e5pfafnkirjfn
#> 1613 https://static.www.nfl.com/image/private/f_auto,q_auto/league/golpzgtumxtlu5mvmnsd
#> 1614 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jzzitatoqomex9hvelhe
#> 1615 https://static.www.nfl.com/image/private/f_auto,q_auto/league/csdtuycaoaa5pxflto3b
#> 1616 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jrszndbvroyujhypltlq
#> 1617 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k7vftkkvyqgxftmtikka
#> 1618 https://static.www.nfl.com/image/private/f_auto,q_auto/league/on35ddbwjjjbzxlfyaio
#> 1619 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qpmky6mjavljicndfcxr
#> 1620 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rm0etrdjvleulcyfxa1c
#> 1621 https://static.www.nfl.com/image/private/f_auto,q_auto/league/u7r7mvyn1zjs0yyagcnw
#> 1622 https://static.www.nfl.com/image/private/f_auto,q_auto/league/opopwfd3lmeo1dftmhcf
#> 1623 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dguqriomekv3vnzlklma
#> 1624 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xyf4b0rcnitvqzwjsxbh
#> 1625 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oqeoiyyvbqmskqocitou
#> 1626 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hwsvskf47c7iya1rvopn
#> 1627 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bswsazevwfhhot1goneh
#> 1628 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ge8iktjynj0kva2oynfx
#> 1629 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f1iojahovhz26gowq85k
#> 1630 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ywzsu7urmlpxnix5cpik
#> 1631 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ywqfegkb9rkkwwcjelqd
#> 1632 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pev4kspml5tsm2efny1d
#> 1633 https://static.www.nfl.com/image/private/f_auto,q_auto/league/z2nih7l1wvjp20dyyxjt
#> 1634 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dy8vaxda0njqok8epkcg
#> 1635 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sorc8rqt6urlef7k4svk
#> 1636 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dyogckm5z0jkvgyhu2m7
#> 1637 https://static.www.nfl.com/image/private/f_auto,q_auto/league/suu2g9qy4mikevktarkz
#> 1638 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w8thwxejuiafnredjfui
#> 1639 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hssv8bhiqotlecdy3tio
#> 1640 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hoxfeahxcb9sbz83nose
#> 1641 https://static.www.nfl.com/image/private/f_auto,q_auto/league/z8e0godak9btfkl9nu6s
#> 1642 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e2zwyec2hka5kvura9uk
#> 1643 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qocuraixpumwqnpa6sr3
#> 1644 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gmxc7wwol58uicomfh9z
#> 1645 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lhildzn90os4dmucczjw
#> 1646 https://static.www.nfl.com/image/private/f_auto,q_auto/league/whztsp0yr1w8d55kpzku
#> 1647 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yb8lwoynnwemqzm90vra
#> 1648 https://static.www.nfl.com/image/private/f_auto,q_auto/league/opn0npzberk73r0q1e1u
#> 1649 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ygrwnpfzwvh7mk7fequr
#> 1650 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cwouum8v36dvldpkdg3y
#> 1651 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zxnjheichwlnvvu5qdyl
#> 1652 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lfyimeloygntwuwn7yl9
#> 1653 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xhbb04tosjgsob5zgrab
#> 1654 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tnb4bcesfi8rhafzbgdz
#> 1655 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vpsi5cupfxmyigntjgma
#> 1656 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bghbqiuhs3a1mir8orsd
#> 1657 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mtiguuxpc3lqg3fpfmxx
#> 1658 https://static.www.nfl.com/image/private/f_auto,q_auto/league/i7su4pivye6qgdkyrzdw
#> 1659 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rn1rlyebrvg6f3qzspye
#> 1660                                                                               <NA>
#> 1661                                                                               <NA>
#> 1662 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cuxohru5f6jo3s7wvzxc
#> 1663 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ib0lcvcw4rnhuuuumiut
#> 1664 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kbyrwisjf858egz7e8im
#> 1665 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a85675yxdokskhb4h079
#> 1666 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dhrm3a5rcwxygwwsrmfo
#> 1667 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hkwyhd9w8pouxwhqn6ly
#> 1668 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hlyp8qsgct5mqkfbkaxx
#> 1669 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f1885vwypknqvibju78g
#> 1670 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ficrwzwu4bfswpzu61fv
#> 1671 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qvf3ud6rgqusejdd4f5u
#> 1672                                                                               <NA>
#> 1673 https://static.www.nfl.com/image/private/f_auto,q_auto/league/shrztaxaoucpoyjjxcys
#> 1674 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bjys1qddjzzhg5uw3vtc
#> 1675 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aan5zyvrcyn0wfeh2xdi
#> 1676 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dgemxvhu8ffqmvmqczks
#> 1677 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tslvgjuz8ypuxszl8n2u
#> 1678 https://static.www.nfl.com/image/private/f_auto,q_auto/league/abp66jqwr4j6lww3t5i6
#> 1679 https://static.www.nfl.com/image/private/f_auto,q_auto/league/koyhvt8cibnmolod0oh0
#> 1680 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bmyawbe07qucthxuspme
#> 1681 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x0awirw6ycqqjfte4w3g
#> 1682 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ijwytktc1l5mbf2wy2j6
#> 1683                                                                               <NA>
#> 1684 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mkjochsv2ntz4u4vbrrj
#> 1685 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uyoo4t3miqcvjjva7x20
#> 1686 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ebrck1twtw9fuyeyilwe
#> 1687 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mpqjskujiqq7x7fkyryd
#> 1688 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nq9t3ybxymgkigoycjhz
#> 1689 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w9ercgrmw0lewxwepayv
#> 1690 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mr2fldcxw3spwchpluyu
#> 1691 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cc3h3t4mcpywrjjwwjpl
#> 1692 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x5kcbdp4ns1j32sdj2eq
#> 1693 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bup4c1tyumwmfbspl9dh
#> 1694 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uelddmkn1tngvzh2gzdy
#> 1695 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oxcwn4ycirlk3rweeurl
#> 1696 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zdjwpno4an9rb585kvza
#> 1697 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zdjwpno4an9rb585kvza
#> 1698 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rn1togyw4c7j7kkdrzqu
#> 1699 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yhxk5d6vg5nhbk3gpgo7
#> 1700 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sfttjezd13wd8k2ngjaq
#> 1701 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fqvc0dkghdix5fq9tfaq
#> 1702 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hfjy8v06eynxdrmddeuz
#> 1703 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yuqdo4hpkehe0fd6sahx
#> 1704 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sil2fauws7fywmwfkcjv
#> 1705 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kkse6mup183hb6vrgmfh
#> 1706 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yfbo8yxqsqwpmwrusnjj
#> 1707 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ixc8tu4tszjexr0a847n
#> 1708 https://static.www.nfl.com/image/private/f_auto,q_auto/league/khj5gk5az7oev9xqlcb6
#> 1709                                                                               <NA>
#> 1710 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yei6sz65pmhhw0ewl2ps
#> 1711 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r76dmosg6akdl9bcjs8u
#> 1712 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k2uipgku4qvlotk3jgha
#> 1713 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wwea2evo37nfcnukjsdp
#> 1714 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k65nhhfhhfeyjofzilt5
#> 1715 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xlw3odgm3vt7vbqxrfha
#> 1716 https://static.www.nfl.com/image/private/f_auto,q_auto/league/phx7zagrwviqu5lhwdxb
#> 1717 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fmwzzbtr2l5auzlmtlw0
#> 1718 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jcvvl1udx5n7l5ofxdgk
#> 1719 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jnxcfwin6ve0efsccppj
#> 1720 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tpjbkfkahzx8yfxtjgrg
#> 1721 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ldh58bm5paxnjkkc5h7b
#> 1722 https://static.www.nfl.com/image/private/f_auto,q_auto/league/romshuufmvojnhsl1iok
#> 1723 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pd2kwztr59h7l7u8bhyw
#> 1724 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zc0avxmkxeh39bbjnbpf
#> 1725 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xcnzg8rb9nae0lg3cthz
#> 1726 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oedupqprurvbuujnrqag
#> 1727 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qmdqkyi8gt67bvqtafxi
#> 1728 https://static.www.nfl.com/image/private/f_auto,q_auto/league/see8sqrbsmmokq2ng9wy
#> 1729 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xpi8sev1ygomhdbzbldd
#> 1730 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m0gwxvqg0kotsdueekow
#> 1731 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fegxezhttco3scnoywlc
#> 1732 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y2qsks5yreyona4bvb3b
#> 1733 https://static.www.nfl.com/image/private/f_auto,q_auto/league/svwmkdv5h26kubft5syr
#> 1734 https://static.www.nfl.com/image/private/f_auto,q_auto/league/itmetxumsgy2ojulwtr4
#> 1735 https://static.www.nfl.com/image/private/f_auto,q_auto/league/l5pcsupy0dowq1bwz3bq
#> 1736 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zrc9lbsy94hxanrf5voo
#> 1737 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eb7vfxsratwcfr03ufau
#> 1738 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bssga4lvtidckbcroyr0
#> 1739 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wfsrvtwjmyozl7zigm9o
#> 1740 https://static.www.nfl.com/image/private/f_auto,q_auto/league/whweu08errpvkp2cmthq
#> 1741 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hic5hecl0d4swaoh0d0u
#> 1742 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t7feqezjoe6khd3ng9rs
#> 1743 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lton3n8mdtc4feakrslo
#> 1744 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yqg6wnbnc59rvoaipjud
#> 1745 https://static.www.nfl.com/image/private/f_auto,q_auto/league/keoilbfzupthtliuou1a
#> 1746 https://static.www.nfl.com/image/private/f_auto,q_auto/league/orypxaqv1ux3nbqssqqx
#> 1747 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wfsq9cfm2axrdd6sfl1t
#> 1748 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y0hbeopgzwlsxyahal8b
#> 1749 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t5dcv5rlo0vuzptw6qmy
#> 1750 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xhmrnxhgtnawoae6hbej
#> 1751                                                                               <NA>
#> 1752 https://static.www.nfl.com/image/private/f_auto,q_auto/league/p44nhjopxr4mwncbdx5l
#> 1753 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yaqb24k1lrtbl4a0hxtl
#> 1754 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f3bln7ddpwol0ssp40hu
#> 1755 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mkhwodsezjlwz0wop4mw
#> 1756 https://static.www.nfl.com/image/private/f_auto,q_auto/league/whhnnw3e2mwhrpoedexp
#> 1757 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jjlxw2ircxecpx3ipeax
#> 1758 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vdtpry9wcefxekbci8lj
#> 1759 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o2f0n7bi0rlvx0hgpspz
#> 1760 https://static.www.nfl.com/image/private/f_auto,q_auto/league/glysa28yyc3ziwdngane
#> 1761 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r2jjwmwoy2rkgthvsyto
#> 1762 https://static.www.nfl.com/image/private/f_auto,q_auto/league/juoiwxpf9u3anbd2yety
#> 1763 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nylmimeboyzyt0xinekf
#> 1764 https://static.www.nfl.com/image/private/f_auto,q_auto/league/v6ltnkfsuuucosudydrx
#> 1765                                                                               <NA>
#> 1766 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kpc3zy57jmv7fxczigla
#> 1767 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xaeuesunaqdxuu500qtf
#> 1768 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gf4kdnuj8c7qgrukkiso
#> 1769 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fsf7ctxvdjl1egwjn5qp
#> 1770 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tuz366avmb3euc0txt97
#> 1771 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ylu2odc8gk8nf4sbig4l
#> 1772 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dldysrdsvsjuzmbqmhgr
#> 1773 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fnkij9oa6cbnxxoekic4
#> 1774 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ary3muqcrujttk9snzd7
#> 1775 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cgdqsnsrxngtnqoncype
#> 1776 https://static.www.nfl.com/image/private/f_auto,q_auto/league/s294grzpvieowfpkjlmn
#> 1777 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k14ngmw6clova6fvz3p9
#> 1778 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qdlrurzpjpumbi1cgbnw
#> 1779 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eyyzybv8oxknge8ttce6
#> 1780 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e8jcys1qw5bcc88fhn9c
#> 1781 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fxgddl7ilja9z5ufgaiv
#> 1782 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zbeq6xpgdgrascvqtece
#> 1783 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sxgz1xpcleq5hhqvd1v0
#> 1784 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iq8dg8kfulydtbofrk2g
#> 1785 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jkoevuew3mayrv3rzw11
#> 1786 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mb15fr5ocgljfrwnjckp
#> 1787 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gu93b4lrxmgyzcrii4ep
#> 1788 https://static.www.nfl.com/image/private/f_auto,q_auto/league/un54axlocxr0tu26lfcy
#> 1789 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bksl6ppqtiql48qvb6gt
#> 1790 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ey9iic8j1bvlwcdqlvf5
#> 1791 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wympjaiqxuiz0pjgxmvn
#> 1792 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a2f0zbopmth4aqdxfdum
#> 1793 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k7qgizfezdbgjfmglj3y
#> 1794 https://static.www.nfl.com/image/private/f_auto,q_auto/league/g8c7rsyq9ub3pxm159bq
#> 1795 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nypai3evgdeggtz71lyb
#> 1796 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ijpwjqaaba3digazbpas
#> 1797 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tfmjujqiftq9icdlrrbf
#> 1798 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wo5dplktlfgqyyjuivgj
#> 1799 https://static.www.nfl.com/image/private/f_auto,q_auto/league/opx1haouuhocoewz7p5h
#> 1800 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wvwh4hyuihfq8hky9rz2
#> 1801 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e8rbhbuuaspg5rg9djyp
#> 1802 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ye8raazdvcmtv19wpmvo
#> 1803 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zshkvnzv0t6vqmbuxjcv
#> 1804 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gzqaca6m73uzgwczrw7z
#> 1805 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cdwkka3m4m6pwyzcug88
#> 1806 https://static.www.nfl.com/image/private/f_auto,q_auto/league/onus8zebyssb6pdazlfg
#> 1807 https://static.www.nfl.com/image/private/f_auto,q_auto/league/p6ychbaq1iwsfjevhp5y
#> 1808 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jtqudrt4c2bfxcznmh0f
#> 1809 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nz6kdb3ujfuzoez29yi7
#> 1810 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lee7rwnadpcoufykb9ya
#> 1811 https://static.www.nfl.com/image/private/f_auto,q_auto/league/j4hpfruyv9s4f98tqu7n
#> 1812 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xeeue5jiyoaavmil47by
#> 1813                                                                               <NA>
#> 1814 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iad1hnvmk2zcuygqbmvr
#> 1815 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xnb9yisvkfuopklk90nd
#> 1816 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xjee7v3wmtuojnisrbg0
#> 1817 https://static.www.nfl.com/image/private/f_auto,q_auto/league/humvdmgsqe0a0gbzo1ci
#> 1818 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qfawmzukujsqmuwlpkjy
#> 1819 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yucu9hddoj4x9w9ifiod
#> 1820 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wcck3rayjw1doyarorn9
#> 1821 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y2opzg2ulishsx8qlyzh
#> 1822 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ahnakip2ppfhy3qofmlf
#> 1823 https://static.www.nfl.com/image/private/f_auto,q_auto/league/decle9hmcvpyutys1hep
#> 1824 https://static.www.nfl.com/image/private/f_auto,q_auto/league/igwbptxstony9xbzdwnn
#> 1825 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mptlgcl3v8ttrhbm1dqh
#> 1826 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cf07uacc2vsvjzozhphp
#> 1827                                                                               <NA>
#> 1828 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ldzlkisbxebv2pzup9qd
#> 1829 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x8vclc1zqi2dwhossfkt
#> 1830 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xhqjebwrwkbnpjycbfah
#> 1831 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uqux8vr24dx5tvqf97hb
#> 1832 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yt2cjnrobixknkfi5vud
#> 1833 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yvqv5vh2lzln2uzmmp8c
#> 1834 https://static.www.nfl.com/image/private/f_auto,q_auto/league/juhjhxyvitkwt0qcfqod
#> 1835 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mz6vw1cnkxo1ucsd8scr
#> 1836 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eni8pcqq0hvcat9cvirr
#> 1837 https://static.www.nfl.com/image/private/f_auto,q_auto/league/g0apvgjnlqqhw0zaremx
#> 1838 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ja4kmzscr06p4fmigakk
#> 1839 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wlcu1mukacosgmleeawx
#> 1840 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cym6r5v9z8uizic8ak5i
#> 1841 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a3pqbxwndplogwoy1bgb
#> 1842 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rfdim8yqdn5xvciva5aw
#> 1843 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mkmpcg8czmkafk56prus
#> 1844 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eiuutjmlfa8x7tgfce8z
#> 1845 https://static.www.nfl.com/image/private/f_auto,q_auto/league/npvqt0gboazvopg9eylw
#> 1846 https://static.www.nfl.com/image/private/f_auto,q_auto/league/owfturrb6icqusmtrncf
#> 1847 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jrxezzfwcpkw0prhwroy
#> 1848                                                                               <NA>
#> 1849 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ububmmihc1c6utheday0
#> 1850 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jmfleybcx16hzglmelx0
#> 1851 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dzrx4nfhibsubjgeiee0
#> 1852 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h6xrdlwb7q66sf03pqbn
#> 1853 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aobwnrjrxizyovaox0ma
#> 1854 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m6rpujbapdhchza3lktx
#> 1855 https://static.www.nfl.com/image/private/f_auto,q_auto/league/knimytdhoo3rqiacbgtm
#> 1856 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zngxpinbt8qmidjcvyuz
#> 1857 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hqwaavsqlafsjp29gvcw
#> 1858 https://static.www.nfl.com/image/private/f_auto,q_auto/league/salh9f7cjif8mjbbpced
#> 1859 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rhc1xsoviwpq3npznqp0
#> 1860 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bcbxhf4vizglggwrjh8a
#> 1861 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xqguv4xfivpqorvocijo
#> 1862 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pcrkftdlfmpdvimxuwh3
#> 1863 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gujpu2u6l6pvxigs8tct
#> 1864 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ujvjgb1qvucuab2pjdkq
#> 1865 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ysj5gpfdczj66btzglne
#> 1866 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ejqfhelhtfojanjwiigi
#> 1867 https://static.www.nfl.com/image/private/f_auto,q_auto/league/g8zpuwrfmhbqydnc0i45
#> 1868 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pazmhgn4rlqog6btlbpg
#> 1869 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ejrbc5oe6yfizvdlcb0y
#> 1870 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mxi6ujld2qmn9x0rp0f5
#> 1871 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yijsn2ayielg1qknbvzn
#> 1872 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pqwouewum8g8cf4gaxmq
#> 1873 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bz0an0espvoddhvvoeef
#> 1874 https://static.www.nfl.com/image/private/f_auto,q_auto/league/b2ohvjsfoadi1wlld4fd
#> 1875 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ycgj7fnemaqu0wpr8mu4
#> 1876 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rcl115c9nexdgxmorn5u
#> 1877 https://static.www.nfl.com/image/private/f_auto,q_auto/league/v5fuzaeucyftknl6hwoe
#> 1878 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hluxdq5t1n7rvmtocj6n
#> 1879 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dqdmx0xsk7o9prnfhbve
#> 1880 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vvv8akkw6wf5vkiitlp5
#> 1881 https://static.www.nfl.com/image/private/f_auto,q_auto/league/odhi45hkqjbxr5xqxctg
#> 1882 https://static.www.nfl.com/image/private/f_auto,q_auto/league/b4hri5gf4oawbbtmojku
#> 1883 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cm4rbzlnxssbzqkwjkbr
#> 1884 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uiekl2z6b0fs7l7dqxru
#> 1885 https://static.www.nfl.com/image/private/f_auto,q_auto/league/czv9vt8lcotufa1marso
#> 1886 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rnwpluvqqg9arwgp3quo
#> 1887 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f4qnsba00bpgs5zgthup
#> 1888 https://static.www.nfl.com/image/private/f_auto,q_auto/league/l2fpg9i9ziudnzdv8qgi
#> 1889 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nqlx5ae09vqpq69nntbt
#> 1890                                                                               <NA>
#> 1891 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wfv2zekwkm2bnxw0bzgt
#> 1892 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vcprcawoe1urfowbzo4o
#> 1893 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bcriqfc8oenhluritjha
#> 1894 https://static.www.nfl.com/image/private/f_auto,q_auto/league/idel21rr4jesoqhw8fr9
#> 1895 https://static.www.nfl.com/image/private/f_auto,q_auto/league/n7wb409jg89h2uixlvkx
#> 1896 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aqawofzbc1jpvqbvuw2p
#> 1897 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qxv0dm3zyuz3eqcx1f3z
#> 1898 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qrdnpgrboglqjy09uisc
#> 1899 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a2tnib2dprpcbyd9sdby
#> 1900 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dccgvojszpt06iwtmgv7
#> 1901 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jvoui3bptgsfvgkz5e1b
#> 1902 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cru03mpv2layxlbhhndf
#> 1903 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qane9a0mrr9nfmz1e9jx
#> 1904 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pizeafmn2cj95emcydg3
#> 1905 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jvql2hcns2ezsafopltd
#> 1906 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zotzkoxxn358hpgmesdv
#> 1907 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jvutsfx86o0omypemcxl
#> 1908 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h1nintlpbk2zyxerjpy4
#> 1909 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ppc3a6qvlxjxmkwxbphn
#> 1910 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mbjf9xp0ilh4vbbwyzwi
#> 1911 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zxrk6tcnr3jnjluohskt
#> 1912 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zdpq6ozj3pcjwhe0g4ia
#> 1913 https://static.www.nfl.com/image/private/f_auto,q_auto/league/l3hliihgsoi7s3wdbtgn
#> 1914 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nw4agnynqpmdnfwcdbkd
#> 1915 https://static.www.nfl.com/image/private/f_auto,q_auto/league/af7aleuog5if6fisopik
#> 1916 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uzw6h7whiuhlo15vneqk
#> 1917 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cccwwxb6tvsfhm3ylqul
#> 1918                                                                               <NA>
#> 1919 https://static.www.nfl.com/image/private/f_auto,q_auto/league/khkeq95itvlc2w2odqbu
#> 1920 https://static.www.nfl.com/image/private/f_auto,q_auto/league/axn5dxyd6e9jcixash1g
#> 1921 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wwpscfi1obscn39je7js
#> 1922 https://static.www.nfl.com/image/private/f_auto,q_auto/league/liuzt7209f2hqa9mu1zw
#> 1923     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915145.png
#> 1924 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wf4s8wi6ljtt2z4ripih
#> 1925 https://static.www.nfl.com/image/private/f_auto,q_auto/league/i8gtth6a12a91hdkkbhn
#> 1926 https://static.www.nfl.com/image/private/f_auto,q_auto/league/csh1ehzlmtc8lbupeky3
#> 1927     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919609.png
#> 1928 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yjq2zdkus7z8zoxigr5u
#> 1929     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047578.png
#> 1930 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nlgy6utjxctzouuekfzk
#> 1931 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r58pqj96qunak08kld9u
#> 1932 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wswn6tehkzj8mdfbablx
#> 1933 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nqiynjmkkl9kf8faxwaw
#> 1934 https://static.www.nfl.com/image/private/f_auto,q_auto/league/adsxoapzj66csojejk6m
#> 1935                                                                               <NA>
#> 1936 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eie9fqeravuhzopshesn
#> 1937 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h9enr0ycapsfxudjqe43
#> 1938 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yv2dn79knkldpbjizvqe
#> 1939 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uonoseuz0cxigm8qrlqc
#> 1940 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ss1hsfoqfz9ko1e1ndlr
#> 1941 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vmggjyqydzxxexwel8om
#> 1942 https://static.www.nfl.com/image/private/f_auto,q_auto/league/s1tvlfpdurgdlgv2zmrh
#> 1943 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qxgwmbuy6tdemmky4owh
#> 1944 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jx0crycb3jpyqkwggwg9
#> 1945 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kdx8oloehaof1lhoqib7
#> 1946 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cki4yo47oaazcqk41dwu
#> 1947 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ltjauyk3udgxalwiicoi
#> 1948 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rqdelqhxbpn6pflf0hul
#> 1949 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ygwdsa4xsqilgkgs5uk9
#> 1950 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tt4ynqwuoiczqv8bwviu
#> 1951 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wacuocb6iph0yfquhzb6
#> 1952 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eogmsueci6atnjvf7rt7
#> 1953 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t8t2m42ec52e1k58wsxz
#> 1954 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wyw5sackjqo8zq1eo7p0
#> 1955 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aagv3gh3tot1zwcuais0
#> 1956 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qcmwspi2zhcrxct1txdh
#> 1957 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oj5kpko4j2cdgpgd9ucz
#> 1958 https://static.www.nfl.com/image/private/f_auto,q_auto/league/s3uinm6pqyqwrmbgoynp
#> 1959 https://static.www.nfl.com/image/private/f_auto,q_auto/league/clcuhpeucdfype9vfbxq
#> 1960 https://static.www.nfl.com/image/private/f_auto,q_auto/league/svpznbmtrewgj3kq0cqd
#> 1961 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kgeqwdgvgt1gnp96k7bj
#> 1962 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gjb1iwius3a2svcmmek5
#> 1963 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nalegoem45fmncudsllg
#> 1964 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nnrniyk1ccxteqkjvt6h
#> 1965 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fv69b0ibqcdt6hvgjefk
#> 1966 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yhfnfyuxbkq31tec7hjg
#> 1967 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kibotlfb4ipuxdirxzp0
#> 1968 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nmpcgvpsuyzunjq5ymjc
#> 1969 https://static.www.nfl.com/image/private/f_auto,q_auto/league/j8fbugbheduwxwjrrswa
#> 1970 https://static.www.nfl.com/image/private/f_auto,q_auto/league/g6p6ssi1fatopxfhmzwk
#> 1971 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wjuf9siad8b4p01fmimd
#> 1972 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hogs5bysdyfk6czgbw0i
#> 1973 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kzdlpqta1ngescib3es0
#> 1974                                                                               <NA>
#> 1975 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lymhn8h09su42f18lhxq
#> 1976 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yyprvaghhgtf41mpuazp
#> 1977 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o5lgy9uyrbtvvmpzewjl
#> 1978 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cucb3aaiu4w6zzs5vdut
#> 1979                                                                               <NA>
#> 1980 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oov1vgm5xxzioytnqafn
#> 1981 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cryuvmmnkryxlgjfgziw
#> 1982     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038811.png
#> 1983 https://static.www.nfl.com/image/private/f_auto,q_auto/league/exqxyjcjzrhqs9kudsta
#> 1984 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m2rdxflvu1yt3z3v0ksd
#> 1985 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lzvpgynie9ab89gcz9gs
#> 1986 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pmpvpjwq3yjtvt7u5vev
#> 1987 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q6nw462umxixyxquzu8e
#> 1988 https://static.www.nfl.com/image/private/f_auto,q_auto/league/duzuz1kghhc1c8k2zhov
#> 1989 https://static.www.nfl.com/image/private/f_auto,q_auto/league/l21kh83b3qpon8vtqhvx
#> 1990 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dife86ajfcpxxbnu9a5g
#> 1991 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kzb6mdsczuit1q95csxo
#> 1992 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gp12el16qbz9rmkcqe5i
#> 1993 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ckv12gsfo9541uhnpr8k
#> 1994 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nqkxl30usg73wtwj0tem
#> 1995 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mubobrjbeudtezxv0t0p
#> 1996 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t6gpmj6xonhsvzdikbz6
#> 1997 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y5fw68qxcmxykv1uchlo
#> 1998 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jiebuu94lu81xzneqrsf
#> 1999     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4683485.png
#> 2000 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hgm2eiin7bfergfrjhxi
#> 2001 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cltvldq0qakafqrqnmlk
#> 2002 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tmxfyxkmtrx42ei4qhvn
#> 2003 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ohhwdrqxkweqlnoz9gli
#> 2004 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q9bv27vvijoyqaqbyk5a
#> 2005 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dkoqc5qomdkbi576ohqp
#> 2006 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hufawosnxiqa8eqhctuw
#> 2007 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e2gkxescrbqagzuxwgsq
#> 2008 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kbzznhzm6nub46htfcse
#> 2009 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lvve7xyvlupkydsgma0q
#> 2010 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mvkkl292m78tv1p1tqr4
#> 2011                                                                               <NA>
#> 2012 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gbwycqfz69f3c3ozzt0g
#> 2013 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tnkdbuog40pbktmazorf
#> 2014 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yux7enbuldygvurxvanh
#> 2015 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w6qnlfw0cuxest48srd0
#> 2016 https://static.www.nfl.com/image/private/f_auto,q_auto/league/d0k0fuhrprnvp1q3p16a
#> 2017 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nfo9lr7lem2q8lfpnvk2
#> 2018 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nvewbbvmbq74ka3ktyqc
#> 2019 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mnsqfcfqiehw5aocr1lg
#> 2020 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hyl8jzsa7dto7qekd7vl
#> 2021 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rzvm4brelprecaednj1o
#> 2022 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mdjom6h1xosrxbulj0gw
#> 2023 https://static.www.nfl.com/image/private/f_auto,q_auto/league/auhxhzc78mmrhqrswuwh
#> 2024 https://static.www.nfl.com/image/private/f_auto,q_auto/league/z8cclxg4cdyh990ruqjf
#> 2025 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yyrerqugf5oj1ctzmtoa
#> 2026 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w7wxepfdmbqjkjtojbpy
#> 2027 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e2azuskrvnlktvb9kkra
#> 2028 https://static.www.nfl.com/image/private/f_auto,q_auto/league/apha3gqxgww5w48msti9
#> 2029 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wltmlsewrakxwlmia9ua
#> 2030 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gdihhyi6bpsvyljtenua
#> 2031 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dqnytj4am8hfhwvpwkqz
#> 2032 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sgs7pzznhfcwwahq0rfc
#> 2033 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xyxprzta5zwj9rs02kdv
#> 2034 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gylxgtivcdo7qhzlzljy
#> 2035 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yeplot6cz5teyc5tzfhn
#> 2036 https://static.www.nfl.com/image/private/f_auto,q_auto/league/admwfoo0pgl2z2zvqcp2
#> 2037 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ptmvffwolix3jynnipat
#> 2038 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w2ol2sd7wjl8i7ruca8h
#> 2039 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jqlpnemk0kgalavhsdtq
#> 2040 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wijgbcjlkkrzltgukslp
#> 2041     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914450.png
#> 2042 https://static.www.nfl.com/image/private/f_auto,q_auto/league/leflg9s61w4zofaszx0f
#> 2043 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k4hmrhscoug65ht3zgcz
#> 2044 https://static.www.nfl.com/image/private/f_auto,q_auto/league/g5t5t9x8pvofryxyuzvh
#> 2045 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dhuamlwo3gzle2utzqw6
#> 2046 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rrauliznio4c6i6lvyfd
#> 2047 https://static.www.nfl.com/image/private/f_auto,q_auto/league/az5wcoo28wcbr6fn7iws
#> 2048 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k6jkdnic8t9ong0v6mle
#> 2049 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dg8spslntpt1fhuoifqj
#> 2050 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fwjl3frgfd0imd9yi0um
#> 2051 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rkyujumyen2tworvihlp
#> 2052 https://static.www.nfl.com/image/private/f_auto,q_auto/league/thaiw29fbhvwwtnz07qi
#> 2053 https://static.www.nfl.com/image/private/f_auto,q_auto/league/n0abwyrurouzpsvclsdp
#> 2054                                                                               <NA>
#> 2055 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lzp4nbkyhdriuorszvaf
#> 2056 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bntwfar7mf4sbmbhackj
#> 2057 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hj1o1fa6klumb7yozntc
#> 2058 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mdcbrgtriuuljs1snkba
#> 2059 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k941qjpfcdnma513r8b7
#> 2060 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ljjqgfmfdljjhpurti0i
#> 2061 https://static.www.nfl.com/image/private/f_auto,q_auto/league/euhlhcgkixkj1cg5hp0d
#> 2062 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ormtco4ukgb7un7ffipd
#> 2063 https://static.www.nfl.com/image/private/f_auto,q_auto/league/l0iqke4vn1wgubz4lvyk
#> 2064 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pvbcl0ishldrog2jkx4g
#> 2065 https://static.www.nfl.com/image/private/f_auto,q_auto/league/n8dkdi2e9npv3iib9dqk
#> 2066 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rlkhhx2jkjxrftwju1hb
#> 2067 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r7pdhsmg3c3nbdj2n65i
#> 2068 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h6ov0evhq1x2mwnvutvi
#> 2069 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aafgfrfxx1sjdmh6hhhm
#> 2070 https://static.www.nfl.com/image/private/f_auto,q_auto/league/epoivq636zxggvcekctx
#> 2071 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hlqkn5qdub5nq1g8en7b
#> 2072 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cqrxmb8hms0obl6njhha
#> 2073 https://static.www.nfl.com/image/private/f_auto,q_auto/league/b8b1tdxtpf0r8v40ydee
#> 2074 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cbrxu690xiihzhzkrd99
#> 2075                                                                               <NA>
#> 2076 https://static.www.nfl.com/image/private/f_auto,q_auto/league/esqbphaod3tfj8pfcywl
#> 2077 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gpxj3yirwbsshuldqpto
#> 2078 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uu48t9wo4cxwsxdfgncf
#> 2079                                                                               <NA>
#> 2080 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lexpwmsvdm67gf6iqfif
#> 2081 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ux1hriomjlgopjqpfwsj
#> 2082 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kqcjbxuefyljs0b1smla
#> 2083 https://static.www.nfl.com/image/private/f_auto,q_auto/league/d37deekrkgdgxmnzptmq
#> 2084 https://static.www.nfl.com/image/private/f_auto,q_auto/league/efgdfvizp6xgkfia5ciw
#> 2085 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xqfvdxgxjzrhxa73k7u8
#> 2086 https://static.www.nfl.com/image/private/f_auto,q_auto/league/occlqkgtkkwihkwzkiax
#> 2087 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uhgnuvfhpwmtrkrpds48
#> 2088 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ycvjsnojzyudutozcuqu
#> 2089 https://static.www.nfl.com/image/private/f_auto,q_auto/league/u9m3jppc4rumz2rzim5y
#> 2090 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bhidm91dft1rpzjcsz3w
#> 2091 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zcduaphax3ak3cc2vlrc
#> 2092 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mey8lmzvsrvstjcccx9c
#> 2093 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rcribkcf5b2ywktqds8z
#> 2094 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nkwlrkxzgcxhtd227hqm
#> 2095 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uplanmusamdr4bzil0v4
#> 2096 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kygd4zisxpt6uwztrxhk
#> 2097 https://static.www.nfl.com/image/private/f_auto,q_auto/league/u9t7qn55molsifoee2sr
#> 2098 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yryjrsqgbg1tmpxxc3ge
#> 2099 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wkcmseo5ayu4wydu1xig
#> 2100 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w6gxlyn8cmohxa2yuxca
#> 2101 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zgcf3sqvvdbrlutyr2wm
#> 2102 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cy80drx21ucuyagaochk
#> 2103 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lb7t3afunzwrd9nxu3as
#> 2104 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gevrqbex4xdz7yumim8x
#> 2105 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xxy4pbngyjfvrlkytvhk
#> 2106 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jatdbdpswqdwvukemp1t
#> 2107 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ms6xqej2bwgsxnmgfxe6
#> 2108 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fnhg5hbp5sjn3uuanqua
#> 2109 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ntkwyyft1r9xefhlc66m
#> 2110 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vn3n5silcj6creqww0xe
#> 2111 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e96ltr3bnrq6bs4o0gvx
#> 2112 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q83pw5ewke0y9k4ei7qe
#> 2113 https://static.www.nfl.com/image/private/f_auto,q_auto/league/boajq2m1njwe88c23lpd
#> 2114 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vlx5vkd8ghcq1snnhdij
#> 2115 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hoyvrhjp0mgqiwlhrmo3
#> 2116 https://static.www.nfl.com/image/private/f_auto,q_auto/league/veabulv2wvzglmqkvrmd
#> 2117 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nvoyxkpbc7pp9pjkwqbw
#> 2118 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ae8lsm9ahaczhqfz1pvo
#> 2119 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rk7rq0dyx9bjmgc6ijkj
#> 2120 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jxarqphcuinxe03biru2
#> 2121                                                                               <NA>
#> 2122 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ays0pryx98tyhipcpfjo
#> 2123 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m4xzlxerovb48xw2upme
#> 2124                                                                               <NA>
#> 2125 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lpmyg8svquiltw7eh2bl
#> 2126 https://static.www.nfl.com/image/private/f_auto,q_auto/league/euooottairymrggur6kr
#> 2127 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dqc3hvrkqi5b3rtse0ui
#> 2128 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bozbyfxixde7dcszz6ab
#> 2129 https://static.www.nfl.com/image/private/f_auto,q_auto/league/g24xgi8p2kuh4muamt3q
#> 2130 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kwidljfdvraq6enhq4tg
#> 2131 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gn3efl1w9qqfs4whrsl0
#> 2132 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tby2jwaukw6yfxgxj9bj
#> 2133 https://static.www.nfl.com/image/private/f_auto,q_auto/league/avayjvy9zncbhhfeuwqv
#> 2134 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m7b3rykjvudi8f1smzsd
#> 2135 https://static.www.nfl.com/image/private/f_auto,q_auto/league/larpp8nsquyj9kenw4pd
#> 2136 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uojgslhwolrgqdncjpr7
#> 2137 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lx5qixsirtyutsuprsfc
#> 2138 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qpqgf3ylzc2m0rhyuyyq
#> 2139 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ymrrstfoqczhqxbdpyyg
#> 2140 https://static.www.nfl.com/image/private/f_auto,q_auto/league/znddur43vwniyuxbkrul
#> 2141 https://static.www.nfl.com/image/private/f_auto,q_auto/league/imeae5vrkbtc6u7vdttf
#> 2142 https://static.www.nfl.com/image/private/f_auto,q_auto/league/htvdu87ydrc7edssertp
#> 2143 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q2n9bfa0dfpg1fmwqbjz
#> 2144 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zi9qhkog8osjo2pk5bg4
#> 2145 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tmqn08snowjhd4facjhf
#> 2146 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mhncj9h5uhnukc7szrqf
#> 2147 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mksyn1sfszc9boas8jqp
#> 2148 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pmplxhy8k1gtje1kxxti
#> 2149 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zozxnzgyyo4jnhayvhgw
#> 2150                                                                               <NA>
#> 2151 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sodgeflzjr8sf5xfwmlv
#> 2152 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h1ypnql4idc7qxikcl28
#> 2153 https://static.www.nfl.com/image/private/f_auto,q_auto/league/d8cerwjvbikbolwbgdsm
#> 2154 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gyoyocmnpdu2hnnltrcy
#> 2155 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wlko6hftwezwwfscjj8c
#> 2156 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dyaeixchodwq4pj0plcg
#> 2157 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h6t8kvfeefwgle14dzq0
#> 2158 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tdicm2gieq7f7jlvlime
#> 2159 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ce9ctkm1fmr3z6ujllct
#> 2160 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pracpi5h7rzn40vs4bul
#> 2161 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o6zsuwmfq67e0erq3czd
#> 2162 https://static.www.nfl.com/image/private/f_auto,q_auto/league/c9vtnzyogpykobscvesp
#> 2163 https://static.www.nfl.com/image/private/f_auto,q_auto/league/butz6lkih8pgpuvhwfee
#> 2164 https://static.www.nfl.com/image/private/f_auto,q_auto/league/evfwn96jlqc4jrkjick8
#> 2165 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gz1oz97mdmlzn0pdkptf
#> 2166 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gortk2qygtzwzkd5y2jc
#> 2167 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h1lrwvcibyhz341jbchz
#> 2168 https://static.www.nfl.com/image/private/f_auto,q_auto/league/inlxlwfqvqa1e5ksasib
#> 2169 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rzbpfbjvgvnr59uax2fh
#> 2170 https://static.www.nfl.com/image/private/f_auto,q_auto/league/evabwbopkxxnvrn0eysw
#> 2171                                                                               <NA>
#> 2172 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cve4jipnm1hl0oqrsu6l
#> 2173 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dnq0smzas3ifwi7sydu6
#> 2174 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yq6lsyblq5khv42gmfom
#> 2175 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y2wmde4s0fgnudjvl4m9
#> 2176 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nbvb6bsrmjupmqrrf1n4
#> 2177 https://static.www.nfl.com/image/private/f_auto,q_auto/league/s8prgy9fa6ldmp7apoeb
#> 2178 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vjypf6fscqpp1ecslzkh
#> 2179 https://static.www.nfl.com/image/private/f_auto,q_auto/league/azkmwe4bavbca3tmx9em
#> 2180 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gbnyqxaymlji05bnflc5
#> 2181 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ujyli3h1mzyspwqt7oy8
#> 2182 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hmwvkbo1htsnjouxw7kq
#> 2183 https://static.www.nfl.com/image/private/f_auto,q_auto/league/p6qi0ioympd87wdwf18d
#> 2184 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pwocxzdp1brdqil4s2mc
#> 2185 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xrslimhyziuic7kk4l1d
#> 2186 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gag0leay1c9o2voquw1x
#> 2187 https://static.www.nfl.com/image/private/f_auto,q_auto/league/edsh5wvx6oqjoyqun18y
#> 2188 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ce3qgmgn139gn6vu44zz
#> 2189 https://static.www.nfl.com/image/private/f_auto,q_auto/league/toiqpnmbuxgfwr8wkw4r
#> 2190 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pm7vvod9z7hn5nokdajt
#> 2191 https://static.www.nfl.com/image/private/f_auto,q_auto/league/l9zei9dkcmbml3q1nshk
#> 2192 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eclz91bqwmn4ow9wfmzr
#> 2193 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zfubpbpgf0lhhhixkotn
#> 2194 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gwow6ytckqv1ukrbrl5l
#> 2195 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qyakncrtbf7nrr4uq7dw
#> 2196 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ybukzc2rvl0mqfnn387e
#> 2197 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ov8vehr0hojqxls6q7wr
#> 2198 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hol7dluumxi1cqxyagg3
#> 2199 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jybb72q5rbqs6obbfudl
#> 2200 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ek5m4yt3rjeydhbdabqt
#> 2201 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uvren7ho5uisla3dgi8p
#> 2202 https://static.www.nfl.com/image/private/f_auto,q_auto/league/p1s7j8ibljd0f3sjpcux
#> 2203 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hx05uozcbqkkuz2ue4ws
#> 2204 https://static.www.nfl.com/image/private/f_auto,q_auto/league/caumqxwppfoakjvpqxej
#> 2205 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q6xpk6vkdvmks3u9e5ul
#> 2206 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wm7f6zzheugjbbiloyct
#> 2207 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kp1evk99209vnjnfjvm3
#> 2208 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bnyxltzwt9fhlttr4tfw
#> 2209 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gbyvjrusairpvmjgjuyg
#> 2210 https://static.www.nfl.com/image/private/f_auto,q_auto/league/actf0qtycxkrzswiq1fx
#> 2211 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ppjhrmfqlnp13j6m2vta
#> 2212 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wquetktvgwtq7kxyweuw
#> 2213 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jqisn0m38cce7whcxqjo
#> 2214 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ghmdckb8pjgmmyak6dic
#> 2215 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m5olygu7zfrqkzflm5lk
#> 2216 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q3rayvoroob4gbrp6kn0
#> 2217                                                                               <NA>
#> 2218 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ckaf4eso8cmg4ehthzbv
#> 2219 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cvp5ss6hwo3yl1fp1bzw
#> 2220 https://static.www.nfl.com/image/private/f_auto,q_auto/league/b8k3hdwumwefaokiimfg
#> 2221 https://static.www.nfl.com/image/private/f_auto,q_auto/league/z6uty81aq2bc1zhikiri
#> 2222 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hucy8vqwwrblyzs1lwfi
#> 2223 https://static.www.nfl.com/image/private/f_auto,q_auto/league/d6g1ngb2o7u2jfztbzxb
#> 2224 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rk5nsmptqc4tgut1tydk
#> 2225 https://static.www.nfl.com/image/private/f_auto,q_auto/league/u8xuww2gguf2abogtxqj
#> 2226                                                                               <NA>
#> 2227 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nafdqgtii2t4udipsnqu
#> 2228 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t4ahbnrenftmoq8ljyhv
#> 2229 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hojvuz4s2jl3pkmsrgx9
#> 2230 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lqvqsrlycf9ujqcxmief
#> 2231 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xgb2fhr5pnfnjzuvxll4
#> 2232 https://static.www.nfl.com/image/private/f_auto,q_auto/league/s36hcjpw74xbgbqgqjab
#> 2233 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tme9lcxq2t6juw3jbzvg
#> 2234 https://static.www.nfl.com/image/private/f_auto,q_auto/league/expy1fbbfzmswqd0f77r
#> 2235 https://static.www.nfl.com/image/private/f_auto,q_auto/league/esrjdc2tio9ipk51lvjb
#> 2236 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cuhrkuo2cirudn1etvmz
#> 2237 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nrn5zxnfpvrtpvmalwyl
#> 2238 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gub0ayep1ct4nyjkc2ih
#> 2239 https://static.www.nfl.com/image/private/f_auto,q_auto/league/reeovtazfashrsg9antf
#> 2240 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ktyn8gmr5viokn6lo1r7
#> 2241 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zsqhbaoxkobjauphdbd3
#> 2242 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wiwut7roauqr83n1vrxp
#> 2243 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qh2igdurmtew4tjc5co9
#> 2244 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vvpy4ouo24iqozvyp4rc
#> 2245 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ubedckkqlsmksd3l0adu
#> 2246                                                                               <NA>
#> 2247 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x9endquhptz5sudgvugv
#> 2248 https://static.www.nfl.com/image/private/f_auto,q_auto/league/puk0c1b3cq18va5wsxt0
#> 2249 https://static.www.nfl.com/image/private/f_auto,q_auto/league/n37x9nljgnvondz5qx1p
#> 2250 https://static.www.nfl.com/image/private/f_auto,q_auto/league/maxh46sxwwma6hdfzrzn
#> 2251 https://static.www.nfl.com/image/private/f_auto,q_auto/league/juwsx8roikysi4gb6idq
#> 2252 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iw7r08cttrarznau1l8m
#> 2253 https://static.www.nfl.com/image/private/f_auto,q_auto/league/p3yj7bwxc0fyipklbgeh
#> 2254 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ctgnjoaov44632kfett3
#> 2255 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cdelrqug70isctsfb6qq
#> 2256 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vziogpnyp9d0xtpiuqhr
#> 2257 https://static.www.nfl.com/image/private/f_auto,q_auto/league/b9rdjzdxcb3baslg4own
#> 2258 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cctguuvjeglkuo1o6yvx
#> 2259                                                                               <NA>
#> 2260     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4241941.png
#> 2261 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fo3ppnx6djkougdmpthf
#> 2262 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xuzfvi2xmfnlkmlbqun3
#> 2263 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zxxklmhekefz5gaaxqi0
#> 2264 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lwcct10u7lfzsgtaoqce
#> 2265 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xgd7axydoqxkolpzjtxb
#> 2266 https://static.www.nfl.com/image/private/f_auto,q_auto/league/stl6h7dpq2wcafcrogwq
#> 2267 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r1dnsh9odto6vsiyzl9i
#> 2268 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dhmgw6mercfkpyfh1mw8
#> 2269 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uaxsxymncppase7ihczd
#> 2270 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mcmq0fne7lzmd4ymuonx
#> 2271 https://static.www.nfl.com/image/private/f_auto,q_auto/league/n6pacauh70xu2dy5tztf
#> 2272 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cxzwzntife33bkwsmqb3
#> 2273 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cclikp5pvbvwgpnb3s5i
#> 2274 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zxk0jfinayjjhguk83gw
#> 2275 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kpxblj81lquuhjasvhe8
#> 2276 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gzbr6hm9rokalmx3t4z2
#> 2277 https://static.www.nfl.com/image/private/f_auto,q_auto/league/opchvatsc0lwxlirkp8s
#> 2278 https://static.www.nfl.com/image/private/f_auto,q_auto/league/z9fm0xojtw3dbeom5jil
#> 2279 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lwtophvrl50xn086fxjj
#> 2280 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q25yzjly8zz4elodqdhr
#> 2281 https://static.www.nfl.com/image/private/f_auto,q_auto/league/u3xq3snkesclrrqulagk
#> 2282 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sp4gz46f1rkpksvsmtg7
#> 2283                                                                               <NA>
#> 2284 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hpgtlu0zsowcnztpy6jk
#> 2285 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yigik9vx3eo96vrkxd4v
#> 2286 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pjvdkdrud2acrixmtevc
#> 2287 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w9ptjaphcchwoqbafed0
#> 2288 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yf7vpqejkffgxlq0mlrn
#> 2289 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gcjz63rvpnfn6uuaggzd
#> 2290 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a4gfeacx4vsa23qhjbqu
#> 2291 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w8nysxx6h0bu7iidshqt
#> 2292 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ioejjsyd2kilihxrpjoc
#> 2293 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mss6qdobrthhkns28avb
#> 2294 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dlgzindsydzdvnogxht3
#> 2295 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vyl3paz1mk6ukjtgvu24
#> 2296 https://static.www.nfl.com/image/private/f_auto,q_auto/league/u3ajigd8czvo5wc31dbm
#> 2297 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aewahyauhdstskbbuq43
#> 2298 https://static.www.nfl.com/image/private/f_auto,q_auto/league/u628fj1dunzaa3wnswd3
#> 2299 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fhecaygn7l51ra3m8ikf
#> 2300 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bfnvgtdr0mvej6mspcxl
#> 2301 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gcb6cy5t8xbzjrhm1i2q
#> 2302 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ryu7zvzq6173znqos0iq
#> 2303 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vbv4vdg8aakzmjp5heae
#> 2304 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hogxjevkyeiydobppylg
#> 2305 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eskrcqzg6sg7975oqpf9
#> 2306 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lidj5cknnajhhcbbh2m0
#> 2307 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ltjpxmqrpriqrzqwglkw
#> 2308 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e8vdtqbzf2cjrz8tqoln
#> 2309 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bfb1xxkh0fppahpv0urc
#> 2310 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jmkt9rqj574temt7bpfy
#> 2311 https://static.www.nfl.com/image/private/f_auto,q_auto/league/i2s0bvbq8praroa7qzxs
#> 2312 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lpmz5k0jvpcgsvnyowl7
#> 2313 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zeu3osbokyfqeyl4bxgi
#> 2314 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a6b1v1ooegr5n8cxgflz
#> 2315 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wlqzzassmc6hlt5lu9vm
#> 2316 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sl7vcegendnyn2l082ul
#> 2317 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kaivb20gkmzo2mfmkvxq
#> 2318 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oppgt7da2qvgy3hqytpk
#> 2319                                                                               <NA>
#> 2320 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ef14n2mcd4s1mufg96vx
#> 2321 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m20yoqqjspudygtc3crq
#> 2322 https://static.www.nfl.com/image/private/f_auto,q_auto/league/edj5dnjfcz26wwfsi5qy
#> 2323 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y6q6nqhbfoteoj0mk3xi
#> 2324                                                                               <NA>
#> 2325 https://static.www.nfl.com/image/private/f_auto,q_auto/league/laxxbklw8na3w5v5uij0
#> 2326                                                                               <NA>
#> 2327 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m8gyw4o3p48ocawk6mlp
#> 2328 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lkr0wgqyd7oduuu0ps8w
#> 2329                                                                               <NA>
#> 2330 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gp5sheoxfco1dyyu0zv3
#> 2331 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mkkjwnnedh5jxmuovjlo
#> 2332                                                                               <NA>
#> 2333 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ws1yzzguvqpkww3annet
#> 2334                                                                               <NA>
#> 2335 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jdkrvzqqhkbg62hstgtw
#> 2336 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e2qgyhtngjk0llvaswxe
#> 2337 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lszslgbcc002sqjogape
#> 2338 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x9l00iypnysiuhxoqy61
#> 2339 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ddlhbm7zsi5o69wh6z5o
#> 2340 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nbd33dty35ir1tse6sbp
#> 2341 https://static.www.nfl.com/image/private/f_auto,q_auto/league/scivltnerox4ykflbwdk
#> 2342 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ijhcnnihcvepljuibloh
#> 2343                                                                               <NA>
#> 2344 https://static.www.nfl.com/image/private/f_auto,q_auto/league/adeqwfn8m3vljb4lolyu
#> 2345 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zxjqunrgf4j8p2eg4xyl
#> 2346 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ffzcc1vnjbclxuhe7dfv
#> 2347 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cro4k30wqv5bkc2nklto
#> 2348 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fdt5e87hcx5hzgm3pw2v
#> 2349 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ng7rxjqmnmxxdfm2ecpl
#> 2350 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nbdzjjexh908hpuqcnjj
#> 2351 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lvk8hcwflu0rrls8nvow
#> 2352 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ewvc1ulotwokq2ld1n5z
#> 2353 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cstlbdkqplchtbgjdcxf
#> 2354 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aibqfqkxrhjhpcloemes
#> 2355 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mjwnivk7htpl2ga5k6ui
#> 2356 https://static.www.nfl.com/image/private/f_auto,q_auto/league/blm28jqxpj6krza0gejv
#> 2357 https://static.www.nfl.com/image/private/f_auto,q_auto/league/z3gwnzhfaiq9dkhx1ui5
#> 2358 https://static.www.nfl.com/image/private/f_auto,q_auto/league/unhfaasxtecti2bpdozv
#> 2359 https://static.www.nfl.com/image/private/f_auto,q_auto/league/omqoxbzqhwpafubfvwi5
#> 2360     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4041703.png
#> 2361 https://static.www.nfl.com/image/private/f_auto,q_auto/league/s99zyddity7rtuqjovrl
#> 2362 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jfnmha2pthltzc1n4dra
#> 2363 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oa43ir8zoaiofwbupkrt
#> 2364 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kp90ptwmq7lw5tvsxfoy
#> 2365 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lwg4cpbjcdcgoru2emht
#> 2366 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jjiaqjjrdcxeinjzqi0t
#> 2367 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ebzxqyz5e7h7wrszr5vn
#> 2368 https://static.www.nfl.com/image/private/f_auto,q_auto/league/i2bihsraophhbhvhhypb
#> 2369 https://static.www.nfl.com/image/private/f_auto,q_auto/league/frwxoxkkegyccvw5bgop
#> 2370 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mq4eglal317zmqfsple4
#> 2371 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qtkfu7vlp2yl8iapuxqp
#> 2372 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bo7cv0femdqwb2sow3zo
#> 2373 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ewlh3um3bhdcj5jnao45
#> 2374 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f9hkzrelxrxrqrwgfyqq
#> 2375 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zh6y5vlof4lnpvvo4ruy
#> 2376 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kgzrf7a2q4bomzz0n51a
#> 2377 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sau5st3kffykhzcvpk8i
#> 2378 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ubprv9h2dimzokxfgc3n
#> 2379 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ztnf4vdx2qw6nowvmxy4
#> 2380 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iurff7im3hx8quvnfhs9
#> 2381 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kvy8moe4ay9wtxp7typ7
#> 2382 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w5eou5xhwyv8jm41ecur
#> 2383 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k20r83qg9iscv0hnklya
#> 2384 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ebdy0qoftzuzueczqxzy
#> 2385 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rz9ucrx7yftlizqmi5sz
#> 2386 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f3ohe56pyg2lfsb4qfyu
#> 2387 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rwlbwtbgzbxihaoelk0l
#> 2388 https://static.www.nfl.com/image/private/f_auto,q_auto/league/osuwxsizjxguut2hpdrb
#> 2389 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tftolxrm7ymzzjzdjutr
#> 2390 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y90hqzb2giyh4juypymo
#> 2391 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bznfkfu9wotn8phucv6i
#> 2392 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vhbqnaahmt9u9a5dqh3q
#> 2393 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bjq5xtqh8uuml2uy8wzj
#> 2394 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wn2xowqkaphzrq6bkqk9
#> 2395 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eykq1utegnoubaqaobkv
#> 2396 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bgb4ows3hnronunhbim6
#> 2397 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bwfi0h48pukqpvorppp1
#> 2398 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ptyqwxbcobvg9zfl0mmu
#> 2399 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sjzdojhlmlnxccvbtrzz
#> 2400 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fzvjstpb4fbrdl4tepsr
#> 2401 https://static.www.nfl.com/image/private/f_auto,q_auto/league/euewfqeojuzb6kgoyqll
#> 2402 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xob9jwci2iorl2cep73i
#> 2403 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jazmz8lm6hogimedq4wi
#> 2404 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yw3gzi3ijyn4yhnbvd5c
#> 2405 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cyggjw947hc92rxur6rd
#> 2406 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dvi2xjlpi0i3btue4etc
#> 2407 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k9wr94l5ed8rqumvqlsx
#> 2408 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uftoxzxlcbvssg74i7yd
#> 2409 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rbfywn8udqgqxygykxxp
#> 2410 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sibwv01zzprsay3oxkp1
#> 2411 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rbrvbc8xb0uhfoqmm148
#> 2412 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w67rvh3qs7vmwvmt9loa
#> 2413 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xlmpa6cyfswyqtgfrwh5
#> 2414 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ex2fljkyw3sox3ddyfae
#> 2415 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pntykhjbtizvylsgscgq
#> 2416 https://static.www.nfl.com/image/private/f_auto,q_auto/league/elwwfe8a2sp9b6lsm5pn
#> 2417 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iybbnav1vitrxnmgcesa
#> 2418 https://static.www.nfl.com/image/private/f_auto,q_auto/league/b7ucwvjqjcfbyyuz4hew
#> 2419 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ujqbli4ovrwt0yxy6ti7
#> 2420 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qaedcspznqlmkqabxuoi
#> 2421 https://static.www.nfl.com/image/private/f_auto,q_auto/league/whn1tqqkumrno0ohr9sh
#> 2422 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tp038s5lpu8foyovfgl3
#> 2423 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k52ke6pwdayvql2qxqfn
#> 2424 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fmlikkiatlej8j11kurg
#> 2425 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iitkvspxr9px3j8uw5vl
#> 2426 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hkdg1jfalmidumbnte9b
#> 2427 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fuepwtifp7wd9grpzvwb
#> 2428 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wyd6t28jc7wwg5vyseoc
#> 2429                                                                               <NA>
#> 2430 https://static.www.nfl.com/image/private/f_auto,q_auto/league/csra0oiqwh6i2utjdlud
#> 2431 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fff1gvfq1glc3quftab4
#> 2432 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cxnwh9ntpqckttavbzuy
#> 2433 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bsgtdhaylnpxdhfxtx0y
#> 2434 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ukk92rkuyqdyx3sigj5z
#> 2435 https://static.www.nfl.com/image/private/f_auto,q_auto/league/v2igdor3vf1ijb0qyyp1
#> 2436 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cny5zdqbqkimr4ypua1x
#> 2437 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qa1imhtrn2le7rvhlecr
#> 2438 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dqi4ybeksorphbxmwqjx
#> 2439 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wcgbhqb85axu1vmnt4xc
#> 2440 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w9vr0ymxx0l0fakit9zb
#> 2441 https://static.www.nfl.com/image/private/f_auto,q_auto/league/v811mn47vy4yym5qefhd
#> 2442 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dcrfuiyknwrwxsjsjf9q
#> 2443 https://static.www.nfl.com/image/private/f_auto,q_auto/league/i5jklsh3tbdq6qhjjx3z
#> 2444 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mffopp2btoblislqf5dc
#> 2445 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xevuoqg8h0chgypuqy8k
#> 2446 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a6loroqhta6g65aqnsrk
#> 2447 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ccgevhaduyc9llngcnlu
#> 2448 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cqlktgcvfqbt8j8w6kel
#> 2449 https://static.www.nfl.com/image/private/f_auto,q_auto/league/io9silocxbywvisvcvpx
#> 2450 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a88qpszbdhhceqeohpxv
#> 2451 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gj7zn8zxchwtm199i9vq
#> 2452 https://static.www.nfl.com/image/private/f_auto,q_auto/league/myd0hbdegadm0beryuxz
#> 2453 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vkgyacrnsjci3n3pkii9
#> 2454 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vqdsnfzenliqmpmodbul
#> 2455 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bdfb1uulaykfcryanimb
#> 2456 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hf93hyvfhwqp89z08vum
#> 2457 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cus6lsottdtd7bpowaxf
#> 2458 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qxw0befczfv5wb7rneze
#> 2459 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zqv9wd6gse2plsf4pyox
#> 2460 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hlzfvlfmksspr5whg5ph
#> 2461 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lo951s7rzabarzmg0zbx
#> 2462 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gpu1icicesj4o3r7vx8p
#> 2463 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gahqeye8dxfvxv2djlvl
#> 2464 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dbgm7zqxkxpnvw9wrpv9
#> 2465                                                                               <NA>
#> 2466                                                                               <NA>
#> 2467 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gf750i58d7wmsg1siopu
#> 2468 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q7zndz1ymqlfqpsrxqjs
#> 2469 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fuigcrxxxvli2alkiknc
#> 2470 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ebd5ijvlgr6p8vejupdr
#> 2471 https://static.www.nfl.com/image/private/f_auto,q_auto/league/avci2cbvm9o544uszaho
#> 2472 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q9thtylpufapknjyzug7
#> 2473 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lqeda5e9rdzvsy9no7ih
#> 2474 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x9prtllsxc3rm63fcujt
#> 2475 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bt0l6ltdi7h2dtahm3xh
#> 2476 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m4yskvmmknsmjntrfjou
#> 2477 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gzkhhzqrnqsikmjcixbt
#> 2478 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dinooml3axcypbyhhny1
#> 2479 https://static.www.nfl.com/image/private/f_auto,q_auto/league/asnjmw4verhhjvngiwhk
#> 2480 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vjaf2r7e6ai7xn4eeoci
#> 2481 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vtjv1ccbbf4qswvm8iph
#> 2482 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k7sztrljegjwaugn2hsh
#> 2483 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dn6qzbroo4c3oqcvgs3l
#> 2484 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rfbikq4zeusxk1wtzei6
#> 2485 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aytsouqf1welfjcmy9md
#> 2486 https://static.www.nfl.com/image/private/f_auto,q_auto/league/utrcyt36k46mps8lgs7c
#> 2487 https://static.www.nfl.com/image/private/f_auto,q_auto/league/diyhbl9fyylucj8iako2
#> 2488 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bgvvs24epwbjrn8vmhcs
#> 2489 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qsgubsbwrrmfoqtdyz5d
#> 2490 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ejduvrsyxtfnvdbkalum
#> 2491 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ocxnwiuxljtuxlzgosmu
#> 2492 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x4ysqtvpjh34fnbeeyrk
#> 2493 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xzgdvzkvgiy6he545qwl
#> 2494 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ycgdzqvwo9zpprxrvm0o
#> 2495 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xkwuqxdpjb78x4i6cbsv
#> 2496 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fttr72dldcouwzsffkea
#> 2497 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pwl0fkpfwut1rizcarub
#> 2498 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hf5lgpcdcidclrjmppfy
#> 2499 https://static.www.nfl.com/image/private/f_auto,q_auto/league/unpooxoxrnaazxmvsvto
#> 2500 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mxjoju2rx8zpjmpaqeo7
#> 2501     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971823.png
#> 2502 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wnncdciptb4rc41ext8l
#> 2503     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929752.png
#> 2504 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bvlxppm6ozwvd6tvfvf3
#> 2505                                                                               <NA>
#> 2506 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hmvvht1sbtrhu5nryzjd
#> 2507 https://static.www.nfl.com/image/private/f_auto,q_auto/league/spksonvyb67qtjexwnbj
#> 2508 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dmfwesbkwn4k4oza6j0s
#> 2509 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vrvxga0lrqbq9gn5p2gz
#> 2510 https://static.www.nfl.com/image/private/f_auto,q_auto/league/n7fj5fjblf6pdgjdtphr
#> 2511 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aivhjq8aiwwgnb9f1xub
#> 2512 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fkizryjprkp9t1wsarw3
#> 2513 https://static.www.nfl.com/image/private/f_auto,q_auto/league/to1j3eftgyobffvygini
#> 2514 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xkitozoc6vzwlxibvz0w
#> 2515 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jcmgyeiruehjjdpfkyf4
#> 2516 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nszl4kwbns3gyopxquzu
#> 2517 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sm3ij3pcby5ciqwaaqa1
#> 2518 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nqhawwso2mfk1bpb2gk4
#> 2519 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dcgojea5l9o59zw7jfxm
#> 2520 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kyczerh10ewrd0eaexa8
#> 2521 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jllhqmkhnoyxiaexd8ar
#> 2522 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lh1e0z6x8k9hqz1aba5b
#> 2523 https://static.www.nfl.com/image/private/f_auto,q_auto/league/svpo7chliiymc0r7hegp
#> 2524 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jzeu0mzarw5bosseecho
#> 2525 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eh0rbweg4wbzgzpvprnv
#> 2526 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xywzh531dbq282z4w30q
#> 2527 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xuw3c5yweafoiudufvdg
#> 2528 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ckwncz8djwnlo1miq1vq
#> 2529 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xwyc2a0qfdxbbct6lso6
#> 2530 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tz5v2aipfjbxm9nsgkv0
#> 2531 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vavn9z3uzyuq4wcqoc9x
#> 2532 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xthxpjotjc8ytnbwivxb
#> 2533 https://static.www.nfl.com/image/private/f_auto,q_auto/league/d6e5mwllmmwixl01o93g
#> 2534 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yaurjahdzk6pski1lvcp
#> 2535 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hp7exmuqylysgife5p9m
#> 2536 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ugenledglglgtmnz378y
#> 2537 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t25xiwqy1y0k99fybmpv
#> 2538                                                                               <NA>
#> 2539 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eb929tgmmx22rvudenzx
#> 2540 https://static.www.nfl.com/image/private/f_auto,q_auto/league/byhmzl2x7q9km4ryyf4m
#> 2541 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ka9xt7lbqnkh66dhgpwn
#> 2542 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yq8ail7bozqqz8xhna8e
#> 2543 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tvhivlqwcot3zgfxvspv
#> 2544 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qfjugbhul7ergngoqlyg
#> 2545 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ve9vsis9golox0h4ivzg
#> 2546 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ohk66qeyofgt4i7vwkri
#> 2547 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zewc64wn6tpuxuszjqjl
#> 2548 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mnvipfkixtfbsgjwwksp
#> 2549 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gaze62nsc0f0lomxsc7d
#> 2550 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yz4nj2cu0emfjudr3ofz
#> 2551 https://static.www.nfl.com/image/private/f_auto,q_auto/league/veok5ok0xu5vjfg5uni4
#> 2552 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tinnxmzllaiyh8rmebz8
#> 2553 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tivpht58f1y1afgdtlf2
#> 2554 https://static.www.nfl.com/image/private/f_auto,q_auto/league/posfn4mibnwtjalhhbdn
#> 2555 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wrlzrtrlatqqc4e1xbg8
#> 2556 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bm93x1s32xrt2qawyk0s
#> 2557 https://static.www.nfl.com/image/private/f_auto,q_auto/league/milfcgwde1kgxtsomj5v
#> 2558 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ehouflrcqogficpbkswb
#> 2559 https://static.www.nfl.com/image/private/f_auto,q_auto/league/abpvfpyzcvp0wzx0fdd2
#> 2560 https://static.www.nfl.com/image/private/f_auto,q_auto/league/smu3oqve6iczitj7wcbq
#> 2561 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yc4twwikq5rbkdwmt1bt
#> 2562 https://static.www.nfl.com/image/private/f_auto,q_auto/league/euwyfno3natk9lvhqsas
#> 2563                                                                               <NA>
#> 2564 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zh53i6rhbzby3260ji4q
#> 2565 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t7g0durj45azjt5zjesm
#> 2566 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jvvw4euzsnrsif1jb17i
#> 2567 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sp7wnujii8u8ad0pbbts
#> 2568 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pu5wwpmhjfcjelexolri
#> 2569 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xzplevvhklfshpif4gg7
#> 2570 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wqrpuvejwlemzj7trlfw
#> 2571 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yzyzdrymmbc4ka8aqhzs
#> 2572 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jrjlx8m9cyghgetwixwg
#> 2573 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nasek2y0us6cise3zu3g
#> 2574 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ccxrdh1xmtatyf0idvrl
#> 2575 https://static.www.nfl.com/image/private/f_auto,q_auto/league/g0svnkxm9mina574qbpa
#> 2576 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mbrrrcrgypbjsbxxdxki
#> 2577 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xnzr0ir8bu91b2kjs2ps
#> 2578 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hfruksalvg0artya3hwd
#> 2579 https://static.www.nfl.com/image/private/f_auto,q_auto/league/s5xoioubtr1wd06pdkru
#> 2580 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fvvyeowlfnxgybavjmaz
#> 2581 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eveib2v6pegnruwuzfko
#> 2582 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wt8yewymnqa0v9umu8o3
#> 2583 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ll8hvzpevmfiyaiz27gp
#> 2584 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xzhfzw7pmgwpg5v4btne
#> 2585 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fjn6ifrv2fo51ehtjk7v
#> 2586 https://static.www.nfl.com/image/private/f_auto,q_auto/league/orbbcdwf2er05hy1l4mk
#> 2587 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pfesyojdcpuiy8xolsjy
#> 2588 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r68dolodg0xt851yklsg
#> 2589 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nfhld4j7oly0skzd8p3s
#> 2590 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eazq7vpsmixy1asto6pa
#> 2591 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oocrbrbm4x1bbhzs30le
#> 2592 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tu315vdgwxjvhpg4izix
#> 2593 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ljvs37mzgxrt5pn9iwmr
#> 2594 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qcodwdsis92iva0h2wft
#> 2595                                                                               <NA>
#> 2596 https://static.www.nfl.com/image/private/f_auto,q_auto/league/to8ggiitesym8vaxaqbe
#> 2597 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gbhslmpdddrtzalnzwwe
#> 2598 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ctjcsaqocaelc0ths7ry
#> 2599 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zq4xcj1gxlpgrerbsgj1
#> 2600 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eh4f6hyqpvacnugveezy
#> 2601 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qjvfd8ihubiunofnxy4z
#> 2602 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eej4bvcoujtxx7giqlwn
#> 2603 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hknfdi8rwhtpgpmwlhcy
#> 2604 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ilxky9sgzwrvtgllergi
#> 2605 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qlk40pkwhqw5mhtffztr
#> 2606 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oaao8m2fbovltqev5i7t
#> 2607 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ywwq5sjtwptjrbawq6w5
#> 2608 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a9imakcmvshhpqsi5u8v
#> 2609 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lwcqsanzizt8sq0jnnpr
#> 2610 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ved7bttliyuaps02d77d
#> 2611 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hjztfvhrrtjgczvmyhnz
#> 2612 https://static.www.nfl.com/image/private/f_auto,q_auto/league/adpoj4k1cgdzr7klyxls
#> 2613 https://static.www.nfl.com/image/private/f_auto,q_auto/league/v73ulfbrsb5of1clfa4k
#> 2614 https://static.www.nfl.com/image/private/f_auto,q_auto/league/riolbnmteft7yaakntwe
#> 2615 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ztnxn4wffhnm3s3ypzaj
#> 2616 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zkurufp1suswhdb611hs
#> 2617 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sztxzdhtmfuxtbxrfy6t
#> 2618 https://static.www.nfl.com/image/private/f_auto,q_auto/league/swezlow3dgygychrqrph
#> 2619 https://static.www.nfl.com/image/private/f_auto,q_auto/league/idrlzzfrggyeo9ucsml7
#> 2620 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fddmfibzae9lmgrl7dxr
#> 2621 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vwig651kxojx8wg7iu7f
#> 2622 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mrgkhzunyljetpkfadkt
#> 2623 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xwrloglkpcnshg9wxdpd
#> 2624 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yfpmonsmwzphldzvfmep
#> 2625 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zxjawoto0p34horsylkv
#> 2626 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pxrjunbln50toj2tmvbs
#> 2627 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lkszsifhpwtjpvjvlxw5
#> 2628 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oiacjddbxvaeiewm9v62
#> 2629 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zliegu0pfjyehqw1ozzh
#> 2630 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qkfbmmwufx3fmqd9cth9
#> 2631 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kggihjcebdl3e7pro78t
#> 2632 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oabhyr90yythhrmion4c
#> 2633 https://static.www.nfl.com/image/private/f_auto,q_auto/league/unxs3jdj0qphnyh6i0jm
#> 2634 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qekwqxq5okujuoiqilr2
#> 2635 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kv7kjunfm0gzejerdkzy
#> 2636 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o0l1kltz7aqq54eki6ka
#> 2637 https://static.www.nfl.com/image/private/f_auto,q_auto/league/j7qggybtsikbnajh54nm
#> 2638 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lrggyj2gbtz8nonnylay
#> 2639 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yr7hzgvqb14fstrszvma
#> 2640 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cp05t18n1z5whrkc7igu
#> 2641 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fszwbpiuqealhyh0l3rh
#> 2642 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fihkqpnzwigqms2mh2sx
#> 2643 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pfmnqwduj2bkposbv72i
#> 2644 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ivptukrhxzlaj9iy47q5
#> 2645 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t14lisxsikfsjjhfepts
#> 2646 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ku2qusev8vm9entvwsfv
#> 2647 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hyefzfcujafngv8nmzea
#> 2648 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mxlxtn8moj6edkwqfd0a
#> 2649 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x9wxc1vtscwyyehml9dq
#> 2650 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hh8i9mbvu35tvk90ch9s
#> 2651 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ms8m9mcrwrfdgnyzvckh
#> 2652 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vcsfyi9iwrc1vvttsody
#> 2653 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tzpsf7azpyyn7e4bae5u
#> 2654 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cjc2lrcgt7cfeuaxkfxs
#> 2655 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nr4knrjycn16isteaszy
#> 2656 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yj5cojoh3elk3aedickt
#> 2657 https://static.www.nfl.com/image/private/f_auto,q_auto/league/esqlqavkqbqxht8squvi
#> 2658 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ez22glsnoxq7hfv7uzup
#> 2659 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cljpmvwdouidzsz1gdwb
#> 2660 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cjqcv7piypziiezpebet
#> 2661 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cpfiby1s1ir2jgr2ueja
#> 2662 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uooodwpwkhmibmzsgsfg
#> 2663 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lg6fxn1q4y3iywwdtqsx
#> 2664 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y5wyhl1lewhgyjggzfaf
#> 2665 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zapbzs6r2rbncyanrumd
#> 2666                                                                               <NA>
#> 2667 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bqlae0i5xofn9g6yfhxw
#> 2668 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uyfpubghb3xchx4hlbeq
#> 2669 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a6ra8payl2bx3mv5tfs1
#> 2670 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uyc2yzn3jzzmx8zkswex
#> 2671 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m7e4m3npoqhgw9kngd1e
#> 2672 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mqb4z28qv2xbynsdpwgy
#> 2673 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fg0yedqe7dalkxrhfxxr
#> 2674 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nkjmkfxkkmowsfqqsrf0
#> 2675 https://static.www.nfl.com/image/private/f_auto,q_auto/league/s0artsezqklnbcudxt0f
#> 2676 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f4eexdy3a7aghr7s7iig
#> 2677 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bhdaselqlyjqsn2qy5id
#> 2678 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uqrmlckaajcvlbcbitpd
#> 2679 https://static.www.nfl.com/image/private/f_auto,q_auto/league/chpdthcaocrvpj7b6i3a
#> 2680 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t2pjyumewomvynbvdvzy
#> 2681 https://static.www.nfl.com/image/private/f_auto,q_auto/league/abb4eopcoj7842ijt0bp
#> 2682 https://static.www.nfl.com/image/private/f_auto,q_auto/league/p1qsi2bjwxtd1hoizivd
#> 2683 https://static.www.nfl.com/image/private/f_auto,q_auto/league/itsedtrw7zi6txd0yfen
#> 2684 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yjolxd0hrcomhpzjlvfg
#> 2685 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oelu5areahfpqecehtku
#> 2686                                                                               <NA>
#> 2687 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sbokmcukytcmdnhar0vx
#> 2688 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kaoioaaqmkuciyvemv6r
#> 2689 https://static.www.nfl.com/image/private/f_auto,q_auto/league/srqqplcbccf5t7nvrnas
#> 2690 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a21dlzm7ulkfujswmx37
#> 2691 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rxjmftpghrkwjfrmjupm
#> 2692 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x5zkuyamiabpkuvefqye
#> 2693 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ujajnuxovscpkjacbpya
#> 2694 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hik6marceggrf4cmukci
#> 2695 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e8em3pmzh60r4tayjg25
#> 2696 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pkhhxwplsawnhln9rsun
#> 2697 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tqn0pjemxn7hoze93kwa
#> 2698 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zi77vkqwrmklt5ic6lc6
#> 2699 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pbzlcbsc3yb28i6fdvqa
#> 2700 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r20rhl0c17ql8dtnl5kz
#> 2701 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lcbi4fldzrltceknjfx3
#> 2702 https://static.www.nfl.com/image/private/f_auto,q_auto/league/un4o255q07fjcbknndwn
#> 2703 https://static.www.nfl.com/image/private/f_auto,q_auto/league/v6dx1jw3sd8dcdcsvc4d
#> 2704 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mf75xcgnj9ogavslg383
#> 2705 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ax2hkkqdpzubdyydogs8
#> 2706 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dui4nltkl7uzpgeiguld
#> 2707 https://static.www.nfl.com/image/private/f_auto,q_auto/league/trsucck1w1mzytpwktv5
#> 2708 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ut44v8affnzwqaeztam1
#> 2709 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hyvwh8kijwomfikvqbga
#> 2710 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qodkouwmexklezoqmcg6
#> 2711 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qzubfqjw16z37rm7se0d
#> 2712 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rfjyewsygcsetrd8vrw9
#> 2713 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uhuncx8qb6b3grbfztg8
#> 2714 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ikzbygp007w9gn1rofoo
#> 2715 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cudxhx7a5uqtedmlwtvg
#> 2716 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ntvfcvfd32hho1rkokwi
#> 2717 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ze864mnbymqdyvcsixw2
#> 2718 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y7qqpnfdih0wi5soa8kn
#> 2719 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bxkrzih9phr5abgabo7v
#> 2720 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tbldho8jbkode1uqoj6n
#> 2721 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cck12vzgomudzsoxh4zv
#> 2722 https://static.www.nfl.com/image/private/f_auto,q_auto/league/l56ywjejfpraigzs4qia
#> 2723 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ok8mvanlgwi5cfqndl0n
#> 2724 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tfvfywrgzntq5iifnfdr
#> 2725 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vousrrbz3j8fxfhyhplv
#> 2726 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ct7kulvg6afmmlobnudf
#> 2727 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m3dcx5f3mmnblapf7wgs
#> 2728 https://static.www.nfl.com/image/private/f_auto,q_auto/league/odvmjxegwtwf1ybijlvm
#> 2729 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hodvsi604klolg6ugwz5
#> 2730 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ukuv7atmhwaudnccmfto
#> 2731 https://static.www.nfl.com/image/private/f_auto,q_auto/league/byqjsxirtgahpmbxx1zj
#> 2732 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bn4p0jfggxtcblfua8t2
#> 2733 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r2mftn8chmfrurymfgi3
#> 2734 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ybzwkbefmlmjjerumh0n
#> 2735     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120360.png
#> 2736     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126330.png
#> 2737 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dh62uhmoyxs0erbl6m85
#> 2738 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tmwaifzvklcmjs4ubrgo
#> 2739     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049048.png
#> 2740 https://static.www.nfl.com/image/private/f_auto,q_auto/league/agc3a0mvmacqquj6fzrr
#> 2741     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4031164.png
#> 2742 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vnhojotlckwgzdxpptxf
#> 2743 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bwwel6rabn63u0fficoa
#> 2744 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h4w4ukiioo9xperna91h
#> 2745 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uj9ugamvbfpkwvjwnjeu
#> 2746 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yfkizk0swxx8hscy2ljz
#> 2747 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yunb9anc0qzgr8sghl87
#> 2748 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wwn0rzawfqjiisgeixaw
#> 2749 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gfc2jq777a5c7mdfn6z5
#> 2750 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fgghhl3qcrhmlvq2wsk7
#> 2751     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126288.png
#> 2752 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hm5fql9uhtvjadws52fn
#> 2753 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nhydd9mclp9t82oqwcph
#> 2754 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fruwv3uyu8y9qsmyd6pc
#> 2755 https://static.www.nfl.com/image/private/f_auto,q_auto/league/adedp6qwpbdrukkr1iaf
#> 2756 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eg09bedrudpyuvxqe4dn
#> 2757 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cbhr5wbhfkhqpw6ipvfy
#> 2758 https://static.www.nfl.com/image/private/f_auto,q_auto/league/afexojkz4zbs4xxsxobr
#> 2759 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r9fk00d9giloyndycrd0
#> 2760     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116186.png
#> 2761 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rj2u9c8sjeccz9dl0s1l
#> 2762     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3066250.png
#> 2763 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qhlze6yu74txql6l8pvu
#> 2764 https://static.www.nfl.com/image/private/f_auto,q_auto/league/n1j3os0rwv3ssishj4hl
#> 2765 https://static.www.nfl.com/image/private/f_auto,q_auto/league/b2i2rpw6gdfzle5dnkew
#> 2766 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pgfqjlfevb6skckwwtjs
#> 2767 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vhfdr5efpkws7tvy5uyi
#> 2768 https://static.www.nfl.com/image/private/f_auto,q_auto/league/occvbxzkf8cyt0jpqisf
#> 2769 https://static.www.nfl.com/image/private/f_auto,q_auto/league/glhezwkenj0ii06gry3x
#> 2770 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yggpg0gim50hcbtndrds
#> 2771 https://static.www.nfl.com/image/private/f_auto,q_auto/league/swc134obyt0q7uxuhfbd
#> 2772     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3044707.png
#> 2773     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049566.png
#> 2774 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o5eu4cicc8jkooeednop
#> 2775 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vnieq1z5tednmx9pm2nm
#> 2776 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qbdgtogzpytljqoyvmj3
#> 2777 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tbaxb80ahspx75bfby9x
#> 2778     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125783.png
#> 2779 https://static.www.nfl.com/image/private/f_auto,q_auto/league/egt2ca8u47nytorcia3e
#> 2780 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zspyq1pcjhjuvcj9se5q
#> 2781 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dglt2sdm4uwwsr7jcesb
#> 2782 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f8viucat1mapjy3px8i1
#> 2783 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e8qfdpw9wyq5ccvhslru
#> 2784 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qt7buttgbl00wgxdevvh
#> 2785 https://static.www.nfl.com/image/private/f_auto,q_auto/league/od4q4wn2w2tisel3j1uk
#> 2786 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ooxkyj2amw9lyju9g382
#> 2787 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fhy3cxo1m6c7rk9e2u3y
#> 2788 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wwoffekf4sot3ffnkkl4
#> 2789 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jdzlrmsowu9pizucn7tb
#> 2790 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rgrf98s4bsxmwkkgesoi
#> 2791 https://static.www.nfl.com/image/private/f_auto,q_auto/league/c8cszehpmckghfcsg44l
#> 2792 https://static.www.nfl.com/image/private/f_auto,q_auto/league/up9jeslnuipz1hjeglei
#> 2793 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qgwd89z8jxh5o9ln6cmp
#> 2794 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jvuw8ifrlwbzhl7xicn9
#> 2795     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120863.png
#> 2796 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jiuv92mavotqatsa9cq6
#> 2797 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x7sdkpar7u1v19afeboq
#> 2798 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gqmwdqnpvxq56hpecvwp
#> 2799 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t0d66dvypk5mlma4ommp
#> 2800 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kx8xfykjtscwutceweud
#> 2801     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036434.png
#> 2802 https://static.www.nfl.com/image/private/f_auto,q_auto/league/egfrw5pjpsk1aiykw0sz
#> 2803     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3110509.png
#> 2804 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rahkyqugsbkqpjoghwsw
#> 2805 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w8zizjleq589wrjwghnt
#> 2806 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tu71prnsstk00val1ocq
#> 2807 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ysvaeegskjeebv1zbczm
#> 2808 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vwqmw9vzmukghuglz7nb
#> 2809 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t1cca7iow9hsl3bjxehk
#> 2810 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vu22vlo87blulj1xvqww
#> 2811 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pmadjaxglj8cwhmimrtk
#> 2812 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gj3liwtjkgotqaa5pav0
#> 2813     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037345.png
#> 2814 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kjaoqz46ckvg4f1n2h93
#> 2815     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4327530.png
#> 2816 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jdlknyziigmhmkkyihrm
#> 2817 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bxlmaevbg6vghvi9ppxa
#> 2818 https://static.www.nfl.com/image/private/f_auto,q_auto/league/i3mltb1hzjle7erdyesa
#> 2819 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rpvjkya3fhyeaqg4ndqj
#> 2820 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r84dbsrslh4mm8p86t5x
#> 2821 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rw3fxwrivyisrif2trs3
#> 2822 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lq7fuodktgaehlcdv1s2
#> 2823 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ahnxascuttpx7ce28twy
#> 2824 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h0wcggh9nbetg6yi0zr8
#> 2825     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912029.png
#> 2826 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nnrdjasrvurfzyihwtea
#> 2827 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iipazxtxtkluench4zvg
#> 2828 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gosoamhoukxux6lkcrsk
#> 2829 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xajswvlfsqkcsxekgos8
#> 2830 https://static.www.nfl.com/image/private/f_auto,q_auto/league/flszg6rljqg0bwnpigzc
#> 2831 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ucq6z6opmqhqwylipqjm
#> 2832     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4405778.png
#> 2833 https://static.www.nfl.com/image/private/f_auto,q_auto/league/syoxopqwwddt4lmwjqc5
#> 2834     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3916913.png
#> 2835 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k5mwgowclpekouahdusw
#> 2836 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ndxf3a1bzr60qmrpyy3n
#> 2837 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vu3pxzkjmwdghexv37f9
#> 2838 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fqukyna6wbs1po36acjl
#> 2839 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xco7k2vow8effgzzuebb
#> 2840 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sccvxg0jlpslahqpuvgb
#> 2841 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bckvzihlxr8ezwmdxxos
#> 2842 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bx9xoxvogvnhlbtdxhak
#> 2843 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pu8wjusv3snwgouolnn7
#> 2844 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lqfbm462loal9scaa1pg
#> 2845 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cfp2mvofmdr524hscnqb
#> 2846 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pvlqdsnml9gfddkdz4p2
#> 2847 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ooftfsl6nscddqwleiwv
#> 2848     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4039221.png
#> 2849 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wbrmwlbgy7enymlxef1y
#> 2850 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mbf8pvnpazpr0sysk0kr
#> 2851 https://static.www.nfl.com/image/private/f_auto,q_auto/league/b4utvrqhua5527jgmnbe
#> 2852 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mzdtsnliv0biw40mici6
#> 2853 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yvcdnpypxznydswmpdnv
#> 2854 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fe4dbeah4mhotlys7z7c
#> 2855     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2971986.png
#> 2856 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aphgunfzg6ptehfuk8j1
#> 2857 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bza527ybvn5t4xtkzbff
#> 2858     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921688.png
#> 2859 https://static.www.nfl.com/image/private/f_auto,q_auto/league/thegvhm2aodsgwg9vjih
#> 2860 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ac5eu8oloukdvqpwcezk
#> 2861 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kenxcajb0nhzb9pjfirg
#> 2862     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929849.png
#> 2863 https://static.www.nfl.com/image/private/f_auto,q_auto/league/csj61dpnhhhignc4w1wl
#> 2864 https://static.www.nfl.com/image/private/f_auto,q_auto/league/teqetqikvvyknsrahxcc
#> 2865 https://static.www.nfl.com/image/private/f_auto,q_auto/league/klobmbveawmmy3f0yycw
#> 2866 https://static.www.nfl.com/image/private/f_auto,q_auto/league/i2f6dvzikdojakefus8n
#> 2867 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jslxlswvw3st7bgc1nuu
#> 2868 https://static.www.nfl.com/image/private/f_auto,q_auto/league/afpumuprpoklfbccctms
#> 2869 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bmruspaf6zq1pmekuky3
#> 2870 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tup5xrtmyxvyjg0jx4ka
#> 2871 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jaaap6eks5n0na6glovq
#> 2872 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fl7caq1akaj5zyw06mfw
#> 2873 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zwrgudo2baultrwapmwm
#> 2874 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k9u75jymftutq0dfrlqc
#> 2875 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oznivv9cvpksqao1qomq
#> 2876 https://static.www.nfl.com/image/private/f_auto,q_auto/league/u4z9slvuf86l3muyuztf
#> 2877 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ktty0frretkrxmhrhxjb
#> 2878 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gm9ulvkcgkcwmtejco2y
#> 2879     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115496.png
#> 2880 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zsnyx6lsygssgtkniplj
#> 2881     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047486.png
#> 2882 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ijqur9saj5uymxptrioy
#> 2883     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042880.png
#> 2884 https://static.www.nfl.com/image/private/f_auto,q_auto/league/g1ppy2fjyazove8yag6s
#> 2885     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240629.png
#> 2886 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wr3gbimxpdakiq72abix
#> 2887 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nimslb626qcsjsseqc9t
#> 2888 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h2epbheekftcj8bwxtdm
#> 2889     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115329.png
#> 2890 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sphrp7cxjmbviaxogcua
#> 2891 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fcsqfz4tqxk95aqcixsk
#> 2892     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3920576.png
#> 2893 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ngvuj0vtmvqa67a347zv
#> 2894 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fbytfuptbqfgzhldcsz2
#> 2895 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mwniksamqmmqj43bgixv
#> 2896 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vms7q8vgtgvl0xmssdrl
#> 2897 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dllatrq2rpnfs2kvqkze
#> 2898 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qtx7tb7nsosjhm8g63jd
#> 2899 https://static.www.nfl.com/image/private/f_auto,q_auto/league/caovj6onwsoepaen8tjc
#> 2900 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f69xjc3cbxehah6luhqr
#> 2901     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040007.png
#> 2902 https://static.www.nfl.com/image/private/f_auto,q_auto/league/udsbqq7rj3eaybr02c80
#> 2903 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ilhzmyl1qio3lvsezldn
#> 2904 https://static.www.nfl.com/image/private/f_auto,q_auto/league/edivoc3fbe3y0jhgw62n
#> 2905 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h3yuublp7pjixgv5kyya
#> 2906 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jqi8dk9u5j8i9slgfyyk
#> 2907 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r6rbktbic8s9950hvevt
#> 2908 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fodg8msxg2boaw03aud0
#> 2909 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fea3scioig23tax7dfnu
#> 2910 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yxot5c0z1duos6w3wunm
#> 2911 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hqvwtfegytw2v9m0krga
#> 2912 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wkntgh5bd86kzwmtj85u
#> 2913 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hvbjym05mpvfkdhy3bsz
#> 2914 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zw694ltpgyqw5kuuileb
#> 2915 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jbjlydhktat53re6338i
#> 2916 https://static.www.nfl.com/image/private/f_auto,q_auto/league/arizu5swfq7ttoh9iywn
#> 2917 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mdicwv9fjbpnrdiy8kvq
#> 2918 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tu68lsbpcyhdbysyzzdc
#> 2919 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ow8aoindvqcbjqxopuhf
#> 2920 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t5uetfpxlf0bge6kues2
#> 2921 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ywpnwrxigaydvrrip3ls
#> 2922     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118081.png
#> 2923 https://static.www.nfl.com/image/private/f_auto,q_auto/league/txrio1lyaloqkwm78bxt
#> 2924 https://static.www.nfl.com/image/private/f_auto,q_auto/league/i5ayy2kyb5vwnk0oihes
#> 2925     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124861.png
#> 2926 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w67kl2ggryy7j939endz
#> 2927 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o924u2snedogxnif9cvk
#> 2928 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ado88qck0w81cdlnhbsm
#> 2929 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bmiv0rw74m5vsmbeqh4h
#> 2930 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gjlmx0fht3k9qpjcgacl
#> 2931 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cbm8kcnfcqe9f3opv7ay
#> 2932     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045123.png
#> 2933 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cqdntdasciynxbaqmdaz
#> 2934 https://static.www.nfl.com/image/private/f_auto,q_auto/league/z0hhlgxx1icjln3l3hgl
#> 2935 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bpmiikrnvmkpkk5hgjhz
#> 2936 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wavjtviltzian1jxfuve
#> 2937 https://static.www.nfl.com/image/private/f_auto,q_auto/league/guicom731cuts0f5otuj
#> 2938 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zyslkltrgch6jxx3krkz
#> 2939     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4242420.png
#> 2940 https://static.www.nfl.com/image/private/f_auto,q_auto/league/btv4xik81slb9h07rmkh
#> 2941 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rajajwfcqsmonbqsblcl
#> 2942 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kpjnoizotzwitigvyjdg
#> 2943 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bdl7rio9sfysdv9slw2b
#> 2944 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vgigxwbhwbz1hn5t9vu3
#> 2945 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sjq1mh1dhbriamgcqoim
#> 2946 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a3d2sscg5mmezgvo94bj
#> 2947 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vq8zoqivzuwdfpyxdt6u
#> 2948 https://static.www.nfl.com/image/private/f_auto,q_auto/league/angbwdo262bne7lhuobx
#> 2949 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iyrmwgwjx9lnzii0tuqh
#> 2950     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046689.png
#> 2951 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pyhv3dsz2iu2mmi5kpja
#> 2952 https://static.www.nfl.com/image/private/f_auto,q_auto/league/s1at5znt6ppdjmhlyewq
#> 2953 https://static.www.nfl.com/image/private/f_auto,q_auto/league/scwebjmgacquopv2akmh
#> 2954 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ij1fforx34bhencomkxc
#> 2955 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pktvhckc2mvhvxs7vpxs
#> 2956 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mlamkfsk8aoabpky98nq
#> 2957 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yixoz4hdrqiybivtyko7
#> 2958     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123972.png
#> 2959 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jzkvh6njyam56kzs8fwb
#> 2960 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dxftxvddj9mylsuy0h3l
#> 2961 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zr0lkivizdwvbm33rjcz
#> 2962 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ej8zujhvgutt4xwx3ayy
#> 2963 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kxj01aeqfoi8cuexcnr0
#> 2964 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pfaodhfplfps6vahvghk
#> 2965 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bzekvlnhqrgv4mqjxtql
#> 2966 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nizdose3rdr06e8c4ubu
#> 2967 https://static.www.nfl.com/image/private/f_auto,q_auto/league/stxweocsyd2hqfoq7hpe
#> 2968 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pb4wiehoy5dn7fdf6fhj
#> 2969 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vdnoxjqredltxa6iihd1
#> 2970 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zks2uor2jdh0q1l5u64j
#> 2971 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rvzdcbasgnsjnpzmc1dm
#> 2972 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dungaxnnjktt3g7m1bp1
#> 2973     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127082.png
#> 2974     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910120.png
#> 2975 https://static.www.nfl.com/image/private/f_auto,q_auto/league/omndombtinj1g3y7z4y6
#> 2976 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fcwwa6y2e84htpr9t3y6
#> 2977 https://static.www.nfl.com/image/private/f_auto,q_auto/league/n7mvjgjfbohmmyrm7zis
#> 2978 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jfvrnjdacet9xufnpeyy
#> 2979     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122710.png
#> 2980 https://static.www.nfl.com/image/private/f_auto,q_auto/league/etbwz2f0ps2fjsol6rvs
#> 2981 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gl9rcywywbbqgd9jassf
#> 2982 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gqv4zvmibjf90doahkwq
#> 2983 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ijcbugrhahuggqqmlqm4
#> 2984 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fnvflr9vgtogvykzhdm4
#> 2985     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3134000.png
#> 2986 https://static.www.nfl.com/image/private/f_auto,q_auto/league/advacxvffvn8xztqjtwl
#> 2987 https://static.www.nfl.com/image/private/f_auto,q_auto/league/v3iosp0xe7hu1t1uw00g
#> 2988 https://static.www.nfl.com/image/private/f_auto,q_auto/league/btf33jteyvknqo0djxtm
#> 2989     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128785.png
#> 2990     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4331772.png
#> 2991 https://static.www.nfl.com/image/private/f_auto,q_auto/league/z5kqrn9uz8fjkaykk3xt
#> 2992 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bfl0iafxncdwh8ct3so1
#> 2993 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ea3za2rdkfkfez8fgogf
#> 2994     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128687.png
#> 2995     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122173.png
#> 2996 https://static.www.nfl.com/image/private/f_auto,q_auto/league/j1nfwcxjud9yuwpihh12
#> 2997     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912549.png
#> 2998     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045126.png
#> 2999 https://static.www.nfl.com/image/private/f_auto,q_auto/league/obi0wtyzjypllckiddwj
#> 3000 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iiqrj9r99pvydfz8hahp
#> 3001 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gl7dbai456eibmbj22dh
#> 3002 https://static.www.nfl.com/image/private/f_auto,q_auto/league/chmnyinue5dppp1fworp
#> 3003 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lsjgpgsagtnbumstf4th
#> 3004 https://static.www.nfl.com/image/private/f_auto,q_auto/league/s7xy3qnqcimf7y2sfhqk
#> 3005 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cpgutvhrcpu537ytonqd
#> 3006 https://static.www.nfl.com/image/private/f_auto,q_auto/league/c3jbkasglnx49ufxtlqt
#> 3007     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126238.png
#> 3008 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nkv7z8zn0mqkyqwvotvf
#> 3009     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4423369.png
#> 3010 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pxvjmmyps0sz1ewiarl1
#> 3011     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052283.png
#> 3012 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zdtjks6nyd7jdjhev3fn
#> 3013 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kby4wp0fji8dwtwggkie
#> 3014 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dz1j2hulgoja2bcxgkwk
#> 3015 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ad9atu6zt7phr6rs8ted
#> 3016 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iwoqqfijishlrsxe0ee2
#> 3017 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f0e0ghvu8hyu20y7bt0l
#> 3018 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q7d6a77ea6egfriqkmbn
#> 3019 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ynp9hkrwy4vaeujvoxf7
#> 3020 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gcrtrlvxdigu2kzrhfnw
#> 3021 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cvk5vfvpybanhgaiqpno
#> 3022 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tynmfcmcnuob8hnsro5z
#> 3023     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928743.png
#> 3024     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117912.png
#> 3025 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ikd3wfhcwjqq0yhgg67v
#> 3026 https://static.www.nfl.com/image/private/f_auto,q_auto/league/krkxyza7pgqtd4pgfosk
#> 3027     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4043157.png
#> 3028 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gphegvmsujmow8nj1qts
#> 3029 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hqcc0pswncgp31c39ysy
#> 3030     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049025.png
#> 3031     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042381.png
#> 3032 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rdmtaji4hmnegxy22hsm
#> 3033 https://static.www.nfl.com/image/private/f_auto,q_auto/league/myap5vpobpblqk6gbie0
#> 3034 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ytluytzksk8lw6ovs0nk
#> 3035 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dqzrzlkyd4xcwmktujez
#> 3036 https://static.www.nfl.com/image/private/f_auto,q_auto/league/d3xa1qlktssuzkxerz2p
#> 3037 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qmkl0clbvafomsx2rucp
#> 3038 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xbdranzoyrhobdsyc7kh
#> 3039 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h8p9504ky8aduw0mhuow
#> 3040 https://static.www.nfl.com/image/private/f_auto,q_auto/league/guxjnxi5mp3hpgkvxffh
#> 3041 https://static.www.nfl.com/image/private/f_auto,q_auto/league/usvssbagu3mhrhoeargs
#> 3042 https://static.www.nfl.com/image/private/f_auto,q_auto/league/adcuvipgtjphyoxd6tuc
#> 3043 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ymfjf9ifhcthegku9c0y
#> 3044 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ydvedksku8rgbypzukzr
#> 3045 https://static.www.nfl.com/image/private/f_auto,q_auto/league/liufqo5er7knvqsmikg3
#> 3046 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jhifmlbobejlkkhhnui1
#> 3047 https://static.www.nfl.com/image/private/f_auto,q_auto/league/b7yivty29wcg9uxliacp
#> 3048 https://static.www.nfl.com/image/private/f_auto,q_auto/league/anwmpuvwlksgljdk2zlz
#> 3049 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ovrd2ovwq8yrfntnjgi4
#> 3050     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917834.png
#> 3051 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vrffo4mhtgevuxrrvqfl
#> 3052 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aprvdxjwsglfbvtxsrim
#> 3053 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ddzvs3sljfoykdrfpldd
#> 3054 https://static.www.nfl.com/image/private/f_auto,q_auto/league/le8vvip0k3ujvktc4ale
#> 3055 https://static.www.nfl.com/image/private/f_auto,q_auto/league/p5iow42a1yrpramf50nq
#> 3056 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yzyfeydrxz6upvz8dsvk
#> 3057 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pcd6y5ohu5ewvwxvghwi
#> 3058 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sq9cdfxknrdxqrhhjvl7
#> 3059     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054854.png
#> 3060 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pab47fg01un6tbbwwrvw
#> 3061     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049337.png
#> 3062 https://static.www.nfl.com/image/private/f_auto,q_auto/league/c7tpbqsqzbg4vw5axw71
#> 3063 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zndpygopkeeczm8dtybi
#> 3064 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yc5kh5tgjdrz49dg8gtw
#> 3065     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053000.png
#> 3066 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zefnexoqdsiqehljhj9q
#> 3067 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ukvnwbo9dwpmerj3r7eu
#> 3068 https://static.www.nfl.com/image/private/f_auto,q_auto/league/z2nyda6xy8a3vhkyesmi
#> 3069 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kzqqke2kptj6ttrcqgen
#> 3070 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ycwrg0ca7ob766phsoxi
#> 3071 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gmrp2r4xjjhsi62qof0y
#> 3072 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lgb1lnnta0djfqymdyp5
#> 3073 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ijmm1q8ri7n27ckpau1j
#> 3074 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mwh3etojvdp6gxhmhllj
#> 3075     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049326.png
#> 3076 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ksipzsp693q9depie6sf
#> 3077 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r1ixpk33h5jztu9uy6rx
#> 3078 https://static.www.nfl.com/image/private/f_auto,q_auto/league/udlzuenyhdrxydwbpg1o
#> 3079 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eqmmdyun6wlpxqvnw71i
#> 3080 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t8r2wybvt2yqi6ppgdvs
#> 3081 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hwwhrz084dfze7qbda62
#> 3082 https://static.www.nfl.com/image/private/f_auto,q_auto/league/joxqiwlrpk7wwrwoibsl
#> 3083 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ley6d5gwjpzoag1bzqwx
#> 3084 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lgti1akk6lj57zbfuobf
#> 3085 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hgld9nj9dow507g9thzs
#> 3086 https://static.www.nfl.com/image/private/f_auto,q_auto/league/c1xjxcoqb6qyfkf41dzv
#> 3087     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057530.png
#> 3088     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123681.png
#> 3089 https://static.www.nfl.com/image/private/f_auto,q_auto/league/btyxwowk3klyrjqvw90o
#> 3090 https://static.www.nfl.com/image/private/f_auto,q_auto/league/duns00snyaxpnzssaciy
#> 3091     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042873.png
#> 3092     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915769.png
#> 3093     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042883.png
#> 3094 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ydkre8hkejb7imykdkm8
#> 3095 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tynwtl4mfiypjsz2dheh
#> 3096     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2986781.png
#> 3097 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dkvkggtbvtb0mjfbpdpm
#> 3098     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924375.png
#> 3099     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914384.png
#> 3100 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rdvtorf8nnmxab8xw6m1
#> 3101 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hzecgj7i960azrc393xs
#> 3102     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139339.png
#> 3103 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qrxsmnfvu5rkbmehbwjg
#> 3104 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ykjmfb7efwgshddpfyh1
#> 3105 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yvuywnsbnvpvu8k27mmq
#> 3106 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o0d5s5hbjjagmjy659di
#> 3107 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x9pa1xshzm9xajdr3zhr
#> 3108 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w5ifm5yk23wn8tccsnk8
#> 3109 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fy2gu13oxtvtian68u53
#> 3110 https://static.www.nfl.com/image/private/f_auto,q_auto/league/b420zpvo9xcftkj0akvw
#> 3111 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ugumsdejedfjeemhgzon
#> 3112 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oggcwkax23qjpoxvxggs
#> 3113 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wsrgee7tmivon3rgrlua
#> 3114 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ibro3xvxl8nnu1oour1f
#> 3115 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zatxmx13zhcq1ynr151z
#> 3116     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122439.png
#> 3117 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rvvhovjeniy8cviwfjgc
#> 3118 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ca7jpvbeqxt9gyfzbh5a
#> 3119     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4051591.png
#> 3120 https://static.www.nfl.com/image/private/f_auto,q_auto/league/phevxwxhlwxv2ngufopj
#> 3121 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eryitbb4q4zoqou1h8ck
#> 3122     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045532.png
#> 3123 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m85q3unm5joefky38kzi
#> 3124 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h6nrizlzatpr8xjdjv5o
#> 3125 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x1kw0gg4jbl8eodesh5f
#> 3126 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vqueu0efa4hhvmgrnzf1
#> 3127 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f5awgn0fvq2inc0hptey
#> 3128 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rbmjvwccrnbpc1pubpxv
#> 3129 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gvgerbezhfgf91xbuaar
#> 3130 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kj4eehsvpfsolp9p7fu5
#> 3131 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sudt5bivfnwkyhiukjk1
#> 3132 https://static.www.nfl.com/image/private/f_auto,q_auto/league/awcb8wvpg9cv9dxj5oe1
#> 3133 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ot7tujvd4dv1xsqco37r
#> 3134 https://static.www.nfl.com/image/private/f_auto,q_auto/league/j5iskgdhhvnubj3ah2me
#> 3135     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3163390.png
#> 3136 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qoymtyk5nvoiw4f1qn13
#> 3137 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zmeqspapejmmuqhybd1q
#> 3138 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ny17f80f3gd3kikvkllk
#> 3139     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3939134.png
#> 3140     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4411188.png
#> 3141     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116632.png
#> 3142     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121643.png
#> 3143                                                                               <NA>
#> 3144     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123079.png
#> 3145 https://static.www.nfl.com/image/private/f_auto,q_auto/league/szvrfaomrhleevd2st61
#> 3146     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4263210.png
#> 3147     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053061.png
#> 3148     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124087.png
#> 3149 https://static.www.nfl.com/image/private/f_auto,q_auto/league/se6uhfcrrk3c5zbacrmh
#> 3150 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nwhjdn3fk6l6xeenxt5u
#> 3151 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y5b1zlwkdeukzhhtahaf
#> 3152 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bairnxtu43briqqag93g
#> 3153 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kc8m8dwrm1tzulv0jj4y
#> 3154 https://static.www.nfl.com/image/private/f_auto,q_auto/league/n53e3cnzwsjnef9oddy3
#> 3155 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yilnbppdawaxtmobfvpf
#> 3156 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bwyxmz1ltuvlw2lmsbdo
#> 3157 https://static.www.nfl.com/image/private/f_auto,q_auto/league/biw6kpngdgon9k0zok16
#> 3158 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gjbkt6fwdu9qhurrekkx
#> 3159 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ytgfjkfnuiyl3rv05qyz
#> 3160 https://static.www.nfl.com/image/private/f_auto,q_auto/league/or8oifknr02amxvfizjm
#> 3161     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4035707.png
#> 3162 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gsbuin4a4l4xzwoleaza
#> 3163     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053054.png
#> 3164 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jbjvrm7hnjhkk7bljd8a
#> 3165 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bx1j92gf2wnw48razfgo
#> 3166     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127341.png
#> 3167 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qqjdls09cn9lzhngazje
#> 3168 https://static.www.nfl.com/image/private/f_auto,q_auto/league/begtrvmup6zuwrboq7b7
#> 3169 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eum1rejvq4lewlsivgnj
#> 3170 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nkuptt15ixhki0simlhe
#> 3171 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r883sdq7hjifsn8hdzl4
#> 3172 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ga6ow47da8dsw0dcxct0
#> 3173     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3057976.png
#> 3174 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qxz3ln7lmwubkgqngczh
#> 3175 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fj1oxc8xbpuzbpi2d2or
#> 3176 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tjt5056byrray48oimvm
#> 3177 https://static.www.nfl.com/image/private/f_auto,q_auto/league/z8mpodt04wktea2itnhs
#> 3178 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aw9b0dor1gv2cxei5asq
#> 3179     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2970111.png
#> 3180 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dhfkznm5w3iyjqtloa9f
#> 3181 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e52ntcri13jnv0ydqihq
#> 3182 https://static.www.nfl.com/image/private/f_auto,q_auto/league/az6qa28sbmxfklqs9waz
#> 3183 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jodnmf8avbtftfu8kkeb
#> 3184 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mcg6qbqxaiyim10mlgte
#> 3185     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4262273.png
#> 3186 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jvzky6sbzw8xuknjkxpq
#> 3187 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e3sqp01y9syxbtdnbvkx
#> 3188     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052751.png
#> 3189 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vvjxh6a7wca6lhyiscad
#> 3190     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125300.png
#> 3191 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oqpytrmyvf6dtgwbfa2b
#> 3192 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a8ike4ix4y4rjm1qnz7f
#> 3193     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4339830.png
#> 3194     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052510.png
#> 3195 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ltjpszrqpqqqu1mrgg3x
#> 3196     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040172.png
#> 3197     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118188.png
#> 3198 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rpcauc550ejq7chxcsfj
#> 3199 https://static.www.nfl.com/image/private/f_auto,q_auto/league/trnaj3eno9mq2pdaana4
#> 3200     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3131528.png
#> 3201 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jnyuctrjife9awhvqyqy
#> 3202     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929841.png
#> 3203     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115929.png
#> 3204 https://static.www.nfl.com/image/private/f_auto,q_auto/league/boc1e1le1qrny8migkv2
#> 3205 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cv4p5wwu6wmg04rubeaq
#> 3206 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qudyfrsgtbbolhvrmraq
#> 3207     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040516.png
#> 3208 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jjnaydu3vo5wxpav0s07
#> 3209 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dhettmtaamsu9qlepzzf
#> 3210 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wvgsc8pg6oyf7pg2wfwx
#> 3211     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4038466.png
#> 3212 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ck5lrtlvbaxr9imohqsy
#> 3213 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kukg0qcrxpu1eyh95c6i
#> 3214 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ehvg5fy6niztsu6jkedz
#> 3215 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rjr57tvtqyalhpm8fmwl
#> 3216 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qah6hgk7hdazj7c4vovj
#> 3217 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bxrnd95o9gwajgoh6z6u
#> 3218 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ekk47kr5k5tj8bkixmun
#> 3219 https://static.www.nfl.com/image/private/f_auto,q_auto/league/arr7gxtbc33limkpftjn
#> 3220 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yz1klvrf1psqfmhpaeqo
#> 3221 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ct4wy9zmgiatoubxgpc2
#> 3222 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sousugfvmexixwiszdbv
#> 3223 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h7mrljv0qnfi3twxtdfb
#> 3224 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mioeqluyxatq1sztpjgr
#> 3225     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125884.png
#> 3226 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y42glgiqfgbth94agenx
#> 3227 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hb2vbmdv48etuapynz4c
#> 3228 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hhzdofwmyynkgshhlhas
#> 3229 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rmjlgitaivlyrkiv7pbf
#> 3230     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918012.png
#> 3231 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fhykjcuaa9t1qsfa2zhv
#> 3232 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lhhzqcfmsbjqdgml3rdi
#> 3233 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x0ayoxxysni3umvnerhj
#> 3234 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dtvhfmoccouakxa9nukm
#> 3235 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tddemtoqhebr2nabmxwm
#> 3236 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sjpbunvkabnnwhiwgngt
#> 3237 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qzedu4gy9vwclljtph4j
#> 3238     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4240239.png
#> 3239 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zigywocricnva0zeb7hj
#> 3240 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gmbr7mppouwnrz1a2qjp
#> 3241 https://static.www.nfl.com/image/private/f_auto,q_auto/league/u1mkuf6p4me1bomjgpta
#> 3242 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lk1xatrnju7j0icqebur
#> 3243 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mceptbsvkcotyalm6qav
#> 3244 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zvryveskaqfldcj47xuk
#> 3245     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125872.png
#> 3246 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xgjvec15hvgvk0hy483n
#> 3247 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zbgpc46lfxsrfepmkot9
#> 3248 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rmbp7k8ohs2dex7eel3m
#> 3249     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122924.png
#> 3250     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115478.png
#> 3251 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lmoesdqqzu6v8rmnyqlk
#> 3252 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gfpqouocrswi8zuidpwn
#> 3253 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dt4lvt5dpo92g8xdifnm
#> 3254 https://static.www.nfl.com/image/private/f_auto,q_auto/league/umxhqumkqcogte0rt8b8
#> 3255 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jq2lqxdjddotlgnpvpyu
#> 3256 https://static.www.nfl.com/image/private/f_auto,q_auto/league/airzriy1lzkk5c690gqq
#> 3257     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2513199.png
#> 3258 https://static.www.nfl.com/image/private/f_auto,q_auto/league/avob9cmh8fnz1jnzqoed
#> 3259 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dp7xdilrkk9f2i5ovne9
#> 3260 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qfxm205gqvzzpy0z2oyw
#> 3261 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a94xyvgeo5yqr9rvsrqj
#> 3262 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vzwokuiytin3pfyp1icy
#> 3263 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jmgzlxi6qlrvvyrzkuh2
#> 3264 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ryhocvpml27otxnncc2h
#> 3265 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xuyrh5pbjpejvdharsen
#> 3266 https://static.www.nfl.com/image/private/f_auto,q_auto/league/flcn8rvasatcy4cuoe1k
#> 3267     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045201.png
#> 3268 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dddfiilg9qy54xtorb6r
#> 3269 https://static.www.nfl.com/image/private/f_auto,q_auto/league/se6aqbzkyvpmtcr46bwz
#> 3270 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x9z1hqodjhb8dio4dr1w
#> 3271 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aln8oo1hxammcilgzi72
#> 3272 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jrgu7duxmbm28vgynshl
#> 3273 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nbgza3wv2fhteuttybxv
#> 3274 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aogfdoxrgi8kssdps73x
#> 3275     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042434.png
#> 3276 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ybovjdd88byff6gpvm80
#> 3277 https://static.www.nfl.com/image/private/f_auto,q_auto/league/n1vppalhmz7ekonqtmiq
#> 3278     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117250.png
#> 3279     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3075100.png
#> 3280 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mnfybyh0jw8jvlerujy5
#> 3281 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nnfhsxqdezma8rp6jnji
#> 3282 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pbv9t31rlpijuppxc3ey
#> 3283 https://static.www.nfl.com/image/private/f_auto,q_auto/league/z2nvzhsuin9vvoo3i9po
#> 3284 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uogydtryzos3jzxifcjr
#> 3285 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xm51ykkmz8ehssxbmykb
#> 3286     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912991.png
#> 3287 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gqkgd0gexc01wkhea8nl
#> 3288 https://static.www.nfl.com/image/private/f_auto,q_auto/league/u34tuvlrrg528gung9ia
#> 3289 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zrvzbjooaikcz6owdhhr
#> 3290 https://static.www.nfl.com/image/private/f_auto,q_auto/league/p2xfgpnnsotntobzlmhe
#> 3291 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yagsyf7snulkeqjf4vvz
#> 3292 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xppervudbbwttvvidsml
#> 3293 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ukehpvej1vrso1t4xubu
#> 3294 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ijj50b4va1w0fcwxd7yw
#> 3295 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o26uwppjakpopj5v9irt
#> 3296 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lxjcrlhxso6cafgm8rda
#> 3297     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128706.png
#> 3298 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yppra2mqcny4c62bh9c7
#> 3299 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gtpcd4mvricoawwynceu
#> 3300 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jfofcykhdbcfobhxb6di
#> 3301     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115379.png
#> 3302 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rtpdzarniwu6x4viobef
#> 3303 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hajqjgwcavi9umc2226x
#> 3304 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zimixizlvuqvusc1zmv2
#> 3305 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xay4nrpgnss2wevzwvw3
#> 3306 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zqeizl8cu6rbtyjwbjka
#> 3307 https://static.www.nfl.com/image/private/f_auto,q_auto/league/asapp0ikmeuqjmvkmudb
#> 3308 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lkfpqqbpyo1y29eeoqhb
#> 3309     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3930075.png
#> 3310     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2980441.png
#> 3311     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915291.png
#> 3312 https://static.www.nfl.com/image/private/f_auto,q_auto/league/j0ilwh1cr5uzyg8z8qsy
#> 3313 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nkngfmpgltgeze1gokdk
#> 3314 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xiwa1wri68fwnbuvn3qp
#> 3315 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qgjpoamz8eoulf1wj1em
#> 3316 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ufb0jodghl5ntdimenbc
#> 3317 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jrv7fzgczflhees3lmek
#> 3318 https://static.www.nfl.com/image/private/f_auto,q_auto/league/i1zblqb9fniajngo2vgg
#> 3319 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fufrgsbj9ru05u08p9mo
#> 3320 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xirozqwhvfycz5m830yf
#> 3321 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kk6kbrvbzqmqklznyd0o
#> 3322 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e8ym4bz9wic7rcozq1ox
#> 3323 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ei3tqugetowcz2ix3o2p
#> 3324 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ue1dtem4udgt2lkpn1zm
#> 3325 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zmea7keox8iyppsvrfqg
#> 3326 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qogu7kitutnjlwcowbd1
#> 3327     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128688.png
#> 3328 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t5hcdwky7qazuhkwlzn5
#> 3329 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ztkfeslzvq6tia7qix7a
#> 3330 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o6dsl05ysfo4aa1ex4bl
#> 3331 https://static.www.nfl.com/image/private/f_auto,q_auto/league/azzszccjqhwz2seqk3qm
#> 3332     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049935.png
#> 3333 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cjk7skpbhcjevd8cbww8
#> 3334     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915373.png
#> 3335 https://static.www.nfl.com/image/private/f_auto,q_auto/league/v0butofupslgupmsq8ej
#> 3336 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zti6m92pxxsxahmld11v
#> 3337 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ngqzkn88b0quv5m9mnna
#> 3338 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m8pfjvdzd482lknjy1fz
#> 3339     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4076949.png
#> 3340     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125916.png
#> 3341 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qhgkk3fclxl23xmpchjl
#> 3342 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bxs72htxxjtobgr1zkao
#> 3343 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xpkipiqboq2mcb9kjgbr
#> 3344     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051706.png
#> 3345     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050953.png
#> 3346     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4422420.png
#> 3347     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4243241.png
#> 3348 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ng8xukfjnm8gqy0yczuv
#> 3349     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3908989.png
#> 3350 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f1kg2obhxkdefqqx2qq6
#> 3351 https://static.www.nfl.com/image/private/f_auto,q_auto/league/htsj7w4kk1zfusilclsw
#> 3352 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mcy4btbq7n0catnlsqdk
#> 3353     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115391.png
#> 3354 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qnubtix47yngmkunisya
#> 3355 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ckf3ynpz84hzylbal7xa
#> 3356     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124111.png
#> 3357 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jgudouo4ewwamkyr4z1z
#> 3358 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xc6sdstdncnxxacirzbl
#> 3359 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xqoisiggov46tdd9hand
#> 3360 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dsej4prctgftkjhy2xxi
#> 3361 https://static.www.nfl.com/image/private/f_auto,q_auto/league/idrqqkgc8rsu9shrgyss
#> 3362 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kva4jozthr19ruhsprfz
#> 3363 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tiq0fjwlusfywnwp2spq
#> 3364 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yro1uliw8vwvg23y0cpe
#> 3365 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xzteof3s2r0kolkno5uf
#> 3366 https://static.www.nfl.com/image/private/f_auto,q_auto/league/g86wdftsz8refubqztyk
#> 3367 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vs1gvoadc6we63prkatk
#> 3368 https://static.www.nfl.com/image/private/f_auto,q_auto/league/auzdblkkmc1uajacfamb
#> 3369     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2977653.png
#> 3370 https://static.www.nfl.com/image/private/f_auto,q_auto/league/s5rukxho2gzz0whq3pie
#> 3371 https://static.www.nfl.com/image/private/f_auto,q_auto/league/znmbx2dptq9o9k0b3ql9
#> 3372 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xelwabxjderiboix4ic8
#> 3373     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116094.png
#> 3374 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rppve04bslxftp1vkgzk
#> 3375 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mv1ff3lbwqcckmx9mu3l
#> 3376 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kvzeug1armgbvkpcxdbm
#> 3377 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pjuhnnnkljx3936vtxh5
#> 3378 https://static.www.nfl.com/image/private/f_auto,q_auto/league/leva3dgtbaxtumyiij6c
#> 3379     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049589.png
#> 3380 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nqi9ijh33uz4gqtywaus
#> 3381 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w7dppc0dbf4knzo1d9ag
#> 3382 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mdeyf3uftjfrhmcnzjoy
#> 3383 https://static.www.nfl.com/image/private/f_auto,q_auto/league/l46la68xk2a50h0xbpc9
#> 3384 https://static.www.nfl.com/image/private/f_auto,q_auto/league/quh3kl6xf7eby4zjuosq
#> 3385 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jq2ngjg4vinpkrhw9tza
#> 3386 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bqrsq88mpqsqeswkroqq
#> 3387 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hbkhzw6t4wsu3ia5sr6z
#> 3388 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pvjype7rpwqw9pb2oznn
#> 3389 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vuh21ji6pbfkhmkgrrrz
#> 3390 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kbrdrkxzmypiefjqdygd
#> 3391 https://static.www.nfl.com/image/private/f_auto,q_auto/league/osretu0zu4iuebvooehn
#> 3392 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vzaokxdtcuwng2okjrfj
#> 3393 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lhvdibesim6ihrrqhwhx
#> 3394 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nkffr4bti6sb24hnbnr3
#> 3395 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gqcoytdhuj9tohe49euh
#> 3396 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mr2ua0hzlxbsauvslccr
#> 3397 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m5o65nntbm3rvbscoywh
#> 3398     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059734.png
#> 3399 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pgetnplduqsmmacxdurb
#> 3400 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a3sqsq3xk0rsabs6l7dj
#> 3401 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rcvxku3xputfb22snrvh
#> 3402 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bedmmuvegoul5o7fqt7x
#> 3403 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oilqzwvf5kwhgq3kgpsz
#> 3404 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tacxaor3ymz90cdppqov
#> 3405 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jrp7bjucak3vqaqiftlt
#> 3406 https://static.www.nfl.com/image/private/f_auto,q_auto/league/epzje4zliugsqgppjklj
#> 3407     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912157.png
#> 3408 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lkzgj2x0d6s4sohavejv
#> 3409 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vverjugp53zea0ifpdwo
#> 3410 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pkeutxon6u8jspjmr5g4
#> 3411 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mhjnvyu2nutm7nblawj6
#> 3412 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ku1pmajzxljktyxlonql
#> 3413     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124550.png
#> 3414 https://static.www.nfl.com/image/private/f_auto,q_auto/league/epy5hy4zlnbowzynj1kf
#> 3415 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ssdt9lpqhyfjkwds5nxg
#> 3416 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uyqvweg3esps2piowd8g
#> 3417 https://static.www.nfl.com/image/private/f_auto,q_auto/league/od5khhgbwy4xmdjiiiwj
#> 3418     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910591.png
#> 3419 https://static.www.nfl.com/image/private/f_auto,q_auto/league/re7xdbjzhobvpiqz3zcd
#> 3420     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046696.png
#> 3421 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fv8b5i5ijzs422iou5bv
#> 3422     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127365.png
#> 3423 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nnxiyeumwwgmvhiy3uly
#> 3424 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rsg1sttm7f6zdkowcoet
#> 3425 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eqf0wmvhmci7zpjxclaa
#> 3426     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052887.png
#> 3427 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ia6txafw2slmk6vponnv
#> 3428 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xbb2jpmxpjbxof1246o6
#> 3429     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056493.png
#> 3430 https://static.www.nfl.com/image/private/f_auto,q_auto/league/plhce3c4uskttqgazd8o
#> 3431 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zhndfyv06empalrapux8
#> 3432     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3054041.png
#> 3433 https://static.www.nfl.com/image/private/f_auto,q_auto/league/v0usmkep6eflpokfzxf2
#> 3434 https://static.www.nfl.com/image/private/f_auto,q_auto/league/avf3mjzbvgrimtawl781
#> 3435 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ofqqjzbylxutc7vqsa5i
#> 3436 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h5pmnnf77ccttfbmoa7k
#> 3437 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nwrxejq8fybas6z40lpm
#> 3438 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gvasph3ssjozzpeopuyq
#> 3439 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kc0fix5yb040q0j8boup
#> 3440 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rpewlulw93a2x4mernz3
#> 3441 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qfntynvid8iabbgg5bnl
#> 3442 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vcgyq4ngwjndahm3hlov
#> 3443 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yxppig0rghtnotw8h61v
#> 3444 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o0sqrcmlc5e6maiyklcf
#> 3445 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kne3ws6o6ba3riqpsdfa
#> 3446 https://static.www.nfl.com/image/private/f_auto,q_auto/league/d9ncy72aff6bnpnaem5g
#> 3447 https://static.www.nfl.com/image/private/f_auto,q_auto/league/c4lokn6jzamlt91jubyz
#> 3448 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bjc0ry5bty7evdtm67t4
#> 3449 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ujddz3chbhdogni5ek7f
#> 3450     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126065.png
#> 3451 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qoyqum1tvqxswizzt9t5
#> 3452 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rxh89oktoztpaa7urg76
#> 3453     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3929863.png
#> 3454 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x2q2ianboo79lwinnjd0
#> 3455 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xtkhroa9ki49bygwaxsw
#> 3456     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036407.png
#> 3457 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o2ug1uahjw1wfk4r0c2v
#> 3458 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wh7jxmweiugdb1ztk9ze
#> 3459     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3892890.png
#> 3460 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x21mxafuvb2qz1xj0c5p
#> 3461 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tiupsy1z0fx78yzenzn8
#> 3462     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051321.png
#> 3463 https://static.www.nfl.com/image/private/f_auto,q_auto/league/unc3ossfihlcfzab7s0a
#> 3464 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dfmxab0e4asu6q9voxpa
#> 3465 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gy5mepwbvbdemlnitrc5
#> 3466 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eylm7rknmvkczuliib7f
#> 3467 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fvsfh52hqjs7e6wno3cv
#> 3468 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pojstv7hizkfu3u31p4r
#> 3469 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k2kqb6dnrwr4fuema351
#> 3470     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116592.png
#> 3471 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jdxu5u4v10zgtsryg726
#> 3472     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045217.png
#> 3473 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ffnq5jiiypupb1fqivvy
#> 3474 https://static.www.nfl.com/image/private/f_auto,q_auto/league/p9otpxemifiy0l8llzho
#> 3475 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zphkzp3rtdbngscugleg
#> 3476 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t4lazoz6x8sd2uqhhyds
#> 3477     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973599.png
#> 3478 https://static.www.nfl.com/image/private/f_auto,q_auto/league/alcgxa8euoyqrya0botj
#> 3479 https://static.www.nfl.com/image/private/f_auto,q_auto/league/d9a4fep0m4tamont0mmm
#> 3480 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gayhgbrn26ztfyctnas7
#> 3481     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052709.png
#> 3482                                                                               <NA>
#> 3483 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sejfnqfez111nl40luh0
#> 3484 https://static.www.nfl.com/image/private/f_auto,q_auto/league/key9yjaggxxsv70mvlnc
#> 3485 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qnapnmngshwmhb3bfaa5
#> 3486     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045469.png
#> 3487 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ooat9cqz0erzwjegqq2p
#> 3488 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lckwnmawvws5g4n6r9k7
#> 3489     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047235.png
#> 3490     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128747.png
#> 3491 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sgjg6z0xguy93r73loud
#> 3492     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046694.png
#> 3493 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tow7jnwqlwaghuatkdne
#> 3494 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yy2st9lcawje4zwu79yi
#> 3495 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hbyhqptyb6xii0ozbag5
#> 3496     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4334406.png
#> 3497     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4262186.png
#> 3498 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vq6tnfum29terdoe0axo
#> 3499 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a3bcjd5biuujvwjmfv1a
#> 3500 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kzjbyixr30urbw9kg5on
#> 3501     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3127302.png
#> 3502 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hu1vy5fqxcx49ypgc8nl
#> 3503 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wb6pspyzlilojy5dsfou
#> 3504     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4259349.png
#> 3505 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cu4zea7zqrs3svd3zqfk
#> 3506     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045180.png
#> 3507 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xe3or3nmpi863ql4jocz
#> 3508     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4040893.png
#> 3509 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bmwxoltaqyevwdhgcpcl
#> 3510     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129306.png
#> 3511 https://static.www.nfl.com/image/private/f_auto,q_auto/league/j6n67nw7as7wkepxfcax
#> 3512 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x47jmg020ae8hmfnnxvu
#> 3513     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116737.png
#> 3514 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bz2xgnhnckjwx6dfaihz
#> 3515 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uf4l4nieicqix57vvepo
#> 3516 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kxma0onchwwikialfyrz
#> 3517     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3700080.png
#> 3518 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yesowlqmb1bvwwhh3jpr
#> 3519     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4250485.png
#> 3520 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jc1fm1qldvpsiooz0a8w
#> 3521     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115923.png
#> 3522 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rs4kuawmtad94hzkd2lb
#> 3523     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2974249.png
#> 3524 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iplbilmcncsrh54e3y43
#> 3525 https://static.www.nfl.com/image/private/f_auto,q_auto/league/d424jomnnjoya26p8neh
#> 3526 https://static.www.nfl.com/image/private/f_auto,q_auto/league/op9zed2hki3v4rsjzwgi
#> 3527 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q0ttzl2bxvtrrufbv4sj
#> 3528 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ef3wakllad0gvbfjy4se
#> 3529 https://static.www.nfl.com/image/private/f_auto,q_auto/league/c5zvm3ux5uvwxdfqwd0w
#> 3530 https://static.www.nfl.com/image/private/f_auto,q_auto/league/chmmra7hpcnoibks3uwu
#> 3531 https://static.www.nfl.com/image/private/f_auto,q_auto/league/whzglb6c4ruwqe9n4vge
#> 3532 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dypn7kf7fsaz30ey0ayc
#> 3533 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gtg6shaasc0rf1o4ycqh
#> 3534 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kkmkvk3wzzsdzgstz0ez
#> 3535 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dx2dsdejdbqrjltnkstm
#> 3536 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hjhlqbsu7f8sas7ozzar
#> 3537     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059104.png
#> 3538 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ude1ruxclztoblsaubib
#> 3539     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128692.png
#> 3540 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sxmukxhraeml7lup8pm1
#> 3541 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kvqztgsqkm1bp6auhenp
#> 3542 https://static.www.nfl.com/image/private/f_auto,q_auto/league/anm7eiqngj9sh0ustpoe
#> 3543 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lam4hwehq5mngt0fvybu
#> 3544 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ogz6qruagoh7ihyybcse
#> 3545 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hpstdltdmw7f6qqi7roa
#> 3546 https://static.www.nfl.com/image/private/f_auto,q_auto/league/imfj1hl4kob4jof8hcwa
#> 3547 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tyz9chuwv2blrpqocdzo
#> 3548 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hj8zrenu5dej3rvuzyba
#> 3549 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m6btiz85brkj9bwim4yv
#> 3550 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aprsggdgwu3y8wmw2zaa
#> 3551 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nqi0psnge6kkglcspabo
#> 3552 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jx1lvhiw0241opz8dysp
#> 3553 https://static.www.nfl.com/image/private/f_auto,q_auto/league/okrutwlsyxd3w2xtohun
#> 3554 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gdjujo9q9eniokxlygke
#> 3555 https://static.www.nfl.com/image/private/f_auto,q_auto/league/t5ipcpeaz2vdr39nbpwf
#> 3556 https://static.www.nfl.com/image/private/f_auto,q_auto/league/huiugydx66ktrreiescy
#> 3557 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yvxukbrypz3nx7fah344
#> 3558 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wuljro0ezgy9ygerk37u
#> 3559 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ex4iezqw72sm1z0sv994
#> 3560 https://static.www.nfl.com/image/private/f_auto,q_auto/league/romuftmusoph5mzkbyfa
#> 3561 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nnna6bbld6f48exkyroq
#> 3562 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kx6uikwldq8afpu0bomm
#> 3563 https://static.www.nfl.com/image/private/f_auto,q_auto/league/clmf6l7emurgnwhkn6yy
#> 3564 https://static.www.nfl.com/image/private/f_auto,q_auto/league/obgltwpfkespfd0ykoff
#> 3565 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cg168ygo0u8s2ge9arlp
#> 3566 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ifobdyeywpxyp7ydr52y
#> 3567 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sm8onep4lvhjbqdrq3ja
#> 3568 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jp018vg38zvr2ijgmrbo
#> 3569 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sz7atmla9y50ylo2o6ul
#> 3570 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tk2cy125ubb6lluib5ob
#> 3571 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zdobrqdvajayktz5zcbx
#> 3572 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hxzc1j5paqvtmufh5jim
#> 3573     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121376.png
#> 3574 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ulfikepsrjeipzyhgq6u
#> 3575 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tg9cdqkbc07b96liefbj
#> 3576 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qpptamzmljqkzqvndhyr
#> 3577 https://static.www.nfl.com/image/private/f_auto,q_auto/league/l60fi5wsb69nubeyyehj
#> 3578 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rhwo4c2k5gb9rnoqjlfy
#> 3579     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120075.png
#> 3580 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yizrhsjhhnfybsojlduj
#> 3581 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r7huobfi8b4kskk05gbv
#> 3582 https://static.www.nfl.com/image/private/f_auto,q_auto/league/oh9fy7oc1ihnx0lkqckj
#> 3583 https://static.www.nfl.com/image/private/f_auto,q_auto/league/scelbwnmjd63zpzfnca8
#> 3584     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056831.png
#> 3585 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ndhxo2ihms3w52lvgtus
#> 3586 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r8jcgdy5zgsmzh2ubo5b
#> 3587 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vdohqafl6tmt9bejsjjv
#> 3588 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k2cyah7375qcgf3djal2
#> 3589 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uyecbwmmxvrmsalo1s8t
#> 3590 https://static.www.nfl.com/image/private/f_auto,q_auto/league/omeokvcmqcs1r7eyw0m8
#> 3591 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bratbocddqitvbqhilj5
#> 3592 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wnfdecd9f6g9mcpthhdp
#> 3593 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fxtkul2kqfiwnqjrfklp
#> 3594 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f5y7lps4jzuqsrwvscqi
#> 3595 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rr7kcy09b67a7q6ma6lx
#> 3596 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rrgd2o1x4cthj3sqdbvy
#> 3597 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h7o9liasezhaefpz9iz8
#> 3598 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nkrec1iu8q7crtwupapo
#> 3599 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jpqbnihjvf84ah121njg
#> 3600 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e8poi1eiwekisknibttd
#> 3601 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kqwpvbbg7fefzhiz3b43
#> 3602 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dlpq9ctkqeiiynhwol33
#> 3603 https://static.www.nfl.com/image/private/f_auto,q_auto/league/g19sbqyligpdkcsczrzk
#> 3604 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dvbelbtcbtresog2p0qk
#> 3605 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qxur1tfjyy0air33c3dn
#> 3606 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ned2m3l0qsuebczfyosa
#> 3607 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wozis8va9ewn72flodjq
#> 3608 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q3ctjv2z2spydkgfyrly
#> 3609     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915393.png
#> 3610 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qfqqfifobjiyj6gko3yj
#> 3611 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gbldsrfxrfbmwq35lrkn
#> 3612 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pirk5vkp0ugwl84rzxq0
#> 3613 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ksjzsczf9yhkgj5smjjq
#> 3614 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eanjqmfl8ol4ibcyw1kv
#> 3615 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lmcvlsvkpplgnwq0bgx9
#> 3616 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wvexepmn7guhq4e9psuf
#> 3617 https://static.www.nfl.com/image/private/f_auto,q_auto/league/co6jfnhceoe5ynir4tbs
#> 3618 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w7uipjwa6hppmdddnech
#> 3619 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gmzk2voolvuwgcbwc4ov
#> 3620 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rjpdo7ei0wylvfzbacuv
#> 3621 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a0dtadqytswayym4ydbq
#> 3622 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gvc93fvk7g9990tigdyo
#> 3623 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fb8trvmla0xvbyp2rvyi
#> 3624 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xxfxattoqwreu5ppyicl
#> 3625 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ey4e10xxip3ojxk4kjey
#> 3626     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2987188.png
#> 3627 https://static.www.nfl.com/image/private/f_auto,q_auto/league/drqyhwqbkrxrckhxkug2
#> 3628     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056719.png
#> 3629 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xr9mpbcy2rvixgidvecw
#> 3630 https://static.www.nfl.com/image/private/f_auto,q_auto/league/i21ppzdcbxr7iu1n2scy
#> 3631 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ckpr6au1fwxxfcsbrrej
#> 3632 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dncs1ew580cqj9f6k4qz
#> 3633 https://static.www.nfl.com/image/private/f_auto,q_auto/league/esnoumrqe3sj8dvjgybb
#> 3634     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4239787.png
#> 3635 https://static.www.nfl.com/image/private/f_auto,q_auto/league/d4npplxwllhowsrlhrwh
#> 3636 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yiq1ldt7exydj8p71qko
#> 3637 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kycyq8uo5pwncligrbt2
#> 3638 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wnmh1r1tl54daz3ilewq
#> 3639 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xkyr8eqin1g561wsqse2
#> 3640 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xtaqskqpspksh4krryfb
#> 3641 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cpk6jgsai7qsb2ti60xt
#> 3642 https://static.www.nfl.com/image/private/f_auto,q_auto/league/l5k1pr5gk5vi5vkjhcqa
#> 3643 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rcxnfbzmmmbhjmvsotrb
#> 3644 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mxbrtmibpjrdag7bb3ne
#> 3645 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bdkqvqrsolt1ijyqybux
#> 3646 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f7uki3jlffjtxszrukyw
#> 3647 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ixedp7z7nxurgaksk4jk
#> 3648 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fx7ahbh9ohex3hb1vvrd
#> 3649 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xpqjhaqeefu7w79y20eh
#> 3650 https://static.www.nfl.com/image/private/f_auto,q_auto/league/klf4il8dwq34bs30x9wk
#> 3651 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qhwti7dor8d9rbbx82ah
#> 3652 https://static.www.nfl.com/image/private/f_auto,q_auto/league/s8bqh2tllr3pyz03fvrx
#> 3653 https://static.www.nfl.com/image/private/f_auto,q_auto/league/erdphlvqhztufqyhhqfd
#> 3654 https://static.www.nfl.com/image/private/f_auto,q_auto/league/noo6th7yihe6llxgsna2
#> 3655 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iglh93npg5miisj542tw
#> 3656 https://static.www.nfl.com/image/private/f_auto,q_auto/league/au65cyalwnsppsdgvrrw
#> 3657 https://static.www.nfl.com/image/private/f_auto,q_auto/league/uk5giafharseqom5vzra
#> 3658     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045361.png
#> 3659 https://static.www.nfl.com/image/private/f_auto,q_auto/league/owwicdfynajnrzvnpjsn
#> 3660     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3123941.png
#> 3661 https://static.www.nfl.com/image/private/f_auto,q_auto/league/icfqm2blpltxefa5icyb
#> 3662 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ncbet6bicsoq23i0ma9k
#> 3663 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wuqvh3a9yqqgimxwrmzn
#> 3664 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dbgdjdgvpwbryecsrvrh
#> 3665 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mnzabhoegs5clbttrxjv
#> 3666 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ozayln2febjtgagfzbp7
#> 3667 https://static.www.nfl.com/image/private/f_auto,q_auto/league/g4mcg4279mr20juxwydk
#> 3668 https://static.www.nfl.com/image/private/f_auto,q_auto/league/liukqrzydmticfswfqca
#> 3669 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rhc1ritscpcywq2dlyrr
#> 3670 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qoheaguloevozqvq4ee8
#> 3671 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y8nfjzorlktrhgzaobap
#> 3672 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mcrbrdo66s7gs3ftjja6
#> 3673 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fr8gkejeypcoopk47dh0
#> 3674 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jma2mm5zl75np3csogu5
#> 3675 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jyvd92kxkrpnhltrzlhy
#> 3676 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gjep6wyeoq45kwfocpg6
#> 3677 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xcu7jpf9sn7lhrcsb7eq
#> 3678 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ku1nc2wzlakqsdpzmecz
#> 3679 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o4futmewhqnhcb71pds2
#> 3680 https://static.www.nfl.com/image/private/f_auto,q_auto/league/d1ohjdwvlnnkkqoxb5qq
#> 3681 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hcnuqe5ulqoldxue1xjt
#> 3682 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dy8lbh0fossmhjjqz9ee
#> 3683 https://static.www.nfl.com/image/private/f_auto,q_auto/league/od7irjuvkfyakwb83ewf
#> 3684     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3049262.png
#> 3685     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3917548.png
#> 3686 https://static.www.nfl.com/image/private/f_auto,q_auto/league/udy31xwrgnqagb3o7atd
#> 3687 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wqafr046qgtrk2ad5smu
#> 3688 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hrazpj0rdvkyw5nh33yw
#> 3689 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y6vab0kwgq8mghurpiy7
#> 3690 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ybrbiorilhxclyrwvb3v
#> 3691 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fyu7731dgdreowa3fsrs
#> 3692 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eo58b16g9hnqwnwoquza
#> 3693 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qyplabol0lxz7qzkk6ww
#> 3694 https://static.www.nfl.com/image/private/f_auto,q_auto/league/smgmg5ghgjxm4b477bq7
#> 3695 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qj5dclcnsxojzt9aqaiv
#> 3696     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3910330.png
#> 3697 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zcidw2i77xub1zi48xoc
#> 3698 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sqoygt7fpqcakogjwk92
#> 3699 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bpmc5benk1peaabkuvoe
#> 3700 https://static.www.nfl.com/image/private/f_auto,q_auto/league/i3moaamtdkksodebqt0h
#> 3701 https://static.www.nfl.com/image/private/f_auto,q_auto/league/flpi3tdgr4mjn9wjfain
#> 3702 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xxlwwufq1pof2salgqgi
#> 3703 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zul4uca5ew4fvos65due
#> 3704 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xyb2kxicxsefe6ha8wet
#> 3705 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iahxdsgmcg9b15fxznsh
#> 3706 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tz05qfsq8e1aojifnges
#> 3707 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dezigyodqls2ngedhov8
#> 3708 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vttmf8y9nvnhemzgrszw
#> 3709 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eepo21lvha6g6gfor9wd
#> 3710 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pyy47jv0byo9lhyngja9
#> 3711 https://static.www.nfl.com/image/private/f_auto,q_auto/league/b9a7s0amdroxdktpmsgp
#> 3712 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r592pzrlchblgsanedxc
#> 3713     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3144792.png
#> 3714 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gjx7hbwlv1aewkn9og9q
#> 3715 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jfeouc6i51hitnjpw68u
#> 3716 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xkqlolhsrfkbbrq8cwfl
#> 3717 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ui6arad4qnmxievmqk3u
#> 3718 https://static.www.nfl.com/image/private/f_auto,q_auto/league/b6sdqggg5hifi2ropmfa
#> 3719 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jw9x8cqd6512d2ujuqmt
#> 3720 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rxyjg9howvcldrhpodlr
#> 3721 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f98eypvue65qqsjpldgj
#> 3722     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122680.png
#> 3723     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2516051.png
#> 3724     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039982.png
#> 3725     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914817.png
#> 3726 https://static.www.nfl.com/image/private/f_auto,q_auto/league/md2vkt7suet1rlxakyvv
#> 3727 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qc65tvdsmuim7f1dp1ql
#> 3728 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mbpziehbztm2l0elsalv
#> 3729 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sipeuljl7iy3cxiyizsp
#> 3730 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tcfkhbsaeuhmgukgr5fu
#> 3731 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ietzqquh2cyzhzwwdh7c
#> 3732 https://static.www.nfl.com/image/private/f_auto,q_auto/league/andzpnbzvvmy7mkkq9fz
#> 3733 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kzlei3oxom3rm53ltu1q
#> 3734 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ozhhfiqzpzwp2bxizjpq
#> 3735 https://static.www.nfl.com/image/private/f_auto,q_auto/league/az5evy7r2nopc2c6bvqs
#> 3736 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fr8otcimvgh5gg73biph
#> 3737     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3121563.png
#> 3738     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3932392.png
#> 3739     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912362.png
#> 3740     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126348.png
#> 3741 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mpnt3vv0es94ch9mwxmc
#> 3742     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048672.png
#> 3743 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aqocfxjqfqst2ujlejqq
#> 3744 https://static.www.nfl.com/image/private/f_auto,q_auto/league/paiemo1wkda9oqidc0vk
#> 3745 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ngciwh85kl3ypbjpbjik
#> 3746 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mfvyop1n5xb89prj6vbi
#> 3747 https://static.www.nfl.com/image/private/f_auto,q_auto/league/st5fwstaokk955f63p3r
#> 3748 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a5ffhmcwt1qyrycqgu8s
#> 3749 https://static.www.nfl.com/image/private/f_auto,q_auto/league/s6t5uwxdxyutcerpdawy
#> 3750     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122684.png
#> 3751 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gilqarxtfvut1ewrqd6p
#> 3752 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mzkqjo58oxijgts1oeto
#> 3753 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hjs2kvebjrgaovzlkh67
#> 3754     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3048705.png
#> 3755 https://static.www.nfl.com/image/private/f_auto,q_auto/league/odajsobuczo0mvyzczsi
#> 3756 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wqoio1dwxtex4rtu9koa
#> 3757 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sh8qb9w2fzox4qaudo8k
#> 3758 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qv471mrekhk5c9lkn5pr
#> 3759 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nsikna5eoz0i8x2mfski
#> 3760     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3918417.png
#> 3761 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pdugguzkzhotkjwlrced
#> 3762 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ywpa2hilqxek8iwj33gx
#> 3763 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xabywgdkul7lrojrutep
#> 3764 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kec5fyubsmfpzz8mefo7
#> 3765 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bepaqayoxz1rvdtm1kbm
#> 3766 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ofg23bow8ypxcikp1qws
#> 3767 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tdneqaycrs6zbd7vbqyt
#> 3768 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fkspr9fagr03lt1cueyf
#> 3769 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fatqd4l9ew6kbga0nelc
#> 3770 https://static.www.nfl.com/image/private/f_auto,q_auto/league/auwjtpjvgtptputbjcpd
#> 3771 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iroenzqrxpeo99le0gxn
#> 3772 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ugyyw2uct2ipsyd92npe
#> 3773 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dgh6opx3fqczs5rry2ng
#> 3774 https://static.www.nfl.com/image/private/f_auto,q_auto/league/d3jar3bcqsoyfvzpkbbl
#> 3775 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lbuxnwav8grp6ltqekq9
#> 3776 https://static.www.nfl.com/image/private/f_auto,q_auto/league/szyzewymrbizyrjy5jhi
#> 3777 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yl1lyj7cwjjye8lkfrkk
#> 3778 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q2nn8owhjh6dgx86i7hu
#> 3779 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dssrqiumrhidhmr185hh
#> 3780 https://static.www.nfl.com/image/private/f_auto,q_auto/league/usbhho5ygjixpjdocdtn
#> 3781 https://static.www.nfl.com/image/private/f_auto,q_auto/league/omvn7ragvrqppdz4x6dc
#> 3782 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hsvjsim2dlrhchvvktzs
#> 3783 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ixu0kwrvg5vgvqh9keft
#> 3784 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qaqg6p4dnzcx01uli1hm
#> 3785 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bcqwsjc1d2yjyfirioyf
#> 3786 https://static.www.nfl.com/image/private/f_auto,q_auto/league/myuoergacs0wbcai7sxn
#> 3787 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lpujckocmzkceljh7mup
#> 3788 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ydyu6ymmys92b1fhau92
#> 3789 https://static.www.nfl.com/image/private/f_auto,q_auto/league/umfcnioglmse3clwqdvg
#> 3790 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ihoysxqdy6rliate5adw
#> 3791     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4081021.png
#> 3792     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124544.png
#> 3793 https://static.www.nfl.com/image/private/f_auto,q_auto/league/trfch87w1qajmb3zmuki
#> 3794 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wbuez5fj6artsvlzksvq
#> 3795 https://static.www.nfl.com/image/private/f_auto,q_auto/league/i06akaulzk9snuwctxvw
#> 3796 https://static.www.nfl.com/image/private/f_auto,q_auto/league/e8v5zjouk5kwpxtijp2r
#> 3797 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bdgnjlorrjo6n1hdvy1j
#> 3798     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4390082.png
#> 3799 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bbc0boavvjyfpjxbtcpy
#> 3800 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tdj5m4iypswtresuwooi
#> 3801     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3056487.png
#> 3802 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eovb4ldeknc4iampxsr1
#> 3803 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ztakfnhixsu9drlgkhcv
#> 3804     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4266934.png
#> 3805 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xfyjuowcdopldrywiwab
#> 3806 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rssnaqmql21mpob0co9y
#> 3807     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050925.png
#> 3808 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jlijcunmhmifyqdqhxcz
#> 3809     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3914861.png
#> 3810 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jyulbbf2uwg12be1ojuk
#> 3811 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sj4imj7nrnh8dag2guc6
#> 3812 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vgpfidv5oajm79nn15tw
#> 3813 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xu8xheiqixhulhijitji
#> 3814     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116620.png
#> 3815 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cemqbxgcjo70v0czwcyx
#> 3816 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dooa8vt14olhxjhen7zm
#> 3817     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3047923.png
#> 3818 https://static.www.nfl.com/image/private/f_auto,q_auto/league/f54isiv7dk1wflhklukx
#> 3819     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3118964.png
#> 3820 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ffdegwjybndnekeiosx5
#> 3821 https://static.www.nfl.com/image/private/f_auto,q_auto/league/o8uuom6lw8ueejnazosh
#> 3822 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dfmuolypgyv1cp01i2gk
#> 3823 https://static.www.nfl.com/image/private/f_auto,q_auto/league/r4ogigu8ftfo8c116uzh
#> 3824 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wflgpp28trivhcw4fy0e
#> 3825     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3120573.png
#> 3826 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jjelxzqdt1md8vs9lhob
#> 3827 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tlq9c8ax7bra4u4ahme4
#> 3828     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3912679.png
#> 3829 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cyvg6aiwnhmsmxgjfyud
#> 3830     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128308.png
#> 3831 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vhidibxeu678ejajwxdm
#> 3832 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vufxbt6xy4ikp7vjqus6
#> 3833 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cncbnslmogf0lpxe8mxl
#> 3834     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3124103.png
#> 3835     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3126478.png
#> 3836     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116162.png
#> 3837 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wcj4sl1wsmzhr5jkooz2
#> 3838 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xeuvgxerg8z6plg3on7c
#> 3839     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3052451.png
#> 3840     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3921958.png
#> 3841 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iomolmmgi9qr5nb7hwia
#> 3842 https://static.www.nfl.com/image/private/f_auto,q_auto/league/l8kryquerwwcsx3kxqzw
#> 3843 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x3qredctw24swqsywyu1
#> 3844     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125898.png
#> 3845 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dhrmhpnpnvdj5aafminx
#> 3846     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4251200.png
#> 3847 https://static.www.nfl.com/image/private/f_auto,q_auto/league/thzomsxwzevnfoirmor4
#> 3848 https://static.www.nfl.com/image/private/f_auto,q_auto/league/m6i17axcxnd9khgydk7a
#> 3849 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kz9xs03evqhepn3p42m0
#> 3850     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3045243.png
#> 3851     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3060799.png
#> 3852 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nm7tdfyo5yfgsrsjr4sm
#> 3853 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gvqvxsv4je3zqcz1aedq
#> 3854 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hiths7xi3om1znydyidl
#> 3855 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mikmna8src5gfb2slngr
#> 3856 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gx24sy5xfgainm1wovjg
#> 3857 https://static.www.nfl.com/image/private/f_auto,q_auto/league/dgse077weja4a0rpeuer
#> 3858     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042536.png
#> 3859 https://static.www.nfl.com/image/private/f_auto,q_auto/league/snch5xasxbdhl1fz0umb
#> 3860 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ds9extadz96w1rwcjy5h
#> 3861 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mcw8rnnlpbrcyh9x4ydp
#> 3862 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hgn7q03euojsjbpqlofv
#> 3863 https://static.www.nfl.com/image/private/f_auto,q_auto/league/y4voean9wlrkoagwdh6h
#> 3864 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lolhduc895q3ak6svlx8
#> 3865 https://static.www.nfl.com/image/private/f_auto,q_auto/league/maknlpuklwg6k0pqsles
#> 3866 https://static.www.nfl.com/image/private/f_auto,q_auto/league/cxadiyf70ponn8yx9tvv
#> 3867     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051712.png
#> 3868 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kqqci9hwgkl8aefdzlts
#> 3869 https://static.www.nfl.com/image/private/f_auto,q_auto/league/axngbdk1moggcl65iquz
#> 3870 https://static.www.nfl.com/image/private/f_auto,q_auto/league/brvjoz5cgknjwx9qbg9i
#> 3871 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xfsgis2tumf4lgry058i
#> 3872 https://static.www.nfl.com/image/private/f_auto,q_auto/league/h9uozd4syjs9cphicmfg
#> 3873     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2470344.png
#> 3874 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fdx0xlecfsvfvpptcs3s
#> 3875 https://static.www.nfl.com/image/private/f_auto,q_auto/league/k5lxlrupptod8ewxewgx
#> 3876     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3125119.png
#> 3877     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122932.png
#> 3878     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3039921.png
#> 3879 https://static.www.nfl.com/image/private/f_auto,q_auto/league/molj08hp7xmg5o9vefjl
#> 3880 https://static.www.nfl.com/image/private/f_auto,q_auto/league/semnuw5rf28v3paauh43
#> 3881     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3053777.png
#> 3882     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3062371.png
#> 3883 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sdkhhgqniyj5iuovoqwd
#> 3884 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tstzdfbhynepubgmkgra
#> 3885 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hbvzc2juacsl6h3xttjr
#> 3886 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ldupkb527c17qdxli2xw
#> 3887     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3040542.png
#> 3888     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3928934.png
#> 3889 https://static.www.nfl.com/image/private/f_auto,q_auto/league/spmlyc3o5tgko0hjgvhn
#> 3890 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pb3lbpyo7g6p3vmgwv8f
#> 3891 https://static.www.nfl.com/image/private/f_auto,q_auto/league/imwkfyxs4azsjjy7eo6n
#> 3892 https://static.www.nfl.com/image/private/f_auto,q_auto/league/br9heoeb7lgyihu8rbez
#> 3893 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ppcawjfc4rotcviylpca
#> 3894 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zmrzndr36ko0g9ef5hse
#> 3895     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3059941.png
#> 3896 https://static.www.nfl.com/image/private/f_auto,q_auto/league/p5jszlvcbmmivnjvstew
#> 3897 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fkuhvfshec0qkdqgi3k5
#> 3898 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lit0x9gefnxns7qr22v6
#> 3899 https://static.www.nfl.com/image/private/f_auto,q_auto/league/a1kmyjeugtz0dtglvh04
#> 3900     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3050401.png
#> 3901     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2514802.png
#> 3902 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kkpc9lqaqzubgjmunr7s
#> 3903 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tpcneofqrwriku5kvmnq
#> 3904 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lfuyxmcmbryoqmpaeubc
#> 3905 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jfsvg9pns452nns95rcs
#> 3906     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116133.png
#> 3907     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3055604.png
#> 3908 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lachtmqx28oekusakum9
#> 3909 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xohzo2wcmw1s412kzdzt
#> 3910 https://static.www.nfl.com/image/private/f_auto,q_auto/league/de5ihazp8txar92thsed
#> 3911     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3117248.png
#> 3912 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ngv5nwf4p8t5u8ubsgii
#> 3913     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128699.png
#> 3914     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3122934.png
#> 3915 https://static.www.nfl.com/image/private/f_auto,q_auto/league/nvn53erixdti0tpb7v2q
#> 3916     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3139092.png
#> 3917 https://static.www.nfl.com/image/private/f_auto,q_auto/league/clzb5ticrkpubyx6lalo
#> 3918 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pcugyto2riocdbwltolu
#> 3919     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3128311.png
#> 3920     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3915102.png
#> 3921 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bpfj6vwf3r8ombqz3wtk
#> 3922 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gra9tqwntcxzxvkum3kj
#> 3923     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4037476.png
#> 3924     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3115977.png
#> 3925 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xwdcj8ctkxjqlx6rd3z2
#> 3926 https://static.www.nfl.com/image/private/f_auto,q_auto/league/mnaxb8vqusc7pmpgrree
#> 3927 https://static.www.nfl.com/image/private/f_auto,q_auto/league/snpnyul78ll9fdqqbaf8
#> 3928     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3116702.png
#> 3929     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3919077.png
#> 3930 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gmw8bx4orqf93zdhotgp
#> 3931 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kzsttqv6kxidvz3ywnw7
#> 3932 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gpbmmvskqas6b7x6qimj
#> 3933 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kvlnql56bprevdpodk7a
#> 3934 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aegce342iuqxpfirhzxg
#> 3935     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3924355.png
#> 3936 https://static.www.nfl.com/image/private/f_auto,q_auto/league/io9hnct3n0cg5mgcxdxx
#> 3937 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pvrj1vuiqqogiqwo5y52
#> 3938 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rstxgomgcaatefvebqmj
#> 3939 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kd6rvdf61srclbbhiiei
#> 3940     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3138756.png
#> 3941 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lbarhx9omymxl236etax
#> 3942 https://static.www.nfl.com/image/private/f_auto,q_auto/league/yyw71gg98qd7ehactztq
#> 3943     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4251009.png
#> 3944     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/4036833.png
#> 3945 https://static.www.nfl.com/image/private/f_auto,q_auto/league/xl6dj9ezbgsgkugbyjir
#> 3946 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rsyjzvyyfskgvwvcoj84
#> 3947 https://static.www.nfl.com/image/private/f_auto,q_auto/league/shntepdqpxayq33y6ang
#> 3948 https://static.www.nfl.com/image/private/f_auto,q_auto/league/csvujb3g6qs8wxdlzqxx
#> 3949 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bdhggihzckpsgxnzcyim
#> 3950 https://static.www.nfl.com/image/private/f_auto,q_auto/league/grxtu7vkii9lo41up04q
#> 3951 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jb4tfv68dsq6qy9eqwjq
#> 3952 https://static.www.nfl.com/image/private/f_auto,q_auto/league/tyehnz6riq4gjmuj3x6i
#> 3953 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lfgedwgldq59z1ldxynx
#> 3954 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rpvhjkpofbjjjqkp6z9m
#> 3955 https://static.www.nfl.com/image/private/f_auto,q_auto/league/aozhzn7zrcllbqi1f15s
#> 3956 https://static.www.nfl.com/image/private/f_auto,q_auto/league/bswyvnqivmjbbtfa5ure
#> 3957 https://static.www.nfl.com/image/private/f_auto,q_auto/league/vp882bvgetcgyenvaxyp
#> 3958 https://static.www.nfl.com/image/private/f_auto,q_auto/league/sy2hcfcmwdbb2zutn77w
#> 3959 https://static.www.nfl.com/image/private/f_auto,q_auto/league/q7ees8sofhe8gg3isgjt
#> 3960 https://static.www.nfl.com/image/private/f_auto,q_auto/league/g6ajsxxd9ltwuz4puopy
#> 3961 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pezzfoj9b38mi0irh4e0
#> 3962 https://static.www.nfl.com/image/private/f_auto,q_auto/league/eatoldmtetuqe0shydah
#> 3963 https://static.www.nfl.com/image/private/f_auto,q_auto/league/i2cioydtuqdit7fs63jo
#> 3964 https://static.www.nfl.com/image/private/f_auto,q_auto/league/fvddl07u20hmlrattsjk
#> 3965 https://static.www.nfl.com/image/private/f_auto,q_auto/league/we3oe5jqnrb4ag3d4pqu
#> 3966     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3051820.png
#> 3967 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ltzawsjjoug8mbqchxcb
#> 3968     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3046441.png
#> 3969 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ljknmshvxkk85fkaq8ar
#> 3970 https://static.www.nfl.com/image/private/f_auto,q_auto/league/iof0ihjuopmhgknf5bk8
#> 3971 https://static.www.nfl.com/image/private/f_auto,q_auto/league/w7egvcnbx84zz2gifd5s
#> 3972 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qds7simibz6lt6ckf5yo
#> 3973     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3129309.png
#> 3974 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jarcsmohj6vbznthlni8
#> 3975 https://static.www.nfl.com/image/private/f_auto,q_auto/league/qzsdkkx3dm0clxc7vmkm
#> 3976 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kilmdibxsfsmgj3aezfv
#> 3977 https://static.www.nfl.com/image/private/f_auto,q_auto/league/jmklxv5zzm4vquaemfc1
#> 3978 https://static.www.nfl.com/image/private/f_auto,q_auto/league/x4iusmtkekesjjq4rcvn
#> 3979 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ko3fxpkmjathpdxbed5c
#> 3980 https://static.www.nfl.com/image/private/f_auto,q_auto/league/onuliab3wc9t56b9ghfg
#> 3981     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2973605.png
#> 3982 https://static.www.nfl.com/image/private/f_auto,q_auto/league/hlmh4uiswctg0tlo0yh1
#> 3983 https://static.www.nfl.com/image/private/f_auto,q_auto/league/c6kjlharechwayxq6fzk
#> 3984 https://static.www.nfl.com/image/private/f_auto,q_auto/league/kc49fupygehdcflcbuv3
#> 3985     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3133168.png
#> 3986 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ehxspsqfck3sz2ju7t6x
#> 3987 https://static.www.nfl.com/image/private/f_auto,q_auto/league/zjzneh4hbafefnduix4t
#> 3988 https://static.www.nfl.com/image/private/f_auto,q_auto/league/di0picl4uc2ft6jx6hv4
#> 3989 https://static.www.nfl.com/image/private/f_auto,q_auto/league/we5tadbw4htpyierf8qv
#> 3990 https://static.www.nfl.com/image/private/f_auto,q_auto/league/g1smqpjhrqvgbto7layh
#> 3991     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/2979695.png
#> 3992 https://static.www.nfl.com/image/private/f_auto,q_auto/league/wmquxjs1nuwferz7o9q2
#> 3993 https://static.www.nfl.com/image/private/f_auto,q_auto/league/pwkmtgeitdi79qtumb2x
#> 3994 https://static.www.nfl.com/image/private/f_auto,q_auto/league/ptb0vcf2vqqittc5qown
#> 3995 https://static.www.nfl.com/image/private/f_auto,q_auto/league/rxewfnskdqvfmsui48ta
#> 3996 https://static.www.nfl.com/image/private/f_auto,q_auto/league/lb8pxfnrvchcoy8y3c1h
#> 3997 https://static.www.nfl.com/image/private/f_auto,q_auto/league/z5c3pa2yd7uefaexblem
#> 3998 https://static.www.nfl.com/image/private/f_auto,q_auto/league/gtwc48z81b9iksdrrrhk
#> 3999     https://a.espncdn.com/combiner/i?img=/i/headshots/nfl/players/full/3042565.png
#>  [ reached 'max' / getOption("max.print") -- omitted 840 rows ]
#> 
# }